.hero-ai-section {
    padding: 80px 20px;

    overflow: hidden;
}


.hero-ai-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    flex-wrap: wrap;

}

.hero-ai-text {
    flex: 1 1 50%;
    opacity: 0;
    transform: translateY(40px);
    transition: all 1s ease;
}

.hero-ai-text.visible {
    opacity: 1;
    transform: translateY(0);
    padding: 20px;
}

.hero-ai-subtitle {
    color: #00e0ff;
    font-weight: bold;
    letter-spacing: 1px;
    margin-bottom: 10px;
}

.hero-ai-title {
    font-size: 40px;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 20px;
}

.hero-ai-desc {
    font-size: 16px;
    line-height: 1.6;
    color: #c5c5c5;
    margin-bottom: 30px;
}

.hero-ai-button {
    display: inline-block;
    padding: 12px 25px;
    border: 2px solid #fff;
    color: #fff;
    border-radius: 50px;
    font-weight: bold;
    text-decoration: none;
    transition: all 0.3s ease;
}

.hero-ai-button i {
    margin-left: 10px;
    transition: transform 0.3s ease;
}

.hero-ai-button:hover {
    background-color: #ffffff;
    color: #000;
}

.hero-ai-button:hover i {
    transform: translateX(5px);
}

/* Image container */
.hero-ai-images {
    position: relative;
    flex: 1 1 45%;
    display: flex;
    align-items: center;
    opacity: 0;
    transform: translateY(40px);
    transition: all 1s ease;
}

.hero-ai-images.visible {
    opacity: 1;
    transform: translateY(0);
}

.hero-ai-img-main {
    max-width: 350px;
    border-radius: 10px;
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.5);
    position: relative;
    z-index: 2;
}

.hero-ai-img-overlay {
    position: absolute;
    bottom: -101px;
    right: 39px;
    width: 275px;
    border-radius: 10px;
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.5);
    z-index: 100;
}

/* Responsive */
@media (max-width: 768px) {
    .hero-ai-section {
        padding: 10px;
    }

    .hero-ai-container {
        flex-direction: column;
        align-items: start;
    }

    .hero-ai-title {
        font-size: 22px;
    }

    .hero-ai-images {
        margin-top: 10px;
    }

    .hero-ai-img-overlay {
        left: 170px;
        bottom: 1px;
        width: 160px;
    }

    .hero-ai-img-main {
        width: 160px;

    }
}

/* section2 */
.goverment-collab {
    padding: 20px 20px;
}

.goverment-collab-container {
    max-width: 1200px;
    margin: 0 auto;
}

.goverment-collab-container p {
    font-size: 16px;
    color: #ccc;
    padding: 0 20px;
}

.goverment-collab-head {
    font-size: 40px;
    font-weight: 700;
    margin-bottom: 20px;

}

@media only screen and (max-width:768px) {
    .goverment-collab-head {
        font-size: 22px;
    }

    .goverment-collab-container .d-flex img {
        display: none;

    }

    .goverment-collab-container p {
        padding: 0;
        font-size: 14px;
    }

    .goverment-collab-head {
        margin-bottom: 5px;
    }
}

.how-ai-working-section {
    padding: 40px 20px;
}


.how-ai-container {
    max-width: 1200px;
    margin: 0 auto;
}

.how-ai-subtitle {
    color: #00e0ff;
    font-weight: 600;
    letter-spacing: 1px;
    margin-bottom: 10px;

}

.how-ai-title {
    font-size: 40px;
    font-weight: bold;
    margin-bottom: 50px;

}

.how-ai-steps {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 20px;
}

.how-ai-step {
    flex: 1 1 calc(25% - 20px);
    padding: 30px 20px;
    border-radius: 16px;
    position: relative;
    z-index: 1;
    transition: transform 0.4s ease, opacity 0.4s ease, box-shadow 0.4s ease;
    opacity: 0;
    transform: translateY(40px);
    cursor: pointer;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
    /* base shadow */
}

.how-ai-step:hover {
    box-shadow: 0 6px 15px rgba(0, 224, 255, 0.3), 0 4px 20px rgba(142, 61, 255, 0.3);
    /* hover shadow */
}

.how-ai-step.visible {
    opacity: 1;
    transform: translateY(0);
}

.how-ai-step::before {
    content: '';
    position: absolute;
    top: var(--y, 50%);
    left: var(--x, 50%);
    transform: translate(-50%, -50%);
    width: 250px;
    height: 250px;
    background: radial-gradient(circle, rgba(142, 61, 255, 0.79), transparent 60%);
    pointer-events: none;
    opacity: 0;
    transition: opacity 0.3s ease;
    border-radius: 50%;
    z-index: 0;
    filter: blur(60px);
}

.how-ai-step:hover::before {
    opacity: 1;
}

.how-ai-icon {
    font-size: 40px;
    color: #00e0ff;
    margin-bottom: 20px;
    z-index: 2;
    position: relative;
}

.how-ai-step-title {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 10px;
    z-index: 2;
    position: relative;
}

.how-ai-step-desc {
    font-size: 15px;
    color: #ccc;
    line-height: 1.6;
    z-index: 2;
    position: relative;
}

@media only screen and (max-width:768px) {
    .how-ai-title {
        font-size: 22px;
        font-weight: bold;
        margin-bottom: 50px;

    }
    .how-ai-step{
        padding: 5px;
    }
}

/* Responsive Styles */
@media (max-width: 1024px) {
    .how-ai-step {
        flex: 1 1 calc(50% - 20px);
    }
}

@media (max-width: 600px) {
    .how-ai-steps {
        flex-direction: column;
        align-items: center;
    }

    .how-ai-step {
        flex: 1 1 100%;
        max-width: 90%;
    }
}