/* Hero Section */

.ai-hero-section {
    padding: 60px 0 0px;
    overflow: hidden;
    background: linear-gradient(180deg, #E1F0FD 0%, #FFFFFF 100%);
}

.ai-badge {
    display: inline-block;
    background: #fff;
    color: #0083eb;
    padding: 8px 16px;
    border-radius: 30px;
    font-size: 13px;
    font-weight: 500;
}

.hero-title {
    font-weight: 700;
    line-height: 1.2;
    color: #1a1a1a;
}

.hero-desc {
    color: #4a5568;
    margin-bottom: 1rem;
    line-height: 1.6;
    max-width: 1024px;
}

.floating-card {
    position: absolute;
    background: #fff;
    padding: 15px;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    max-width: 280px;
    animation: float 6s ease-in-out infinite;
    z-index: 10;
    display: flex;
    align-items: start;
    gap: 0.5rem;
    justify-content: start;
    text-align: start;
}

.floating-card h6 {
    font-weight: 700;
    margin-bottom: 0px;
}

.floating-card p {
    font-size: 14px;
    color: #6c757d;
    margin: 0;
    line-height: 1.4;
}


.floating-card i {
    width: 45px;
    height: 45px;
    min-width: 45px;
    min-height: 45px;
    background: #eaf5ff;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 4px;
}

.card-1 {
    top: 10%;
    left: -5%;
    animation-delay: 0s;
}

.card-2 {
    bottom: 5%;
    left: -2%;
    animation-delay: 1s;
}

.card-3 {
    top: 10%;
    right: -5%;
    animation-delay: 2s;
}

.card-4 {
    bottom: 15%;
    right: -10%;
    animation-delay: 3s;
}

@keyframes float {
    0% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-15px);
    }

    100% {
        transform: translateY(0px);
    }
}

/* Solutions Section */

.solution-card {
    background: #fff;
    border: 1px solid #f0f0f0;
    border-radius: 0px;
    padding: 20px 1rem;
    text-align: center;
    height: 100%;
    transition: all 0.3s ease;
}

.solution-card:hover {
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.05);
    transform: translateY(-5px);
    border-color: #e6f0ff;
}

.icon-hexagon {
    width: 55px;
    height: 60px;
    background: #eaf5ff;
    color: #0083eb;
    font-size: 22px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px auto;
    clip-path: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%);
    transition: all 0.3s ease;
}

.solution-card:hover .icon-hexagon {
    background: #0083eb;
    color: #fff;
}

.solution-card h5 {
    font-weight: 700;
    margin-bottom: 12px;
    color: #1a1a1a;
}

.solution-card p {
    color: #64748b;
    margin: 0;
    line-height: 1.6;
}

/* Benefits Section */
.benefit-item {
    padding: 20px 10px;
    border: 1px solid #e9ecef;
    border-radius: 0px;
    height: 100%;
}

.benefit-item .icon-circle {
    width: 60px;
    height: 60px;
    border-radius: 12px;
    background: #f8f9fa;
    color: #0083eb;
    font-size: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid #e9ecef;
    transition: all 0.3s;
}

.benefit-item:hover .icon-circle {
    background: #0083eb;
    color: #fff;
    border-color: #0083eb;
}

.benefit-item h6 {
    font-weight: 700;
    margin-bottom: 8px;
    color: #1a1a1a;
}

.benefit-item p {
    color: #6c757d;
    margin: 0;
}

.cta-banner {
    background: linear-gradient(135deg, #001f4d 0%, #0047b3 100%);
}

.cta-circle-1 {
    position: absolute;
    width: 300px;
    height: 300px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 50%;
    top: -100px;
    right: -50px;
}

.cta-circle-2 {
    position: absolute;
    width: 200px;
    height: 200px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 50%;
    bottom: -50px;
    left: 20%;
}

@media (max-width: 991px) {
    .floating-card {
        display: none;
    }
}

/* Process Section */
.ai-process-section {
    background-color: #f3f6ff;
}

.process-row {
    position: relative;
}

.process-card {
    background: #fff;
    padding: 25px;
    border-radius: 0px;
    border: 1px solid #f1f5f9;
    transition: all 0.3s ease;
    height: 100%;
}

.process-card:hover {
    transform: translateY(-5px);
    border-color: #eef3ff;
}

.process-icon {
    width: 60px;
    height: 60px;
    background: #def0ff;
    color: #0083eb;
    font-size: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
    margin: 15px auto 0 auto;
    transition: all 0.3s;
}

.process-card:hover .process-icon {
    background: #0083eb;
    color: #fff;
}

.process-card h5 {
    font-weight: 700;
    margin-bottom: 12px;
    color: #1a1a1a;
}

.process-card p {
    line-height: 1.6;
}

/* Capabilities Section */
.capability-card {
    background: #fff;
    border: 1px solid #f0f0f0;
    border-radius: 0px;
    padding: 25px;
    height: 100%;
    transition: all 0.3s ease;
}

.capability-card:hover {
    border-color: #eef3ff;
    transform: translateY(-5px);
}

.capability-icon {
    width: 60px;
    height: 60px;
    background: #def0ff;
    color: #0083eb;
    font-size: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
    margin-bottom: 20px;
    transition: all 0.3s;
}

.capability-card:hover .capability-icon {
    background: #0083eb;
    color: #fff;
}

.capability-card h5 {
    font-weight: 700;
    margin-bottom: 15px;
    color: #1a1a1a;
}

.capability-card p {
    color: #64748b;
    margin: 0;
    line-height: 1.6;
    font-size: 14px;
}

/* Comparison Section */
.comparison-table-wrapper {
    background: #fff;
    border-radius: 0;
    box-shadow: none;
    border: 1px solid #ebebeb;
    overflow: hidden;
}

.comparison-table {
    margin-bottom: 0;
}

.comparison-table th {
    padding: 25px 20px;
    font-size: 18px;
    font-weight: 700;
    border-bottom: 2px solid #eef3ff;
    vertical-align: middle;
}

.comparison-table td {
    padding: 20px;
    vertical-align: middle;
    border-bottom: 1px solid #f1f5f9;
    font-size: 15px;
    color: #4a5568;
}

.comparison-table tbody tr:last-child td {
    border-bottom: none;
}

.comparison-table .feature-col {
    width: 30%;
    background: #f2f2f2;
    color: #1a1a1a;
}

.comparison-table .traditional-col {
    width: 35%;
    background: #f2f2f2;
}

.comparison-table .ai-agent-col {
    width: 35%;
    background: #0083eb;
    color: #fff;
}

.comparison-table .highlight-cell {
    background: #f4faff;
    color: #0083eb;
    font-weight: 600;
}

.comparison-table tbody tr:hover .highlight-cell {
    background: #eef3ff;
}

@media (max-width: 767px) {
    .comparison-table-wrapper {
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
    }

    .comparison-table {
        min-width: 600px;
        text-wrap: nowrap;
    }

    .comparison-table th {
        padding: 15px;
        font-size: 16px;
    }

    .comparison-table td {
        padding: 15px;
        font-size: 14px;
    }

    .capability-card {
        padding: 20px;
    }
}


/* =============== AI TOOLS SECTION CSS STARTS HERE =============== */

.ai_tools_section {
    background-color: #fff;
    position: relative;
    overflow: hidden;
}

.ai-tools-top-icons {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    column-gap: 3rem;
    margin-bottom: 70px;
    position: relative;
    z-index: 2;
    row-gap: 1rem;
}

.ai-tools-top-icons .icon-box {
    text-align: center;
}

.ai-tools-top-icons .icon-circle {
    width: 70px;
    height: 70px;
    background: #fff;
    border-radius: 5px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.03);
    transition: transform 0.3s;
    margin-bottom: 1rem;
    border: 1px solid #ececec;
}

.ai-tools-top-icons .icon-circle img {
    width: 35px;
    height: 35px;
    object-fit: contain;
}

.ai-tools-top-icons .icon-box:nth-child(2),
.ai-tools-top-icons .icon-box:nth-child(4),
.ai-tools-top-icons .icon-box:nth-child(6),
.ai-tools-top-icons .icon-box:nth-child(8),
.ai-tools-top-icons .icon-box:nth-child(10) {
    transform: translateY(15px);
}

.ai-tools-top-icons .icon-box:nth-child(1),
.ai-tools-top-icons .icon-box:nth-child(3),
.ai-tools-top-icons .icon-box:nth-child(5),
.ai-tools-top-icons .icon-box:nth-child(7),
.ai-tools-top-icons .icon-box:nth-child(9) {
    transform: translateY(0px);
}

.ai-tools-content-center {
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
    position: relative;
    z-index: 2;
}

.ai-tools-content-center h2 {
    font-weight: 700;
    color: #1e293b;
}

.ai-tools-content-center p {
    color: #64748b;
    margin-bottom: 1rem;
}

.floating-elements {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 0;
}

.float-robot {
    position: absolute;
    left: 5%;
    bottom: 10%;
    width: 80px;
}

.float-robot1 {
    position: absolute;
    right: 5%;
    bottom: 10%;
    width: 80px;
    transform: scaleX(-1);
}

.ai-bg-text {
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translate(-50%, 10%);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 0;
    opacity: 0.25;
    pointer-events: none;
    width: 100%;
}

.ai-bg-text h2 {
    font-size: 14rem;
    font-weight: 900;
    margin: 0;
    line-height: 15rem;
    letter-spacing: 0;
    background-image: linear-gradient(#fff, var(--primary-color));
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    color: transparent;
}

@media (max-width: 991px) {
    .ai-bg-text h2 {
        font-size: 10rem;
        line-height: 9rem;
    }

    .ai-bg-text span {
        font-size: 2.5rem;
    }
}

@media (max-width: 576px) {
    .ai-bg-text h2 {
        font-size: 5rem;
        line-height: 4rem;
    }

    .ai-bg-text span {
        font-size: 1.5rem;
    }
}

/* =============== AI TOOLS SECTION CSS ENDS HERE =============== */

/* =============== SECURITY SECTION CSS STARTS HERE =============== */
.ai-security-section {
    position: relative;
    overflow: hidden;
}


.security-card {
    background: #fff;
    padding: 20px;
    border-radius: 0px;
    border: 1px solid #ebebeb;
    height: 100%;
    transition: all 0.3s ease;
}

.security-card:hover {
    transform: translateY(-5px);
    border-color: #eef3ff;
}

.security-icon {
    width: 50px;
    height: 50px;
    background: #f4faff;
    color: #0083eb;
    font-size: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 10px;
    margin-bottom: 20px;
    transition: all 0.3s ease;
}

.security-card:hover .security-icon {
    background: #0083eb;
    color: #fff;
}

.security-card h6 {
    font-weight: 700;
    margin-bottom: 10px;
    color: #1a1a1a;
}

.security-card p {
    color: #64748b;
    margin: 0;
    font-size: 14px;
    line-height: 1.6;
}

@media (max-width: 991px) {
    .ai-security-section .pe-lg-5 {
        padding-right: 0 !important;
    }
}

/* =============== SECURITY SECTION CSS ENDS HERE =============== */

/* =============== ROI SECTION CSS STARTS HERE =============== */
.ai-roi-section {
    background: linear-gradient(135deg, #0083eb 0%, #004ba0 100%);
    position: relative;
    overflow: hidden;
}

.roi-card {
    background: #fff;
    border: none;
    border-radius: 0px;
    padding: 25px;
    height: 100%;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.roi-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.roi-value {
    font-size: 4.5rem;
    font-weight: 900;
    line-height: 1;
    color: #0083eb;
    display: inline-block;
}

.roi-card h5 {
    font-size: 20px;
    color: #1a1a1a;
    letter-spacing: -0.5px;
}

@media (max-width: 991px) {
    .roi-value {
        font-size: 3.5rem;
    }
}

/* =============== ROI SECTION CSS ENDS HERE =============== */

/* =============== MID CTA SECTION CSS STARTS HERE =============== */
.ai-cta-mid-section {
    background-color: #fff;
}

.cta-mid-banner {
    background: linear-gradient(135deg, #0083eb 0%, #002244 100%);
}

.cta-robot-col {
    height: 100%;
    display: flex;
    align-items: flex-end;
    justify-content: center;
}

.cta-robot-img {
    max-height: 400px;
    object-fit: contain;
    margin-bottom: 0px;
    position: relative;
    z-index: 2;
}

.cta-shape-1 {
    position: absolute;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, rgba(255, 255, 255, 0) 70%);
    top: -100px;
    left: -100px;
    border-radius: 50%;
    z-index: 0;
}

.cta-shape-2 {
    position: absolute;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(0, 131, 235, 0.4) 0%, rgba(255, 255, 255, 0) 70%);
    bottom: -150px;
    right: -100px;
    border-radius: 50%;
    z-index: 0;
}

@media (max-width: 991px) {

    .ai-hero-section {
        padding: 40px 0;
    }

    .ai-tools-top-icons {
        margin-bottom: 30px;
    }

    .cta-robot-img {
        max-height: 300px;
        margin-top: 20px;
        margin-bottom: 0;
    }

    .cta-robot-col {
        justify-content: center;
    }
}

/* =============== MID CTA SECTION CSS ENDS HERE =============== */