/*** Spinner Start ***/
#spinner {
    opacity: 0;
    visibility: hidden;
    transition: opacity .5s ease-out, visibility 0s linear .5s;
    z-index: 99999;
}

#spinner.show {
    transition: opacity .5s ease-out, visibility 0s linear 0s;
    visibility: visible;
    opacity: 1;
}
/*** Spinner End ***/

.back-to-top {
    position: fixed;
    right: 30px;
    bottom: 30px;
    transition: 0.5s;
    z-index: 99;
}


/*** Button Start ***/
.btn {
    font-weight: 600;
    transition: .5s;
}

.btn-square {
    width: 32px;
    height: 32px;
}

.btn-sm-square {
    width: 34px;
    height: 34px;
}

.btn-md-square {
    width: 44px;
    height: 44px;
}

.btn-lg-square {
    width: 56px;
    height: 56px;
}

.btn-xl-square {
    width: 66px;
    height: 66px;
}

.btn-square,
.btn-sm-square,
.btn-md-square,
.btn-lg-square,
.btn-xl-square {
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: normal;
}

.btn.btn-primary {
    color: var(--bs-white);
    border: none;
}

.btn.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 123, 255, 0.4);
    background: linear-gradient(135deg, #02251f, #02251f);
    border-color: #0056b3;
    color: white !important;
}

.btn.btn-light {
    color: var(--bs-primary);
    border: none;
}

.btn.btn-light:hover {
    color: var(--bs-white);
    background: var(--bs-dark);
}

.btn.btn-dark {
    color: var(--bs-white);
    border: none;
}

.btn.btn-dark:hover {
    color: var(--bs-primary);
    background: var(--bs-light);
}


/*** Topbar Start ***/ 
.topbar .dropdown-toggle::after {
    border: none;
    content: "\f107";
    font-family: "Font Awesome 5 Free";
    font-weight: 600;
    vertical-align: middle;
    margin-left: 8px;
    color: var(--bs-primary);
}

.topbar .dropdown .dropdown-menu a:hover {
    background: var(--bs-primary);
    color: var(--bs-white);
}

.topbar .dropdown .dropdown-menu {
    transform: rotateX(0deg);
    visibility: visible;
    background: var(--bs-light);
    padding-top: 10px;
    border: 0;
    transition: .5s;
    opacity: 1;
}
/*** Topbar End ***/





/*** Carousel Hero Header Start ***/
.header-carousel .header-carousel-item {
    height: 450px;
    background: linear-gradient(135deg, var(--bs-primary) 0%, #0056b3 25%, #17a2b8 50%, #0056b3 75%, var(--bs-primary) 100%);
    background-size: 400% 400%;
    animation: headerBackgroundShift 8s ease-in-out infinite;
    position: relative;
    overflow: visible;
}

/* Sphere Animation Styles */
.header-sphere-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    pointer-events: none;
    overflow: visible;
}

/* AI Sphere Styles */
.header-sphere {
    position: absolute;
    border-radius: 50%;
    background: radial-gradient(circle at 30% 30%, 
        rgba(0, 255, 255, 0.4) 0%, 
        rgba(0, 150, 255, 0.3) 30%, 
        rgba(0, 100, 200, 0.2) 60%, 
        rgba(0, 50, 150, 0.1) 100%);
    border: 2px solid rgba(0, 255, 255, 0.3);
    box-shadow: 
        inset 0 0 30px rgba(0, 255, 255, 0.3),
        0 0 40px rgba(0, 255, 255, 0.2),
        0 0 60px rgba(0, 150, 255, 0.1);
    animation: aiSphereFloat 20s ease-in-out infinite;
    position: relative;
    overflow: hidden;
}

.header-sphere::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 80%;
    height: 80%;
    transform: translate(-50%, -50%);
    border-radius: 50%;
    background: radial-gradient(circle at 40% 40%, 
        rgba(255, 255, 255, 0.4) 0%, 
        rgba(0, 255, 255, 0.2) 50%, 
        transparent 100%);
    animation: aiSphereGlow 4s ease-in-out infinite;
}

.header-sphere::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border-radius: 50%;
    background: 
        radial-gradient(circle at 20% 20%, transparent 0%, transparent 40%, rgba(0, 255, 255, 0.1) 50%, transparent 60%),
        radial-gradient(circle at 80% 80%, transparent 0%, transparent 40%, rgba(0, 255, 255, 0.1) 50%, transparent 60%),
        radial-gradient(circle at 50% 50%, transparent 0%, transparent 70%, rgba(255, 255, 255, 0.05) 80%, transparent 90%);
    animation: aiSphereCircuit 8s linear infinite;
}

.sphere-1 {
    width: 120px;
    height: 120px;
    top: 20%;
    left: 10%;
    animation-delay: 0s;
    background: radial-gradient(circle at 30% 30%, 
        rgba(0, 255, 255, 0.5) 0%, 
        rgba(0, 150, 255, 0.4) 30%, 
        rgba(0, 100, 200, 0.3) 60%, 
        rgba(0, 50, 150, 0.2) 100%);
    border: 3px solid rgba(0, 255, 255, 0.4);
}

.sphere-2 {
    width: 80px;
    height: 80px;
    top: 60%;
    right: 15%;
    animation-delay: -5s;
    background: radial-gradient(circle at 30% 30%, 
        rgba(0, 200, 255, 0.4) 0%, 
        rgba(0, 100, 200, 0.3) 30%, 
        rgba(0, 50, 150, 0.2) 60%, 
        rgba(0, 25, 100, 0.1) 100%);
    border: 2px solid rgba(0, 200, 255, 0.3);
}

.sphere-3 {
    width: 100px;
    height: 100px;
    top: 30%;
    right: 25%;
    animation-delay: -10s;
    background: radial-gradient(circle at 30% 30%, 
        rgba(0, 255, 200, 0.4) 0%, 
        rgba(0, 150, 180, 0.3) 30%, 
        rgba(0, 100, 160, 0.2) 60%, 
        rgba(0, 50, 140, 0.1) 100%);
    border: 2px solid rgba(0, 255, 200, 0.3);
}

.sphere-4 {
    width: 60px;
    height: 60px;
    bottom: 25%;
    left: 20%;
    animation-delay: -15s;
    background: radial-gradient(circle at 30% 30%, 
        rgba(100, 200, 255, 0.4) 0%, 
        rgba(50, 150, 200, 0.3) 30%, 
        rgba(25, 100, 150, 0.2) 60%, 
        rgba(10, 50, 100, 0.1) 100%);
    border: 1px solid rgba(100, 200, 255, 0.3);
}

.sphere-5 {
    width: 90px;
    height: 90px;
    top: 70%;
    left: 60%;
    animation-delay: -7s;
    background: radial-gradient(circle at 30% 30%, 
        rgba(0, 255, 255, 0.4) 0%, 
        rgba(0, 180, 220, 0.3) 30%, 
        rgba(0, 120, 180, 0.2) 60%, 
        rgba(0, 60, 140, 0.1) 100%);
    border: 2px solid rgba(0, 255, 255, 0.3);
}

@keyframes aiSphereFloat {
    0%, 100% {
        transform: translateY(0px) translateX(0px) rotate(0deg) scale(1);
        opacity: 0.8;
    }
    25% {
        transform: translateY(-20px) translateX(10px) rotate(90deg) scale(1.05);
        opacity: 1;
    }
    50% {
        transform: translateY(-10px) translateX(-15px) rotate(180deg) scale(0.95);
        opacity: 0.7;
    }
    75% {
        transform: translateY(-30px) translateX(5px) rotate(270deg) scale(1.1);
        opacity: 0.9;
    }
}

@keyframes aiSphereGlow {
    0%, 100% {
        opacity: 0.6;
        transform: translate(-50%, -50%) scale(1);
    }
    50% {
        opacity: 1;
        transform: translate(-50%, -50%) scale(1.1);
    }
}

@keyframes aiSphereCircuit {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}

/* AI Core and Pulse Elements */
.ai-core {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 20%;
    height: 20%;
    transform: translate(-50%, -50%);
    border-radius: 50%;
    background: radial-gradient(circle at center, 
        rgba(255, 255, 255, 0.9) 0%, 
        rgba(0, 255, 255, 0.7) 50%, 
        rgba(0, 150, 255, 0.5) 100%);
    box-shadow: 
        0 0 10px rgba(0, 255, 255, 0.8),
        0 0 20px rgba(0, 255, 255, 0.4);
    animation: aiCorePulse 3s ease-in-out infinite;
    z-index: 2;
}

.ai-pulse {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 60%;
    height: 60%;
    transform: translate(-50%, -50%);
    border-radius: 50%;
    border: 1px solid rgba(0, 255, 255, 0.3);
    animation: aiPulseWave 4s ease-out infinite;
    z-index: 1;
}

.ai-pulse::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 100%;
    height: 100%;
    transform: translate(-50%, -50%);
    border-radius: 50%;
    border: 1px solid rgba(0, 255, 255, 0.2);
    animation: aiPulseWave 4s ease-out infinite 1s;
}

.ai-pulse::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 100%;
    height: 100%;
    transform: translate(-50%, -50%);
    border-radius: 50%;
    border: 1px solid rgba(0, 255, 255, 0.1);
    animation: aiPulseWave 4s ease-out infinite 2s;
}

@keyframes aiCorePulse {
    0%, 100% {
        transform: translate(-50%, -50%) scale(1);
        opacity: 0.8;
    }
    50% {
        transform: translate(-50%, -50%) scale(1.2);
        opacity: 1;
    }
}

@keyframes aiPulseWave {
    0% {
        transform: translate(-50%, -50%) scale(0.8);
        opacity: 1;
    }
    100% {
        transform: translate(-50%, -50%) scale(2);
        opacity: 0;
    }
}

@keyframes headerBackgroundShift {
    0%, 100% { background-position: 0% 50%; }
    25% { background-position: 100% 50%; }
    50% { background-position: 100% 100%; }
    75% { background-position: 0% 100%; }
}

.header-carousel .owl-nav .owl-prev,
.header-carousel .owl-nav .owl-next {
    position: absolute;
    width: 60px;
    height: 60px;
    border-radius: 60px;
    background: var(--bs-light);
    color: var(--bs-primary);
    font-size: 26px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: 0.5s;
    z-index: 10;
}

.header-carousel .owl-nav .owl-prev {
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    margin-left: 30px;
}
.header-carousel .owl-nav .owl-next {
    bottom: 30px;
    right: 50%;
    transform: translateX(-50%);
    margin-right: 30px;
}

.header-carousel .owl-nav .owl-prev:hover,
.header-carousel .owl-nav .owl-next:hover {
    box-shadow: inset 0 0 100px 0 var(--bs-secondary);
    color: var(--bs-white);
}

.header-carousel .header-carousel-item .carousel-caption {
    position: absolute;
    width: 100%;
    height: 100%;
    left: 0;
    bottom: 0;
    background: rgba(0, 0, 0, .2);
    display: flex;
    align-items: center;
}



@media (max-width: 991px) {
    .header-carousel .header-carousel-item .carousel-caption {
        padding-top: 45px;
    }

    .header-carousel .header-carousel-item {
        height: 1300px;
    }
    
    /* Adjust sphere sizes for tablets */
    .sphere-1 {
        width: 80px;
        height: 80px;
        top: 15%;
        left: 8%;
    }
    
    .sphere-2 {
        width: 60px;
        height: 60px;
        top: 55%;
        right: 12%;
    }
    
    .sphere-3 {
        width: 70px;
        height: 70px;
        top: 25%;
        right: 20%;
    }
    
    .sphere-4 {
        width: 40px;
        height: 40px;
        bottom: 20%;
        left: 15%;
    }
    
    .sphere-5 {
        width: 60px;
        height: 60px;
        top: 65%;
        left: 55%;
    }
}

@media (max-width: 767px) {
    .header-carousel .header-carousel-item {
        height: 550px;
    }

    .header-carousel .owl-nav .owl-prev {
        bottom: -30px;
        left: 50%;
        transform: translateX(-50%);
        margin-left: -45px;
    }

    .header-carousel .owl-nav .owl-next {
        bottom: -30px;
        left: 50%;
        transform: translateX(-50%);
        margin-left: 45px;
    }
    
    /* Adjust sphere sizes and positions for mobile */
    .sphere-1 {
        width: 60px;
        height: 60px;
        top: 15%;
        left: 5%;
    }
    
    .sphere-2 {
        width: 40px;
        height: 40px;
        top: 50%;
        right: 8%;
    }
    
    .sphere-3 {
        width: 50px;
        height: 50px;
        top: 25%;
        right: 15%;
    }
    
    .sphere-4 {
        width: 30px;
        height: 30px;
        bottom: 20%;
        left: 10%;
    }
    
    .sphere-5 {
        width: 45px;
        height: 45px;
        top: 60%;
        left: 50%;
    }
}

@media (max-width: 575px) {
    /* Further reduce sphere sizes for very small screens */
    .sphere-1 {
        width: 40px;
        height: 40px;
        top: 12%;
        left: 3%;
    }
    
    .sphere-2 {
        width: 30px;
        height: 30px;
        top: 45%;
        right: 5%;
    }
    
    .sphere-3 {
        width: 35px;
        height: 35px;
        top: 20%;
        right: 12%;
    }
    
    .sphere-4 {
        width: 25px;
        height: 25px;
        bottom: 15%;
        left: 8%;
    }
    
    .sphere-5 {
        width: 30px;
        height: 30px;
        top: 55%;
        left: 45%;
    }
}

.header-carousel .header-carousel-item .header-gradient-line {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 6px;
    background: linear-gradient(90deg, #ffffff, #17a2b8, #ffffff);
    background-size: 200% 100%;
    animation: headerGradientShift 4s ease-in-out infinite;
    z-index: 10;
}

@keyframes headerGradientShift {
    0%, 100% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
}

/*** Carousel Hero Header End ***/


/*** Single Page Hero Header Start ***/
.bg-breadcrumb {
    position: relative;
    overflow: hidden;
    background: linear-gradient(rgba(0, 20, 3, 0.9), rgba(0, 0, 0, 0.2)), url(../img/bg-breadcrumb.jpg);
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
    padding: 60px 0 60px 0;
    transition: 0.5s;
}

.bg-breadcrumb .breadcrumb {
    position: relative;
}

.bg-breadcrumb .breadcrumb .breadcrumb-item a {
    color: var(--bs-white);
}
/*** Single Page Hero Header End ***/


/*** Feature Start ***/
.feature .feature-item {
    border-radius: 10px;
    background: var(--bs-white);
    transition: 0.5s;
}

.feature .feature-item:hover {
    background: var(--bs-primary);
}

.feature .feature-item .feature-icon {
    position: relative;
    width: 100px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-bottom-left-radius: 10px;
    border-bottom-right-radius: 10px;
    background: var(--bs-light);
}

.feature .feature-item:hover .feature-icon i {
    z-index: 9;
}

.feature .feature-item .feature-icon::after {
    content: "";
    position: absolute;
    width: 100%;
    height: 0;
    top: 0;
    left: 0;
    border-bottom-left-radius: 10px;
    border-bottom-right-radius: 10px;
    background: var(--bs-dark);
    transition: 0.5s;
    z-index: 1;
}

.feature .feature-item:hover .feature-icon::after {
    height: 100%;
}

.feature .feature-item .feature-icon {
    color: var(--bs-primary);
}

.feature .feature-item .feature-icon,
.feature .feature-item h4,
.feature .feature-item p {
    transition: 0.5s;
}

.feature .feature-item:hover .feature-icon {
    color: var(--bs-white);
}
.feature .feature-item:hover h4,
.feature .feature-item:hover p {
    color: var(--bs-white);
}

.feature .feature-item:hover a.btn {
    background: var(--bs-white);
    color: var(--bs-primary);
}

.feature .feature-item:hover a.btn:hover {
    background: var(--bs-dark);
    color: var(--bs-white);
}
/*** Feature End ***/


/*** Service Start ***/
.service .service-item {
    border-radius: 10px;
}
.service .service-item .service-img {
    position: relative;
    overflow: hidden;
    border-top-left-radius: 10px;
    border-top-right-radius: 10px;
}

.service .service-item .service-img img {
    transition: 0.5s;
}

.service .service-item:hover .service-img img {
    transform: scale(1.1);
}

.service .service-item .service-img::after {
    content: "";
    position: absolute;
    width: 100%;
    height: 0;
    top: 0;
    left: 0;
    border-top-left-radius: 10px;
    border-top-right-radius: 10px;
    background: rgba(0, 20, 3, .2);
    transition: 0.5s;
    z-index: 1;
}

.service .service-item:hover .service-img::after {
    height: 100%;
}

.service .service-item .service-img .service-icon {
    position: absolute;
    width: 70px;
    bottom: 0;
    right: 25px;
    border-top-left-radius: 10px;
    border-top-right-radius: 10px;
    background: var(--bs-light);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: 0.5s;
    z-index: 9;
}

.service .service-item .service-img .service-icon i {
    color: var(--bs-primary);
    transition: 0.5s;
}

.service .service-item:hover .service-img .service-icon i {
    transform: rotateX(360deg);
    color: var(--bs-white);
}

.service .service-item:hover .service-img .service-icon {
    bottom: 0;
    color: var(--bs-white);
    background: var(--bs-primary);
}

.service .service-content {
    position: relative;
    border-bottom-left-radius: 10px;
    border-bottom-right-radius: 10px;
    background: var(--bs-light);
}

.service .service-item .service-content .service-content-inner {
    position: relative;
    z-index: 9;
}

.service .service-item .service-content .service-content-inner .h4,
.service .service-item .service-content .service-content-inner p {
    transition: 0.5s;
}

.service .service-item:hover .service-content .service-content-inner .h4,
.service .service-item:hover .service-content .service-content-inner p {
    color: var(--bs-white);
}

.service .service-item:hover .service-content .service-content-inner .btn.btn-primary {
    color: var(--bs-primary);
    background: var(--bs-white);
}

.service .service-item:hover .service-content .service-content-inner .btn.btn-primary:hover {
    color: var(--bs-white);
    background: var(--bs-dark);
}

.service .service-item:hover .service-content .service-content-inner .h4:hover {
    color: var(--bs-dark);
}

.service .service-item .service-content::after {
    content: "";
    position: absolute;
    width: 100%;
    height: 0;
    bottom: 0;
    left: 0;
    border-bottom-left-radius: 10px;
    border-bottom-right-radius: 10px;
    background: var(--bs-primary);
    transition: 0.5s;
    z-index: 1;
}

.service .service-item:hover .service-content::after {
    height: 100%;
}
/*** Service End ***/


/*** FAQs Start ***/
.faq-section .accordion .accordion-item .accordion-header .accordion-button {
    color: var(--bs-white);
    background: rgba(0, 23, 4, 0.8);
    font-size: 18px;
}

.faq-section .accordion .accordion-item .accordion-header .accordion-button.collapsed {
    color: var(--bs-primary);
    background: var(--bs-light);
}
/*** FAQs End ***/


/*** Blog Start ***/
.blog .blog-item {
    border-radius: 10px;
    transition: 0.5s;
}

.blog .blog-item:hover {
    box-shadow: 0 0 45px rgba(0, 0, 0, .1);
}

.blog .blog-item:hover .blog-content {
    background: var(--bs-white);
}

.blog .blog-item .blog-img {
    border-top-left-radius: 10px;
    border-top-right-radius: 10px;
    position: relative;
    overflow: hidden;
}

.blog .blog-item .blog-img img {
    transition: 0.5s;
}

.blog .blog-item:hover .blog-img img {
    transform: scale(1.2);
}

.blog .blog-item .blog-img::after {
    content: "";
    position: absolute;
    width: 100%;
    height: 0;
    top: 0;
    left: 0;
    border-top-left-radius: 10px;
    border-top-right-radius: 10px;
    background: rgba(0, 20, 3, .2);
    transition: 0.5s;
    z-index: 1;
}

.blog .blog-item:hover .blog-img::after {
    height: 100%;
}

.blog .blog-item .blog-img .blog-categiry {
    position: absolute;
    bottom: 0;
    right: 0;
    border-top-left-radius: 10px;
    display: inline-flex;
    color: var(--bs-white);
    background: var(--bs-primary);
    z-index: 9;
}

.blog .blog-item .blog-content {
    border-bottom-left-radius: 10px;
    border-bottom-right-radius: 10px;
    background: var(--bs-light);
}

.blog .blog-item .blog-content a.btn {
    color: var(--bs-dark);
}

.blog .blog-item:hover .blog-content a.btn:hover {
    color: var(--bs-primary);
}
/*** Blog End ***/


/*** Team Start ***/
.team .team-item .team-img {
    position: relative;
    overflow: hidden;
    border-top-left-radius: 10px;
    border-top-right-radius: 10px;
} 

.team .team-item .team-img img {
    transition: 0.5s;
}

.team .team-item:hover .team-img img {
    transform: scale(1.1);
}

.team .team-item .team-img::after {
    content: "";
    position: absolute;
    width: 100%;
    height: 0;
    top: 0;
    left: 0;
    border-top-left-radius: 10px;
    border-top-right-radius: 10px;
    transition: 0.5s;
}

.team .team-item:hover .team-img::after {
    height: 100%;
    background: rgba(255, 255, 255, 0.3);
}

.team .team-item .team-img .team-icon {
    position: absolute;
    bottom: 20px;
    right: 20px;
    margin-bottom: -100%;
    transition: 0.5s;
    z-index: 9;
}

.team .team-item:hover .team-img .team-icon {
    margin-bottom: 0;
}

.team .team-item .team-title {
    color: var(--bs-white);
    background: var(--bs-primary);
    border-bottom-left-radius: 10px;
    border-bottom-right-radius: 10px;
    transition: 0.5s;
}

.team .team-item .team-title h4 {
    color: var(--bs-white);
}

.team .team-item:hover .team-title {
    background: var(--bs-dark);
}
/*** Team End ***/


/*** Testimonial Start ***/
.testimonial-carousel .owl-stage-outer {
    margin-top: 58px;
    margin-right: -1px;
}

.testimonial .owl-nav .owl-prev {
    position: absolute;
    top: -58px;
    left: 0;
    background: var(--bs-primary);
    color: var(--bs-white);
    padding: 5px 30px;
    border-radius: 30px;
    transition: 0.5s;
}

.testimonial .owl-nav .owl-prev:hover {
    background: var(--bs-dark);
    color: var(--bs-white);
}

.testimonial .owl-nav .owl-next {
    position: absolute;
    top: -58px;
    right: 0;
    background: var(--bs-primary);
    color: var(--bs-white);
    padding: 5px 30px;
    border-radius: 30px;
    transition: 0.5s;
}

.testimonial .owl-nav .owl-next:hover {
    background: var(--bs-dark);
    color: var(--bs-white);
}
/*** Testimonial End ***/


/*** Contact Start ***/
.contact .contact-img {
    position: relative;
}

.contact .contact-img::after {
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
    background: rgba(255, 255, 255, 0.9);
    z-index: 1;
    animation-name: image-efects;
    animation-duration: 10s;
    animation-delay: 1s;
    animation-iteration-count: infinite;
    animation-direction: alternate;
    transition: 0.5s
}

@keyframes image-efects {
    0%  {border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;}

    25% {border-radius: 35% 65% 27% 73% / 71% 25% 75% 29%;}

    50% {border-radius: 41% 59% 45% 55% / 32% 21% 79% 68%;}

    75% {border-radius: 69% 31% 39% 61% / 70% 83% 17% 30%;}

    100% {border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;}
}

.contact .contact-img .contact-img-inner {
    position: relative;
    z-index: 9;
}
/*** Contact End ***/


/*** Footer Start ***/
.footer {
    background: linear-gradient(135deg, #002022 0%, #002022 50%, #002022 100%);
    position: relative;
    overflow: hidden;
    color: #ffffff;
}

/* AI Background Effects for Footer */
.ai-background-effects-footer {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    pointer-events: none;
}

/* AI Particles for Footer */
.ai-particles-footer {
    position: absolute;
    width: 100%;
    height: 100%;
}

.ai-particle-footer {
    position: absolute;
    width: 2px;
    height: 2px;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.6) 0%, rgba(255, 255, 255, 0.2) 100%);
    border-radius: 50%;
    box-shadow: 0 0 6px rgba(255, 255, 255, 0.4);
    animation: particleFloatFooter 20s linear infinite;
}

.particle-footer-1 { top: 10%; left: 15%; animation-delay: 0s; }
.particle-footer-2 { top: 25%; right: 20%; animation-delay: -3s; }
.particle-footer-3 { top: 45%; left: 25%; animation-delay: -6s; }
.particle-footer-4 { top: 65%; right: 15%; animation-delay: -9s; }
.particle-footer-5 { top: 35%; left: 70%; animation-delay: -12s; }
.particle-footer-6 { top: 75%; left: 60%; animation-delay: -15s; }

@keyframes particleFloatFooter {
    0% {
        transform: translateY(0px) translateX(0px);
        opacity: 0;
    }
    10% {
        opacity: 1;
    }
    90% {
        opacity: 1;
    }
    100% {
        transform: translateY(-100px) translateX(50px);
        opacity: 0;
    }
}

/* AI Circuit Lines for Footer */
.ai-circuit-lines-footer {
    position: absolute;
    width: 100%;
    height: 100%;
}

.circuit-line-footer {
    position: absolute;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    height: 1px;
    animation: circuitFlowFooter 15s linear infinite;
}

.line-footer-1 {
    top: 20%;
    left: 0;
    width: 40%;
    animation-delay: 0s;
}

.line-footer-2 {
    top: 50%;
    right: 0;
    width: 30%;
    animation-delay: -5s;
}

.line-footer-3 {
    top: 80%;
    left: 10%;
    width: 50%;
    animation-delay: -10s;
}

@keyframes circuitFlowFooter {
    0% {
        transform: translateX(-100%);
        opacity: 0;
    }
    50% {
        opacity: 1;
    }
    100% {
        transform: translateX(100%);
        opacity: 0;
    }
}

/* AI Gradient Overlay for Footer */
.ai-gradient-overlay-footer {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 80% 20%, 
        rgba(255, 255, 255, 0.03) 0%, 
        rgba(255, 255, 255, 0.01) 30%, 
        transparent 70%);
    pointer-events: none;
}

/* Ensure content is above effects */
.footer .container {
    position: relative;
    z-index: 2;
}

/* Footer Company Info */
.footer-company-info {
    position: relative;
    z-index: 3;
}

.footer-logo-section {
    position: relative;
}

.footer-logo h3 {
    font-weight: 700;
    font-size: 1.8rem;
    margin-bottom: 0;
    transition: all 0.3s ease;
}

.footer-logo:hover h3 {
    transform: translateY(-2px);
    text-shadow: 0 4px 8px rgba(13, 110, 253, 0.3);
}

.footer-description {
    position: relative;
}

.footer-description p {
    line-height: 1.8;
    font-size: 1rem;
    margin-bottom: 0;
}

.ai-content-glow-footer {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border-radius: inherit;
    background: linear-gradient(135deg, 
        rgba(255, 255, 255, 0.03) 0%, 
        rgba(255, 255, 255, 0.01) 50%, 
        transparent 100%);
    pointer-events: none;
    z-index: 1;
}

.footer-logo h3 {
    font-size: 2rem;
    font-weight: 700;
    color: #fff;
    margin: 0;
}

.footer-logo i {
    color: #007bff;
}

/* Footer Social Links */
.footer-social-links {
    position: relative;
}

.social-links-grid {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

.social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 45px;
    height: 45px;
    background: linear-gradient(135deg, #0d6efd 0%, #0056b3 100%);
    color: #ffffff;
    border-radius: 12px;
    text-decoration: none;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(13, 110, 253, 0.2);
}

.social-link::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s ease;
}

.social-link:hover::before {
    left: 100%;
}

.social-link:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 8px 25px rgba(13, 110, 253, 0.4);
    color: #ffffff;
    text-decoration: none;
    border-radius: 8px;
}

.social-link i {
    font-size: 18px;
    z-index: 1;
    position: relative;
}

/* Footer Contact Info */
.footer-contact-info {
    margin-top: 20px;
}

.contact-item {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
    padding: 10px 0;
    transition: all 0.3s ease;
}

.contact-item:hover {
    transform: translateX(5px);
}

.contact-item i {
    color: #0d6efd;
    margin-right: 12px;
    font-size: 18px;
    width: 40px;
    text-align: center;
    background: rgba(255, 255, 255, 0.9);
    padding: 8px;
    border-radius: 8px;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.contact-item:hover i {
    background: rgba(255, 255, 255, 1);
    transform: scale(1.1);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.contact-item span {
    color: #ffffff;
    font-size: 15px;
    font-weight: 500;
}

/* Contact Items Grid for Three Row Layout */
.contact-items-grid {
    display: grid;
    grid-template-rows: repeat(3, auto);
    gap: 12px;
    margin-bottom: 15px;
}

/* Small Contact Items for Three Column Layout */
.contact-item-small {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 15px 8px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 10px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
    backdrop-filter: blur(5px);
    height: 100%;
}

.contact-item-small:hover {
    background: rgba(255, 255, 255, 0.08);
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
    border-color: rgba(13, 110, 253, 0.3);
}

.contact-item-small i {
    color: #0d6efd;
    font-size: 20px;
    margin-bottom: 8px;
    background: rgba(255, 255, 255, 0.9);
    padding: 8px;
    border-radius: 8px;
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.contact-item-small:hover i {
    background: rgba(255, 255, 255, 1);
    transform: scale(1.1);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.contact-item-small span {
    color: #ffffff;
    font-size: 12px;
    font-weight: 500;
    line-height: 1.2;
}

/* Responsive adjustments for contact items grid */
@media (max-width: 576px) {
    .contact-items-grid {
        grid-template-rows: repeat(3, auto);
        gap: 8px;
    }
    
    .contact-item-small {
        padding: 12px 6px;
    }
    
    .contact-item-small i {
        width: 32px;
        height: 32px;
        font-size: 16px;
    }
    
    .contact-item-small span {
        font-size: 11px;
    }
}

@media (min-width: 577px) and (max-width: 768px) {
    .contact-items-grid {
        grid-template-rows: repeat(3, auto);
        gap: 8px;
    }
    
    .contact-item-small {
        padding: 12px 6px;
    }
    
    .contact-item-small i {
        width: 32px;
        height: 32px;
        font-size: 16px;
    }
    
    .contact-item-small span {
        font-size: 11px;
    }
}

/* Footer Sections */
.footer-section {
    position: relative;
    z-index: 3;
}

.ai-section-glow-footer {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border-radius: inherit;
    background: linear-gradient(135deg, 
        rgba(255, 255, 255, 0.02) 0%, 
        rgba(255, 255, 255, 0.01) 50%, 
        transparent 100%);
    pointer-events: none;
    z-index: 1;
}

.footer-section h5 {
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 25px;
    color: #ffffff;
    position: relative;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.footer-section h5::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 50px;
    height: 3px;
    background: linear-gradient(90deg, #0d6efd, #0056b3);
    border-radius: 2px;
    transition: width 0.3s ease;
}

.footer-section:hover h5::after {
    width: 70px;
}

/* Footer Links */
.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li {
    margin-bottom: 12px;
    position: relative;
}

.footer-links a {
    color: #e0e0e0;
    text-decoration: none;
    font-size: 15px;
    font-weight: 500;
    transition: all 0.3s ease;
    position: relative;
    padding-left: 0;
    display: inline-block;
}

.footer-links a::before {
    content: '→';
    position: absolute;
    left: -20px;
    opacity: 0;
    transition: all 0.3s ease;
    color: #0d6efd;
    font-weight: bold;
}

.footer-links a:hover {
    color: #0d6efd;
    padding-left: 20px;
    transform: translateX(5px);
}

.footer-links a:hover::before {
    opacity: 1;
}

/* Footer Offices and Questions */
.footer-offices-questions {
    position: relative;
    z-index: 3;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-questions {
    display: flex;
    align-items: flex-start;
    padding: 20px;
    background: rgba(255, 255, 255, 0.08);
    border-radius: 10px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
    border-color: rgba(0, 123, 255, 0.3);
    transition: all 0.3s ease;
    backdrop-filter: blur(5px);
}

.ai-questions-glow-footer {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(0, 123, 255, 0.1) 0%, rgba(0, 86, 179, 0.1) 100%);
    border-radius: 15px;
    opacity: 0;
    transition: opacity 0.3s ease;
}



.footer-questions h4 {
    color: #ffffff;
    font-weight: 700;
    margin-bottom: 1rem;
}

.footer-questions p {
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 1.5rem;
    font-size: 0.95rem;
}

.ai-offices-glow-footer {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border-radius: inherit;
    background: linear-gradient(135deg, 
        rgba(255, 255, 255, 0.02) 0%, 
        rgba(255, 255, 255, 0.01) 50%, 
        transparent 100%);
    pointer-events: none;
    z-index: 1;
}

.office-card {
    display: flex;
    align-items: center;
    padding: 25px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 15px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
    position: relative;
    overflow: hidden;
}

.office-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(13, 110, 253, 0.1), transparent);
    transition: left 0.5s ease;
}

.office-card:hover::before {
    left: 100%;
}

.office-card:hover {
    background: rgba(255, 255, 255, 0.08);
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
    border-color: rgba(13, 110, 253, 0.3);
}

.office-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #0d6efd 0%, #0056b3 100%);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 20px;
    transition: all 0.3s ease;
    position: relative;
    z-index: 1;
    flex-shrink: 0;
}

.office-card:hover .office-icon {
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 8px 25px rgba(13, 110, 253, 0.4);
}

.office-icon i {
    color: #fff;
    font-size: 24px;
}

.office-info h6 {
    color: #ffffff;
    margin-bottom: 8px;
    font-weight: 700;
    font-size: 1.1rem;
}

.office-info p {
    color: #e0e0e0;
    margin: 0;
    font-size: 15px;
    line-height: 1.6;
    opacity: 0.9;
}



/* Copyright Section */
.copyright {
    background: linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 100%);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    position: relative;
}

.copyright::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(13, 110, 253, 0.5), transparent);
}

.footer-bottom-links a {
    text-decoration: none;
    transition: all 0.3s ease;
    position: relative;
    padding: 5px 0;
}

.footer-bottom-links a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, #0dd9fd, #0056b3);
    transition: width 0.3s ease;
}

.footer-bottom-links a:hover {
    color: #ffffff !important;
    text-decoration: none;
}

.footer-bottom-links a:hover::after {
    width: 100%;
}

/* Responsive Design */
@media (max-width: 768px) {
    .footer-section {
        margin-bottom: 30px;
    }
    
    .office-card {
        margin-bottom: 20px;
    }
    
    .footer-social-links {
        justify-content: center;
    }
    
    .footer-contact-info {
        text-align: center;
    }
    
    .contact-item {
        justify-content: center;
    }
    
    .newsletter-form .input-group {
        flex-direction: column;
    }
    
    .newsletter-form .btn {
        border-radius: 25px;
        margin-top: 10px;
    }
    
    .footer-questions {
        margin-top: 30px;
        padding: 1.5rem;
    }
    
    .footer-questions h4 {
        font-size: 1.5rem;
    }
}

@media (max-width: 576px) {
    .footer-logo h3 {
        font-size: 1.5rem;
    }
    
    .social-link {
        width: 35px;
        height: 35px;
    }
    
    .office-card {
        flex-direction: column;
        text-align: center;
    }
    
    .office-icon {
        margin-right: 0;
        margin-bottom: 15px;
        align-self: center;
    }
}

/*** custom css start ***/
.bg-sitebase {
    background-color: #001403 !important;
    background: linear-gradient(90deg,rgba(0, 20, 3, 1) 0%, rgba(4, 43, 7, 1) 50%, rgba(6, 54, 9, 1) 100%);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

/*** custom css end ***/

/*** Who We Are Section Start ***/
.who-we-are {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    position: relative;
    overflow: hidden;
}

.who-we-are::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="50" cy="50" r="1" fill="%23ffffff" opacity="0.1"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
    pointer-events: none;
}

.who-we-are .who-we-are-content {
    position: relative;
    z-index: 2;
}

.who-we-are .section-header h4 {
    letter-spacing: 2px;
    font-size: 0.9rem;
}

.who-we-are .section-header h1 {
    line-height: 1.2;
    font-weight: 700;
}

.who-we-are .section-header .lead {
    font-size: 1.1rem;
    line-height: 1.6;
}

.who-we-are .who-we-are-features .feature-item {
    transition: all 0.3s ease;
    padding: 1rem;
    border-radius: 10px;
}

.who-we-are .who-we-are-features .feature-item:hover {
    background: rgba(255, 255, 255, 0.8);
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.who-we-are .who-we-are-features .feature-icon {
    flex-shrink: 0;
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--bs-primary) 0%, #0056b3 100%);
    color: white;
    transition: all 0.3s ease;
}

.who-we-are .who-we-are-features .feature-item:hover .feature-icon {
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 5px 15px rgba(0, 123, 255, 0.3);
}

.who-we-are .who-we-are-features .feature-content h5 {
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
}

.who-we-are .who-we-are-features .feature-content p {
    font-size: 0.9rem;
    line-height: 1.5;
}

.who-we-are .who-we-are-stats {
    background: rgba(255, 255, 255, 0.8);
    border-radius: 15px;
    padding: 2rem;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.who-we-are .who-we-are-stats .counter-item {
    transition: all 0.3s ease;
    text-align: center;
}

.who-we-are .who-we-are-stats .counter-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.who-we-are .who-we-are-stats .counter-item .counter-counting {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 5px;
    margin-bottom: 0.5rem;
}

.who-we-are .who-we-are-stats .counter-item .counter-counting span:first-child {
    font-size: 2.5rem;
    font-weight: 700;
}

.who-we-are .who-we-are-stats .counter-item .counter-counting span:last-child {
    font-size: 1.5rem;
    font-weight: 700;
}

.who-we-are .who-we-are-stats .counter-item h4 {
    font-size: 0.9rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin: 0;
}

.who-we-are .who-we-are-cta {
    margin-top: 2rem;
}

.who-we-are .who-we-are-cta .btn {
    font-weight: 600;
    padding: 0.75rem 2rem;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 0.9rem;
}

.who-we-are .who-we-are-cta .btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 123, 255, 0.4);
    background: linear-gradient(135deg, #02251f, #02251f);
    border-color: #0056b3;
    color: white !important;
}

.who-we-are .who-we-are-image {
    position: relative;
    z-index: 2;
}

.who-we-are .who-we-are-image .main-image {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
}

.who-we-are .who-we-are-image .main-image::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(0, 123, 255, 0.1) 0%, rgba(0, 86, 179, 0.1) 100%);
    z-index: 1;
}

.who-we-are .who-we-are-image .main-image img {
    transition: all 0.5s ease;
    transform: scale(1.05);
}

.who-we-are .who-we-are-image:hover .main-image img {
    transform: scale(1.1);
}

.who-we-are .floating-card {
    animation: float 6s ease-in-out infinite;
    z-index: 3;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.who-we-are .floating-card:nth-child(2) {
    animation-delay: -3s;
}

@keyframes float {
    0%, 100% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-10px);
    }
}

.who-we-are .floating-card .fas {
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.1));
}

/* Responsive Design */
@media (max-width: 991px) {
    .who-we-are .who-we-are-image {
        margin-top: 3rem;
    }
    
    .who-we-are .floating-card {
        display: none;
    }
    
    .who-we-are .who-we-are-stats .counter-item .counter-counting span:first-child {
        font-size: 2rem;
    }
}

@media (max-width: 767px) {
    .who-we-are .section-header h1 {
        font-size: 2rem;
    }
    
    .who-we-are .who-we-are-features .feature-item {
        margin-bottom: 1rem;
    }
    
    .who-we-are .who-we-are-stats {
        padding: 1.5rem;
    }
    
    .who-we-are .who-we-are-cta .btn {
        display: block;
        width: 100%;
        margin-bottom: 1rem;
    }
    
    .who-we-are .who-we-are-cta .btn:last-child {
        margin-bottom: 0;
    }
}

@media (max-width: 575px) {
    .who-we-are .who-we-are-stats .row {
        text-align: center;
    }
    
    .who-we-are .who-we-are-stats .counter-item {
        margin-bottom: 1.5rem;
    }
}
/*** Who We Are Section End ***/

/*** Blog Section Start ***/
.blog-section {
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
    position: relative;
}

.blog-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="50" cy="50" r="1" fill="%23ffffff" opacity="0.05"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
    pointer-events: none;
}

.blog-section .blog-header h4 {
    letter-spacing: 2px;
    font-size: 0.9rem;
}

.blog-section .blog-header h1 {
    line-height: 1.2;
    font-weight: 700;
}

.blog-section .blog-header .lead {
    font-size: 1.1rem;
    line-height: 1.6;
    color: #6c757d;
}

.blog-card {
    background: #ffffff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    height: 100%;
    position: relative;
}

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

.blog-card-image {
    position: relative;
    overflow: hidden;
    height: 240px;
}

.blog-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.blog-card:hover .blog-card-image img {
    transform: scale(1.1);
}

.blog-card-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(0, 123, 255, 0.1) 0%, rgba(0, 86, 179, 0.1) 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.blog-card:hover .blog-card-overlay {
    opacity: 1;
}

.blog-category {
    position: absolute;
    top: 20px;
    left: 20px;
    z-index: 2;
}

.category-tag {
    background: rgba(255, 255, 255, 0.9);
    color: var(--bs-primary);
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    backdrop-filter: blur(10px);
}

.blog-card-content {
    padding: 2rem;
    position: relative;
    z-index: 2;
}

.blog-meta {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    font-size: 0.85rem;
}

.blog-date, .blog-author {
    display: flex;
    align-items: center;
}

.blog-title {
    font-size: 1.4rem;
    font-weight: 700;
    line-height: 1.3;
    margin-bottom: 1rem;
}

.blog-title a {
    color: #2c3e50;
    transition: color 0.3s ease;
}

.blog-title a:hover {
    color: var(--bs-primary);
}

.blog-excerpt {
    font-size: 0.95rem;
    line-height: 1.6;
    color: #6c757d;
    margin-bottom: 1.5rem;
}

.blog-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 1rem;
    border-top: 1px solid #e9ecef;
}

.read-more-link {
    color: var(--bs-primary);
    font-weight: 600;
    font-size: 0.9rem;
    text-decoration: none;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
}

.read-more-link:hover {
    color: #0056b3;
    transform: translateX(5px);
}

.read-more-link i {
    transition: transform 0.3s ease;
}

.read-more-link:hover i {
    transform: translateX(3px);
}

.blog-stats {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.reading-time {
    font-size: 0.8rem;
    color: #6c757d;
    display: flex;
    align-items: center;
}

/* Blog Section Button */
.blog-section .btn-outline-primary {
    border-width: 2px;
    font-weight: 600;
    padding: 0.75rem 2rem;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 0.9rem;
}

.blog-section .btn-outline-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(0, 123, 255, 0.2);
}

/* Responsive Design */
@media (max-width: 991px) {
    .blog-card-image {
        height: 200px;
    }
    
    .blog-card-content {
        padding: 1.5rem;
    }
    
    .blog-title {
        font-size: 1.2rem;
    }
    
    .blog-meta {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.5rem;
    }
}

@media (max-width: 767px) {
    .blog-section .blog-header h1 {
        font-size: 2rem;
    }
    
    .blog-card-image {
        height: 180px;
    }
    
    .blog-card-content {
        padding: 1.25rem;
    }
    
    .blog-footer {
        flex-direction: column;
        align-items: flex-start;
        gap: 1rem;
    }
    
    .blog-stats {
        width: 100%;
        justify-content: space-between;
    }
}

@media (max-width: 575px) {
    .blog-card-image {
        height: 160px;
    }
    
    .blog-title {
        font-size: 1.1rem;
    }
    
    .blog-excerpt {
        font-size: 0.9rem;
    }
}
/*** Blog Section End ***/

/*** Services Section Start ***/
.services-section {
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
    position: relative;
}

.services-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="50" cy="50" r="1" fill="%23ffffff" opacity="0.05"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
    pointer-events: none;
}

.services-section .services-header h4 {
    letter-spacing: 2px;
    font-size: 0.9rem;
}

.services-section .services-header h1 {
    line-height: 1.2;
    font-weight: 700;
}

.services-section .services-header .lead {
    font-size: 1.1rem;
    line-height: 1.6;
    color: #6c757d;
}

.service-card {
    background: #ffffff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    height: 500px;
    position: relative;
    display: flex;
    flex-direction: column;
}

.service-card::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--bs-primary), #17a2b8, var(--bs-primary));
    background-size: 200% 100%;
    animation: gradientShift 3s ease-in-out infinite;
    border-radius: 0 0 12px 12px;
}

.service-card::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 0;
    border-left: 8px solid transparent;
    border-right: 8px solid transparent;
    border-bottom: 8px solid var(--bs-primary);
    z-index: 3;
    opacity: 0;
    transition: all 0.3s ease;
}

.service-card:hover::before {
    opacity: 1;
    transform: translateX(-50%) translateY(-4px);
}

@keyframes gradientShift {
    0%, 100% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
}

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

.service-icon-section {
    position: relative;
    height: 120px;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    border-bottom: 1px solid #e9ecef;
}

.service-icon-wrapper {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--bs-primary) 0%, #0056b3 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 123, 255, 0.3);
}

.service-card:hover .service-icon-wrapper {
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 8px 25px rgba(0, 123, 255, 0.4);
}

.service-card-content {
    padding: 2rem;
    position: relative;
    z-index: 2;
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
}

.service-title {
    font-size: 1.4rem;
    font-weight: 700;
    line-height: 1.3;
    margin-bottom: 1rem;
}

.service-title a {
    color: #2c3e50;
    transition: color 0.3s ease;
}

.service-title a:hover {
    color: var(--bs-primary);
}

.service-description {
    font-size: 0.95rem;
    line-height: 1.6;
    color: #6c757d;
    margin-bottom: 0;
}

.service-card-bottom-decoration {
    position: absolute;
    bottom: 15px;
    right: 15px;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(0, 123, 255, 0.1) 0%, rgba(23, 162, 184, 0.1) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0.6;
    transition: all 0.3s ease;
    z-index: 2;
}

.service-card-bottom-decoration::before {
    content: '';
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--bs-primary) 0%, #17a2b8 100%);
    animation: pulse 2s ease-in-out infinite;
}

.service-card:hover .service-card-bottom-decoration {
    opacity: 1;
    transform: scale(1.2);
}

@keyframes pulse {
    0%, 100% { transform: scale(1); opacity: 0.7; }
    50% { transform: scale(1.1); opacity: 1; }
}





/* Services Carousel */
.services-carousel {
    position: relative;
    padding: 0 50px;
}

.services-carousel .service-card-wrapper {
    padding: 0 15px;
}

.services-carousel .owl-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 100%;
    left: 0;
    right: 0;
    pointer-events: none;
}

.services-carousel .owl-nav .owl-prev,
.services-carousel .owl-nav .owl-next {
    position: absolute;
    width: 50px;
    height: 50px;
    background: var(--bs-primary);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    transition: all 0.3s ease;
    pointer-events: all;
    box-shadow: 0 4px 15px rgba(0, 123, 255, 0.3);
}

.services-carousel .owl-nav .owl-prev {
    left: -25px;
}

.services-carousel .owl-nav .owl-next {
    right: -25px;
}

.services-carousel .owl-nav .owl-prev:hover,
.services-carousel .owl-nav .owl-next:hover {
    background: #0056b3;
    transform: scale(1.1);
    box-shadow: 0 6px 20px rgba(0, 123, 255, 0.4);
}

.services-carousel .owl-dots {
    text-align: center;
    margin-top: 2rem;
}

.services-carousel .owl-dots .owl-dot {
    width: 12px;
    height: 12px;
    margin: 0 5px;
    border-radius: 50%;
    background: #dee2e6;
    transition: all 0.3s ease;
}

.services-carousel .owl-dots .owl-dot.active {
    background: var(--bs-primary);
    transform: scale(1.2);
}

/* Services Section Button */
.services-section .btn-outline-primary {
    border-width: 2px;
    font-weight: 600;
    padding: 0.75rem 2rem;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 0.9rem;
}

.services-section .btn-outline-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(0, 123, 255, 0.2);
}

/* Responsive Design */
@media (max-width: 991px) {
    .service-card {
        height: 550px;
    }
    
    .service-icon-section {
        height: 100px;
    }
    
    .service-icon-wrapper {
        width: 70px;
        height: 70px;
    }
    
    .service-card-content {
        padding: 1.5rem;
    }
    
    .service-title {
        font-size: 1.2rem;
    }
    
    .services-carousel {
        padding: 0 40px;
    }
    
    .services-carousel .owl-nav .owl-prev {
        left: -20px;
    }
    
    .services-carousel .owl-nav .owl-next {
        right: -20px;
    }
}

@media (max-width: 767px) {
    .services-section .services-header h1 {
        font-size: 2rem;
    }
    
    .service-card {
        height: 500px;
    }
    
    .service-icon-section {
        height: 90px;
    }
    
    .service-icon-wrapper {
        width: 60px;
        height: 60px;
    }
    
    .service-card-content {
        padding: 1.25rem;
    }
    
    .services-carousel {
        padding: 0 30px;
    }
    
    .services-carousel .owl-nav .owl-prev,
    .services-carousel .owl-nav .owl-next {
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }
    
    .services-carousel .owl-nav .owl-prev {
        left: -20px;
    }
    
    .services-carousel .owl-nav .owl-next {
        right: -20px;
    }
}

@media (max-width: 575px) {
    .service-card {
        height: 450px;
    }
    
    .service-icon-section {
        height: 80px;
    }
    
    .service-icon-wrapper {
        width: 50px;
        height: 50px;
    }
    
    .service-title {
        font-size: 1.1rem;
    }
    
    .service-description {
        font-size: 0.9rem;
    }
    
    .services-carousel {
        padding: 0 20px;
    }
    
    .services-carousel .owl-nav .owl-prev,
    .services-carousel .owl-nav .owl-next {
        width: 35px;
        height: 35px;
        font-size: 0.9rem;
    }
    
    .services-carousel .owl-nav .owl-prev {
        left: -17px;
    }
    
    .services-carousel .owl-nav .owl-next {
        right: -17px;
    }
}
/*** Services Section End ***/

/* About Section AI Effects */
.about {
    position: relative;
    overflow: hidden;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 50%, #f8f9fa 100%);
}

/* AI Background Effects Container */
.ai-background-effects {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    pointer-events: none;
}

/* AI Particles */
.ai-particles {
    position: absolute;
    width: 100%;
    height: 100%;
}

.ai-particle {
    position: absolute;
    width: 4px;
    height: 4px;
    background: radial-gradient(circle, rgba(0, 255, 255, 0.8) 0%, rgba(0, 150, 255, 0.4) 100%);
    border-radius: 50%;
    box-shadow: 0 0 10px rgba(0, 255, 255, 0.6);
    animation: particleFloat 15s linear infinite;
}

.particle-1 { top: 10%; left: 15%; animation-delay: 0s; }
.particle-2 { top: 25%; right: 20%; animation-delay: -2s; }
.particle-3 { top: 45%; left: 10%; animation-delay: -4s; }
.particle-4 { top: 60%; right: 15%; animation-delay: -6s; }
.particle-5 { top: 75%; left: 25%; animation-delay: -8s; }
.particle-6 { top: 20%; left: 70%; animation-delay: -10s; }
.particle-7 { top: 50%; right: 30%; animation-delay: -12s; }
.particle-8 { top: 80%; right: 25%; animation-delay: -14s; }

@keyframes particleFloat {
    0% {
        transform: translateY(0px) translateX(0px);
        opacity: 0;
    }
    10% {
        opacity: 1;
    }
    90% {
        opacity: 1;
    }
    100% {
        transform: translateY(-100px) translateX(50px);
        opacity: 0;
    }
}

/* AI Circuit Lines */
.ai-circuit-lines {
    position: absolute;
    width: 100%;
    height: 100%;
}

.circuit-line {
    position: absolute;
    background: linear-gradient(90deg, transparent, rgba(0, 255, 255, 0.3), transparent);
    height: 1px;
    animation: circuitFlow 8s linear infinite;
}

.line-1 {
    top: 20%;
    left: 0;
    width: 30%;
    animation-delay: 0s;
}

.line-2 {
    top: 50%;
    right: 0;
    width: 25%;
    animation-delay: -2s;
}

.line-3 {
    top: 70%;
    left: 10%;
    width: 40%;
    animation-delay: -4s;
}

.line-4 {
    top: 30%;
    right: 20%;
    width: 35%;
    animation-delay: -6s;
}

@keyframes circuitFlow {
    0% {
        transform: translateX(-100%);
        opacity: 0;
    }
    50% {
        opacity: 1;
    }
    100% {
        transform: translateX(100%);
        opacity: 0;
    }
}

/* AI Floating Elements */
.ai-floating-elements {
    position: absolute;
    width: 100%;
    height: 100%;
}

.ai-element {
    position: absolute;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: radial-gradient(circle at 30% 30%, 
        rgba(0, 255, 255, 0.4) 0%, 
        rgba(0, 150, 255, 0.3) 30%, 
        rgba(0, 100, 200, 0.2) 60%, 
        rgba(0, 50, 150, 0.1) 100%);
    border: 2px solid rgba(0, 255, 255, 0.3);
    box-shadow: 
        inset 0 0 20px rgba(0, 255, 255, 0.2),
        0 0 30px rgba(0, 255, 255, 0.1);
    animation: elementFloat 20s ease-in-out infinite;
}

.element-1 {
    top: 15%;
    right: 10%;
    animation-delay: 0s;
}

.element-2 {
    top: 55%;
    left: 5%;
    animation-delay: -7s;
}

.element-3 {
    bottom: 20%;
    right: 20%;
    animation-delay: -14s;
}

.element-core {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 30%;
    height: 30%;
    transform: translate(-50%, -50%);
    border-radius: 50%;
    background: radial-gradient(circle at center, 
        rgba(255, 255, 255, 0.8) 0%, 
        rgba(0, 255, 255, 0.6) 50%, 
        rgba(0, 150, 255, 0.4) 100%);
    box-shadow: 0 0 8px rgba(0, 255, 255, 0.6);
    animation: corePulse 3s ease-in-out infinite;
}

.element-pulse {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 80%;
    height: 80%;
    transform: translate(-50%, -50%);
    border-radius: 50%;
    border: 1px solid rgba(0, 255, 255, 0.2);
    animation: elementPulse 4s ease-out infinite;
}

@keyframes elementFloat {
    0%, 100% {
        transform: translateY(0px) translateX(0px) rotate(0deg) scale(1);
        opacity: 0.7;
    }
    25% {
        transform: translateY(-15px) translateX(10px) rotate(90deg) scale(1.05);
        opacity: 0.9;
    }
    50% {
        transform: translateY(-10px) translateX(-10px) rotate(180deg) scale(0.95);
        opacity: 0.6;
    }
    75% {
        transform: translateY(-20px) translateX(5px) rotate(270deg) scale(1.1);
        opacity: 0.8;
    }
}

@keyframes corePulse {
    0%, 100% {
        transform: translate(-50%, -50%) scale(1);
        opacity: 0.8;
    }
    50% {
        transform: translate(-50%, -50%) scale(1.2);
        opacity: 1;
    }
}

@keyframes elementPulse {
    0% {
        transform: translate(-50%, -50%) scale(0.8);
        opacity: 1;
    }
    100% {
        transform: translate(-50%, -50%) scale(1.5);
        opacity: 0;
    }
}

/* AI Gradient Overlay */
.ai-gradient-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 30% 30%, 
        rgba(0, 255, 255, 0.05) 0%, 
        rgba(0, 150, 255, 0.03) 30%, 
        transparent 70%);
    pointer-events: none;
}

/* AI Content Glow */
.ai-content-glow {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border-radius: inherit;
    background: linear-gradient(135deg, 
        rgba(0, 255, 255, 0.05) 0%, 
        rgba(0, 150, 255, 0.03) 50%, 
        transparent 100%);
    pointer-events: none;
    z-index: 1;
}

/* AI Image Overlay */
.ai-image-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border-radius: inherit;
    background: linear-gradient(135deg, 
        rgba(0, 255, 255, 0.1) 0%, 
        rgba(0, 150, 255, 0.05) 50%, 
        transparent 100%);
    pointer-events: none;
    z-index: 2;
}

/* Ensure content is above effects */
.about .container {
    position: relative;
    z-index: 2;
}

.about-item-content,
.about .bg-white {
    position: relative;
    z-index: 3;
    backdrop-filter: blur(5px);
    background: rgba(255, 255, 255, 0.95) !important;
    border: 1px solid rgba(0, 255, 255, 0.1);
    box-shadow: 
        0 10px 30px rgba(0, 0, 0, 0.1),
        0 0 20px rgba(0, 255, 255, 0.1);
}

/* Services Section AI Effects */
.services-section {
    position: relative;
    overflow: hidden;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 50%, #f8f9fa 100%);
}

/* AI Background Effects Container for Services */
.ai-background-effects-services {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    pointer-events: none;
}

/* AI Particles for Services */
.ai-particles-services {
    position: absolute;
    width: 100%;
    height: 100%;
}

.ai-particle-service {
    position: absolute;
    width: 3px;
    height: 3px;
    background: radial-gradient(circle, rgba(147, 51, 234, 0.8) 0%, rgba(168, 85, 247, 0.4) 100%);
    border-radius: 50%;
    box-shadow: 0 0 8px rgba(147, 51, 234, 0.6);
    animation: particleFloatServices 12s linear infinite;
}

.particle-s-1 { top: 5%; left: 20%; animation-delay: 0s; }
.particle-s-2 { top: 15%; right: 25%; animation-delay: -1s; }
.particle-s-3 { top: 35%; left: 15%; animation-delay: -2s; }
.particle-s-4 { top: 55%; right: 20%; animation-delay: -3s; }
.particle-s-5 { top: 75%; left: 30%; animation-delay: -4s; }
.particle-s-6 { top: 25%; left: 65%; animation-delay: -5s; }
.particle-s-7 { top: 45%; right: 35%; animation-delay: -6s; }
.particle-s-8 { top: 65%; right: 15%; animation-delay: -7s; }
.particle-s-9 { top: 85%; left: 45%; animation-delay: -8s; }
.particle-s-10 { top: 10%; right: 45%; animation-delay: -9s; }

@keyframes particleFloatServices {
    0% {
        transform: translateY(0px) translateX(0px);
        opacity: 0;
    }
    10% {
        opacity: 1;
    }
    90% {
        opacity: 1;
    }
    100% {
        transform: translateY(-80px) translateX(30px);
        opacity: 0;
    }
}

/* AI Circuit Lines for Services */
.ai-circuit-lines-services {
    position: absolute;
    width: 100%;
    height: 100%;
}

.circuit-line-service {
    position: absolute;
    background: linear-gradient(90deg, transparent, rgba(147, 51, 234, 0.3), transparent);
    height: 1px;
    animation: circuitFlowServices 10s linear infinite;
}

.line-s-1 {
    top: 15%;
    left: 0;
    width: 35%;
    animation-delay: 0s;
}

.line-s-2 {
    top: 40%;
    right: 0;
    width: 30%;
    animation-delay: -2s;
}

.line-s-3 {
    top: 65%;
    left: 15%;
    width: 45%;
    animation-delay: -4s;
}

.line-s-4 {
    top: 25%;
    right: 25%;
    width: 40%;
    animation-delay: -6s;
}

.line-s-5 {
    top: 80%;
    right: 10%;
    width: 25%;
    animation-delay: -8s;
}

@keyframes circuitFlowServices {
    0% {
        transform: translateX(-100%);
        opacity: 0;
    }
    50% {
        opacity: 1;
    }
    100% {
        transform: translateX(100%);
        opacity: 0;
    }
}

/* AI Floating Elements for Services */
.ai-floating-elements-services {
    position: absolute;
    width: 100%;
    height: 100%;
}

.ai-element-service {
    position: absolute;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: radial-gradient(circle at 30% 30%, 
        rgba(147, 51, 234, 0.4) 0%, 
        rgba(168, 85, 247, 0.3) 30%, 
        rgba(139, 92, 246, 0.2) 60%, 
        rgba(124, 58, 237, 0.1) 100%);
    border: 2px solid rgba(147, 51, 234, 0.3);
    box-shadow: 
        inset 0 0 15px rgba(147, 51, 234, 0.2),
        0 0 25px rgba(147, 51, 234, 0.1);
    animation: elementFloatServices 18s ease-in-out infinite;
}

.element-s-1 {
    top: 20%;
    right: 15%;
    animation-delay: 0s;
}

.element-s-2 {
    top: 60%;
    left: 10%;
    animation-delay: -5s;
}

.element-s-3 {
    bottom: 25%;
    right: 25%;
    animation-delay: -10s;
}

.element-s-4 {
    top: 40%;
    left: 60%;
    animation-delay: -15s;
}

.element-core-service {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 35%;
    height: 35%;
    transform: translate(-50%, -50%);
    border-radius: 50%;
    background: radial-gradient(circle at center, 
        rgba(255, 255, 255, 0.8) 0%, 
        rgba(147, 51, 234, 0.6) 50%, 
        rgba(168, 85, 247, 0.4) 100%);
    box-shadow: 0 0 6px rgba(147, 51, 234, 0.6);
    animation: corePulseServices 4s ease-in-out infinite;
}

.element-pulse-service {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 85%;
    height: 85%;
    transform: translate(-50%, -50%);
    border-radius: 50%;
    border: 1px solid rgba(147, 51, 234, 0.2);
    animation: elementPulseServices 5s ease-out infinite;
}

@keyframes elementFloatServices {
    0%, 100% {
        transform: translateY(0px) translateX(0px) rotate(0deg) scale(1);
        opacity: 0.6;
    }
    25% {
        transform: translateY(-12px) translateX(8px) rotate(90deg) scale(1.03);
        opacity: 0.8;
    }
    50% {
        transform: translateY(-8px) translateX(-8px) rotate(180deg) scale(0.97);
        opacity: 0.5;
    }
    75% {
        transform: translateY(-18px) translateX(4px) rotate(270deg) scale(1.08);
        opacity: 0.7;
    }
}

@keyframes corePulseServices {
    0%, 100% {
        transform: translate(-50%, -50%) scale(1);
        opacity: 0.7;
    }
    50% {
        transform: translate(-50%, -50%) scale(1.15);
        opacity: 1;
    }
}

@keyframes elementPulseServices {
    0% {
        transform: translate(-50%, -50%) scale(0.8);
        opacity: 1;
    }
    100% {
        transform: translate(-50%, -50%) scale(1.6);
        opacity: 0;
    }
}

/* AI Gradient Overlay for Services */
.ai-gradient-overlay-services {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 70% 30%, 
        rgba(147, 51, 234, 0.05) 0%, 
        rgba(168, 85, 247, 0.03) 30%, 
        transparent 70%);
    pointer-events: none;
}

/* AI Content Glow for Services */
.ai-content-glow-services {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border-radius: inherit;
    background: linear-gradient(135deg, 
        rgba(147, 51, 234, 0.05) 0%, 
        rgba(168, 85, 247, 0.03) 50%, 
        transparent 100%);
    pointer-events: none;
    z-index: 1;
}

/* AI Service Card Glow */
.ai-service-card-glow {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border-radius: inherit;
    background: linear-gradient(135deg, 
        rgba(147, 51, 234, 0.08) 0%, 
        rgba(168, 85, 247, 0.04) 50%, 
        transparent 100%);
    pointer-events: none;
    z-index: 1;
}

/* Ensure content is above effects for Services */
.services-section .container {
    position: relative;
    z-index: 2;
}

.services-header {
    position: relative;
    z-index: 3;
    backdrop-filter: blur(5px);
    background: rgba(255, 255, 255, 0.9);
    border-radius: 15px;
    padding: 30px;
    border: 1px solid rgba(147, 51, 234, 0.1);
    box-shadow: 
        0 10px 30px rgba(0, 0, 0, 0.1),
        0 0 20px rgba(147, 51, 234, 0.1);
    margin-bottom: 50px;
}

.services-carousel {
    position: relative;
    z-index: 4;
}

.service-card-wrapper {
    position: relative;
    z-index: 4;
}

.service-card {
    position: relative;
    z-index: 4;
    backdrop-filter: blur(5px);
    background: rgba(255, 255, 255, 0.95) !important;
    border: 1px solid rgba(147, 51, 234, 0.1);
    box-shadow: 
        0 10px 30px rgba(0, 0, 0, 0.1),
        0 0 20px rgba(147, 51, 234, 0.1);
}

/* Who We Are Section AI Effects */
.who-we-are {
    position: relative;
    overflow: hidden;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 50%, #f8f9fa 100%);
}

/* AI Background Effects Container for Who We Are */
.ai-background-effects-who-we-are {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    pointer-events: none;
}

/* AI Particles for Who We Are */
.ai-particles-who-we-are {
    position: absolute;
    width: 100%;
    height: 100%;
}

.ai-particle-who-we-are {
    position: absolute;
    width: 3px;
    height: 3px;
    background: radial-gradient(circle, rgba(147, 51, 234, 0.8) 0%, rgba(168, 85, 247, 0.4) 100%);
    border-radius: 50%;
    box-shadow: 0 0 8px rgba(147, 51, 234, 0.6);
    animation: particleFloatWhoWeAre 14s linear infinite;
}

.particle-w-1 { top: 8%; left: 18%; animation-delay: 0s; }
.particle-w-2 { top: 22%; right: 22%; animation-delay: -1.5s; }
.particle-w-3 { top: 38%; left: 12%; animation-delay: -3s; }
.particle-w-4 { top: 58%; right: 18%; animation-delay: -4.5s; }
.particle-w-5 { top: 78%; left: 28%; animation-delay: -6s; }
.particle-w-6 { top: 18%; left: 68%; animation-delay: -7.5s; }
.particle-w-7 { top: 42%; right: 38%; animation-delay: -9s; }
.particle-w-8 { top: 68%; right: 12%; animation-delay: -10.5s; }
.particle-w-9 { top: 88%; right: 28%; animation-delay: -12s; }

@keyframes particleFloatWhoWeAre {
    0% {
        transform: translateY(0px) translateX(0px);
        opacity: 0;
    }
    10% {
        opacity: 1;
    }
    90% {
        opacity: 1;
    }
    100% {
        transform: translateY(-90px) translateX(25px);
        opacity: 0;
    }
}

/* AI Circuit Lines for Who We Are */
.ai-circuit-lines-who-we-are {
    position: absolute;
    width: 100%;
    height: 100%;
}

.circuit-line-who-we-are {
    position: absolute;
    background: linear-gradient(90deg, transparent, rgba(147, 51, 234, 0.3), transparent);
    height: 1px;
    animation: circuitFlowWhoWeAre 9s linear infinite;
}

.line-w-1 {
    top: 18%;
    left: 0;
    width: 32%;
    animation-delay: 0s;
}

.line-w-2 {
    top: 45%;
    right: 0;
    width: 28%;
    animation-delay: -2.5s;
}

.line-w-3 {
    top: 72%;
    left: 12%;
    width: 42%;
    animation-delay: -5s;
}

.line-w-4 {
    top: 28%;
    right: 22%;
    width: 38%;
    animation-delay: -7.5s;
}

@keyframes circuitFlowWhoWeAre {
    0% {
        transform: translateX(-100%);
        opacity: 0;
    }
    50% {
        opacity: 1;
    }
    100% {
        transform: translateX(100%);
        opacity: 0;
    }
}

/* AI Floating Elements for Who We Are */
.ai-floating-elements-who-we-are {
    position: absolute;
    width: 100%;
    height: 100%;
}

.ai-element-who-we-are {
    position: absolute;
    width: 55px;
    height: 55px;
    border-radius: 50%;
    background: radial-gradient(circle at 30% 30%, 
        rgba(147, 51, 234, 0.4) 0%, 
        rgba(168, 85, 247, 0.3) 30%, 
        rgba(139, 92, 246, 0.2) 60%, 
        rgba(124, 58, 237, 0.1) 100%);
    border: 2px solid rgba(147, 51, 234, 0.3);
    box-shadow: 
        inset 0 0 15px rgba(147, 51, 234, 0.2),
        0 0 25px rgba(147, 51, 234, 0.1);
    animation: elementFloatWhoWeAre 19s ease-in-out infinite;
}

.element-w-1 {
    top: 18%;
    right: 12%;
    animation-delay: 0s;
}

.element-w-2 {
    top: 58%;
    left: 8%;
    animation-delay: -6s;
}

.element-w-3 {
    bottom: 22%;
    right: 18%;
    animation-delay: -12s;
}

.element-core-who-we-are {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 32%;
    height: 32%;
    transform: translate(-50%, -50%);
    border-radius: 50%;
    background: radial-gradient(circle at center, 
        rgba(255, 255, 255, 0.8) 0%, 
        rgba(147, 51, 234, 0.6) 50%, 
        rgba(168, 85, 247, 0.4) 100%);
    box-shadow: 0 0 6px rgba(147, 51, 234, 0.6);
    animation: corePulseWhoWeAre 4.5s ease-in-out infinite;
}

.element-pulse-who-we-are {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 82%;
    height: 82%;
    transform: translate(-50%, -50%);
    border-radius: 50%;
    border: 1px solid rgba(147, 51, 234, 0.2);
    animation: elementPulseWhoWeAre 5.5s ease-out infinite;
}

@keyframes elementFloatWhoWeAre {
    0%, 100% {
        transform: translateY(0px) translateX(0px) rotate(0deg) scale(1);
        opacity: 0.6;
    }
    25% {
        transform: translateY(-14px) translateX(9px) rotate(90deg) scale(1.04);
        opacity: 0.8;
    }
    50% {
        transform: translateY(-9px) translateX(-9px) rotate(180deg) scale(0.96);
        opacity: 0.5;
    }
    75% {
        transform: translateY(-19px) translateX(6px) rotate(270deg) scale(1.09);
        opacity: 0.7;
    }
}

@keyframes corePulseWhoWeAre {
    0%, 100% {
        transform: translate(-50%, -50%) scale(1);
        opacity: 0.7;
    }
    50% {
        transform: translate(-50%, -50%) scale(1.18);
        opacity: 1;
    }
}

@keyframes elementPulseWhoWeAre {
    0% {
        transform: translate(-50%, -50%) scale(0.8);
        opacity: 1;
    }
    100% {
        transform: translate(-50%, -50%) scale(1.7);
        opacity: 0;
    }
}

/* AI Gradient Overlay for Who We Are */
.ai-gradient-overlay-who-we-are {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 25% 70%, 
        rgba(147, 51, 234, 0.05) 0%, 
        rgba(168, 85, 247, 0.03) 30%, 
        transparent 70%);
    pointer-events: none;
}

/* AI Content Glow for Who We Are */
.ai-content-glow-who-we-are {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border-radius: inherit;
    background: linear-gradient(135deg, 
        rgba(147, 51, 234, 0.05) 0%, 
        rgba(168, 85, 247, 0.03) 50%, 
        transparent 100%);
    pointer-events: none;
    z-index: 1;
}

/* AI Image Glow for Who We Are */
.ai-image-glow-who-we-are {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border-radius: inherit;
    background: linear-gradient(135deg, 
        rgba(147, 51, 234, 0.08) 0%, 
        rgba(168, 85, 247, 0.04) 50%, 
        transparent 100%);
    pointer-events: none;
    z-index: 2;
}

/* AI Counter Glow */
.ai-counter-glow {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border-radius: inherit;
    background: linear-gradient(135deg, 
        rgba(147, 51, 234, 0.06) 0%, 
        rgba(168, 85, 247, 0.03) 50%, 
        transparent 100%);
    pointer-events: none;
    z-index: 1;
}

/* AI Floating Card Glow */
.ai-floating-card-glow {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border-radius: inherit;
    background: linear-gradient(135deg, 
        rgba(147, 51, 234, 0.07) 0%, 
        rgba(168, 85, 247, 0.04) 50%, 
        transparent 100%);
    pointer-events: none;
    z-index: 1;
}

/* Ensure content is above effects for Who We Are */
.who-we-are .container {
    position: relative;
    z-index: 2;
}

.who-we-are-content {
    position: relative;
    z-index: 3;
    backdrop-filter: blur(5px);
    background: rgba(255, 255, 255, 0.92);
    border-radius: 15px;
    padding: 30px;
    border: 1px solid rgba(147, 51, 234, 0.1);
    box-shadow: 
        0 10px 30px rgba(0, 0, 0, 0.1),
        0 0 20px rgba(147, 51, 234, 0.1);
}

.counter-item {
    position: relative;
    z-index: 3;
    backdrop-filter: blur(5px);
    background: rgba(248, 249, 250, 0.95) !important;
    border: 1px solid rgba(147, 51, 234, 0.1);
    box-shadow: 
        0 5px 15px rgba(0, 0, 0, 0.1),
        0 0 10px rgba(147, 51, 234, 0.1);
}

.floating-card {
    position: relative;
    z-index: 3;
    backdrop-filter: blur(5px);
    background: rgba(255, 255, 255, 0.95) !important;
    border: 1px solid rgba(147, 51, 234, 0.1);
    box-shadow: 
        0 8px 25px rgba(0, 0, 0, 0.1),
        0 0 15px rgba(147, 51, 234, 0.1);
}

/* Technologies Section AI Effects */
.technologies-section {
    position: relative;
    overflow: hidden;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 50%, #f8f9fa 100%);
}

/* AI Background Effects Container for Technologies */
.ai-background-effects-technologies {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    pointer-events: none;
}

/* AI Particles for Technologies */
.ai-particles-technologies {
    position: absolute;
    width: 100%;
    height: 100%;
}

.ai-particle-technology {
    position: absolute;
    width: 3px;
    height: 3px;
    background: radial-gradient(circle, rgba(16, 185, 129, 0.8) 0%, rgba(5, 150, 105, 0.4) 100%);
    border-radius: 50%;
    box-shadow: 0 0 8px rgba(16, 185, 129, 0.6);
    animation: particleFloatTechnologies 13s linear infinite;
}

.particle-t-1 { top: 12%; left: 16%; animation-delay: 0s; }
.particle-t-2 { top: 28%; right: 18%; animation-delay: -1.5s; }
.particle-t-3 { top: 42%; left: 14%; animation-delay: -3s; }
.particle-t-4 { top: 62%; right: 22%; animation-delay: -4.5s; }
.particle-t-5 { top: 82%; left: 26%; animation-delay: -6s; }
.particle-t-6 { top: 24%; left: 72%; animation-delay: -7.5s; }
.particle-t-7 { top: 48%; right: 32%; animation-delay: -9s; }
.particle-t-8 { top: 72%; right: 16%; animation-delay: -10.5s; }

@keyframes particleFloatTechnologies {
    0% {
        transform: translateY(0px) translateX(0px);
        opacity: 0;
    }
    10% {
        opacity: 1;
    }
    90% {
        opacity: 1;
    }
    100% {
        transform: translateY(-85px) translateX(35px);
        opacity: 0;
    }
}

/* AI Circuit Lines for Technologies */
.ai-circuit-lines-technologies {
    position: absolute;
    width: 100%;
    height: 100%;
}

.circuit-line-technology {
    position: absolute;
    background: linear-gradient(90deg, transparent, rgba(16, 185, 129, 0.3), transparent);
    height: 1px;
    animation: circuitFlowTechnologies 11s linear infinite;
}

.line-t-1 {
    top: 16%;
    left: 0;
    width: 34%;
    animation-delay: 0s;
}

.line-t-2 {
    top: 44%;
    right: 0;
    width: 26%;
    animation-delay: -3s;
}

.line-t-3 {
    top: 68%;
    left: 8%;
    width: 44%;
    animation-delay: -6s;
}

.line-t-4 {
    top: 32%;
    right: 18%;
    width: 36%;
    animation-delay: -9s;
}

@keyframes circuitFlowTechnologies {
    0% {
        transform: translateX(-100%);
        opacity: 0;
    }
    50% {
        opacity: 1;
    }
    100% {
        transform: translateX(100%);
        opacity: 0;
    }
}

/* AI Floating Elements for Technologies */
.ai-floating-elements-technologies {
    position: absolute;
    width: 100%;
    height: 100%;
}

.ai-element-technology {
    position: absolute;
    width: 52px;
    height: 52px;
    border-radius: 50%;
    background: radial-gradient(circle at 30% 30%, 
        rgba(16, 185, 129, 0.4) 0%, 
        rgba(5, 150, 105, 0.3) 30%, 
        rgba(4, 120, 87, 0.2) 60%, 
        rgba(6, 95, 70, 0.1) 100%);
    border: 2px solid rgba(16, 185, 129, 0.3);
    box-shadow: 
        inset 0 0 15px rgba(16, 185, 129, 0.2),
        0 0 25px rgba(16, 185, 129, 0.1);
    animation: elementFloatTechnologies 17s ease-in-out infinite;
}

.element-t-1 {
    top: 22%;
    right: 14%;
    animation-delay: 0s;
}

.element-t-2 {
    top: 64%;
    left: 12%;
    animation-delay: -6s;
}

.element-t-3 {
    bottom: 18%;
    right: 24%;
    animation-delay: -12s;
}

.element-core-technology {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 34%;
    height: 34%;
    transform: translate(-50%, -50%);
    border-radius: 50%;
    background: radial-gradient(circle at center, 
        rgba(255, 255, 255, 0.8) 0%, 
        rgba(16, 185, 129, 0.6) 50%, 
        rgba(5, 150, 105, 0.4) 100%);
    box-shadow: 0 0 6px rgba(16, 185, 129, 0.6);
    animation: corePulseTechnologies 4s ease-in-out infinite;
}

.element-pulse-technology {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 84%;
    height: 84%;
    transform: translate(-50%, -50%);
    border-radius: 50%;
    border: 1px solid rgba(16, 185, 129, 0.2);
    animation: elementPulseTechnologies 5s ease-out infinite;
}

@keyframes elementFloatTechnologies {
    0%, 100% {
        transform: translateY(0px) translateX(0px) rotate(0deg) scale(1);
        opacity: 0.6;
    }
    25% {
        transform: translateY(-13px) translateX(7px) rotate(90deg) scale(1.03);
        opacity: 0.8;
    }
    50% {
        transform: translateY(-8px) translateX(-8px) rotate(180deg) scale(0.97);
        opacity: 0.5;
    }
    75% {
        transform: translateY(-17px) translateX(4px) rotate(270deg) scale(1.08);
        opacity: 0.7;
    }
}

@keyframes corePulseTechnologies {
    0%, 100% {
        transform: translate(-50%, -50%) scale(1);
        opacity: 0.7;
    }
    50% {
        transform: translate(-50%, -50%) scale(1.16);
        opacity: 1;
    }
}

@keyframes elementPulseTechnologies {
    0% {
        transform: translate(-50%, -50%) scale(0.8);
        opacity: 1;
    }
    100% {
        transform: translate(-50%, -50%) scale(1.6);
        opacity: 0;
    }
}

/* AI Gradient Overlay for Technologies */
.ai-gradient-overlay-technologies {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 75% 25%, 
        rgba(16, 185, 129, 0.05) 0%, 
        rgba(5, 150, 105, 0.03) 30%, 
        transparent 70%);
    pointer-events: none;
}

/* AI Content Glow for Technologies */
.ai-content-glow-technologies {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border-radius: inherit;
    background: linear-gradient(135deg, 
        rgba(16, 185, 129, 0.05) 0%, 
        rgba(5, 150, 105, 0.03) 50%, 
        transparent 100%);
    pointer-events: none;
    z-index: 1;
}

/* AI Category Glow */
.ai-category-glow {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border-radius: inherit;
    background: linear-gradient(135deg, 
        rgba(16, 185, 129, 0.06) 0%, 
        rgba(5, 150, 105, 0.03) 50%, 
        transparent 100%);
    pointer-events: none;
    z-index: 1;
}

/* AI Tech Glow */
.ai-tech-glow {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border-radius: inherit;
    background: linear-gradient(135deg, 
        rgba(16, 185, 129, 0.08) 0%, 
        rgba(5, 150, 105, 0.04) 50%, 
        transparent 100%);
    pointer-events: none;
    z-index: 1;
}

/* Ensure content is above effects for Technologies */
.technologies-section .container {
    position: relative;
    z-index: 2;
}

.technologies-header {
    position: relative;
    z-index: 3;
    backdrop-filter: blur(5px);
    background: rgba(255, 255, 255, 0.9);
    border-radius: 15px;
    padding: 30px;
    border: 1px solid rgba(16, 185, 129, 0.1);
    box-shadow: 
        0 10px 30px rgba(0, 0, 0, 0.1),
        0 0 20px rgba(16, 185, 129, 0.1);
    margin-bottom: 50px;
}

/* Technology Categories Header Row */
.technology-categories-header {
    position: relative;
    z-index: 3;
    margin-bottom: 3rem;
}

.category-header-horizontal {
    position: relative;
    z-index: 3;
    backdrop-filter: blur(5px);
    background: rgba(255, 255, 255, 0.85);
    border-radius: 15px;
    padding: 1.5rem;
    border: 1px solid rgba(16, 185, 129, 0.1);
    box-shadow: 
        0 5px 15px rgba(0, 0, 0, 0.1),
        0 0 10px rgba(16, 185, 129, 0.1);
    transition: all 0.3s ease;
    cursor: pointer;
    text-align: center;
    height: 120px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    user-select: none;
}

.category-header-horizontal:hover {
    background: rgba(255, 255, 255, 0.95);
    transform: translateY(-3px);
    box-shadow: 
        0 10px 30px rgba(0, 0, 0, 0.2),
        0 0 15px rgba(16, 185, 129, 0.2);
    border-color: rgba(16, 185, 129, 0.3);
}

.category-header-horizontal.expanded {
    background: rgba(16, 185, 129, 0.15);
    border-color: rgba(16, 185, 129, 0.6);
    transform: translateY(-3px);
    box-shadow: 
        0 15px 35px rgba(16, 185, 129, 0.3),
        0 0 20px rgba(16, 185, 129, 0.2);
}

.category-icon {
    margin-bottom: 0.5rem;
    transition: all 0.3s ease;
}

.category-header-horizontal:hover .category-icon {
    transform: scale(1.1);
}

.category-header-horizontal h6 {
    margin-bottom: 0.5rem;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    color: #10b981;
}

.toggle-icon {
    width: 25px;
    height: 25px;
    background: rgba(16, 185, 129, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    margin-top: 0.5rem;
}

.category-header-horizontal:hover .toggle-icon {
    background: rgba(16, 185, 129, 0.2);
    transform: scale(1.1);
}

.toggle-icon i {
    color: #10b981;
    font-size: 12px;
    transition: transform 0.3s ease;
}

.category-header-horizontal:hover .toggle-icon i {
    transform: rotate(180deg);
}

/* Technology Content Sections */
.technologies-content {
    position: relative;
    z-index: 3;
    min-height: 300px;
}

.category-content-section {
    display: none;
    opacity: 0;
    transition: all 0.3s ease;
    padding: 2rem;
    backdrop-filter: blur(5px);
    background: rgba(255, 255, 255, 0.8);
    border-radius: 15px;
    border: 1px solid rgba(16, 185, 129, 0.1);
    box-shadow: 
        0 10px 30px rgba(0, 0, 0, 0.1),
        0 0 20px rgba(16, 185, 129, 0.1);
}

.technology-category {
    position: relative;
    z-index: 3;
}

.category-header {
    backdrop-filter: blur(5px);
    background: rgba(255, 255, 255, 0.85);
    border-radius: 12px;
    padding: 20px;
    border: 1px solid rgba(16, 185, 129, 0.1);
    box-shadow: 
        0 5px 15px rgba(0, 0, 0, 0.1),
        0 0 10px rgba(16, 185, 129, 0.1);
    margin-bottom: 0;
    transition: all 0.3s ease;
    user-select: none;
}

.category-header:hover {
    background: rgba(255, 255, 255, 0.95);
    box-shadow: 
        0 8px 25px rgba(0, 0, 0, 0.15),
        0 0 15px rgba(16, 185, 129, 0.2);
    transform: translateY(-2px);
}

.category-header.expanded {
    border-bottom-left-radius: 0;
    border-bottom-right-radius: 0;
    border-bottom: 1px solid rgba(16, 185, 129, 0.2);
}

.toggle-icon {
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: rgba(16, 185, 129, 0.1);
    transition: all 0.3s ease;
}

.category-header:hover .toggle-icon {
    background: rgba(16, 185, 129, 0.2);
    transform: scale(1.1);
}

.toggle-icon i {
    color: #10b981;
    font-size: 14px;
    transition: all 0.3s ease;
}

.category-header:hover .toggle-icon i {
    color: #059669;
}

.category-content {
    backdrop-filter: blur(5px);
    background: rgba(255, 255, 255, 0.8);
    border: 1px solid rgba(16, 185, 129, 0.1);
    border-top: none;
    border-bottom-left-radius: 12px;
    border-bottom-right-radius: 12px;
    padding: 25px 20px;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    max-height: 0;
    opacity: 0;
}

.category-content.expanded {
    max-height: 1000px;
    opacity: 1;
}

.tech-item {
    position: relative;
    z-index: 3;
    backdrop-filter: blur(5px);
    background: rgba(255, 255, 255, 0.95);
    border-radius: 12px;
    padding: 20px 15px;
    text-align: center;
    border: 1px solid rgba(16, 185, 129, 0.1);
    box-shadow: 
        0 5px 15px rgba(0, 0, 0, 0.1),
        0 0 10px rgba(16, 185, 129, 0.1);
    transition: all 0.3s ease;
    height: 100%;
}

.tech-item:hover {
    transform: translateY(-5px);
    box-shadow: 
        0 10px 25px rgba(0, 0, 0, 0.15),
        0 0 20px rgba(16, 185, 129, 0.2);
    border-color: rgba(16, 185, 129, 0.3);
}

.tech-icon {
    margin-bottom: 15px;
    transition: all 0.3s ease;
}

.tech-item:hover .tech-icon {
    transform: scale(1.1);
}

.tech-name {
    font-weight: 600;
    color: #333;
    margin: 0;
    font-size: 0.9rem;
}

.technologies-grid {
    position: relative;
    z-index: 3;
}

/* Responsive adjustments for toggle functionality */
@media (max-width: 768px) {
    .category-header {
        padding: 15px;
    }
    
    .category-content {
        padding: 20px 15px;
    }
    
    .toggle-icon {
        width: 25px;
        height: 25px;
    }
    
    .toggle-icon i {
        font-size: 12px;
    }
    
    .category-header-horizontal {
        height: 100px;
        padding: 1rem;
    }
    
    .category-header-horizontal h6 {
        font-size: 0.8rem;
    }
    
    .category-icon i {
        font-size: 1.5rem !important;
    }
    
    .technologies-content {
        min-height: 250px;
    }
    
    .category-content-section {
        padding: 1.5rem;
    }
}

@media (max-width: 576px) {
    .category-header-horizontal {
        height: 90px;
        padding: 0.75rem;
    }
    
    .category-header-horizontal h6 {
        font-size: 0.75rem;
        margin-bottom: 0.25rem;
    }
    
    .category-icon {
        margin-bottom: 0.25rem;
    }
    
    .category-icon i {
        font-size: 1.25rem !important;
    }
    
    .toggle-icon {
        width: 20px;
        height: 20px;
        margin-top: 0.25rem;
    }
    
    .toggle-icon i {
        font-size: 10px;
    }
}

/* FAQ Section AI Effects */
.faq-section {
    position: relative;
    overflow: hidden;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 50%, #f8f9fa 100%);
}

/* AI Background Effects Container for FAQs */
.ai-background-effects-faqs {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    pointer-events: none;
}

/* AI Particles for FAQs */
.ai-particles-faqs {
    position: absolute;
    width: 100%;
    height: 100%;
}

.ai-particle-faq {
    position: absolute;
    width: 3px;
    height: 3px;
    background: radial-gradient(circle, rgba(147, 51, 234, 0.8) 0%, rgba(126, 34, 206, 0.4) 100%);
    border-radius: 50%;
    box-shadow: 0 0 8px rgba(147, 51, 234, 0.6);
    animation: particleFloatFaqs 15s linear infinite;
}

.particle-f-1 { top: 8%; left: 12%; animation-delay: 0s; }
.particle-f-2 { top: 24%; right: 16%; animation-delay: -1.5s; }
.particle-f-3 { top: 38%; left: 18%; animation-delay: -3s; }
.particle-f-4 { top: 56%; right: 24%; animation-delay: -4.5s; }
.particle-f-5 { top: 72%; left: 22%; animation-delay: -6s; }
.particle-f-6 { top: 18%; left: 68%; animation-delay: -7.5s; }
.particle-f-7 { top: 44%; right: 28%; animation-delay: -9s; }
.particle-f-8 { top: 66%; right: 18%; animation-delay: -10.5s; }
.particle-f-9 { top: 32%; left: 76%; animation-delay: -12s; }
.particle-f-10 { top: 82%; right: 32%; animation-delay: -13.5s; }

@keyframes particleFloatFaqs {
    0% {
        transform: translateY(0px) translateX(0px);
        opacity: 0;
    }
    10% {
        opacity: 1;
    }
    90% {
        opacity: 1;
    }
    100% {
        transform: translateY(-90px) translateX(40px);
        opacity: 0;
    }
}

/* AI Circuit Lines for FAQs */
.ai-circuit-lines-faqs {
    position: absolute;
    width: 100%;
    height: 100%;
}

.circuit-line-faq {
    position: absolute;
    background: linear-gradient(90deg, transparent, rgba(147, 51, 234, 0.3), transparent);
    height: 1px;
    animation: circuitFlowFaqs 12s linear infinite;
}

.line-f-1 {
    top: 14%;
    left: 0;
    width: 38%;
    animation-delay: 0s;
}

.line-f-2 {
    top: 42%;
    right: 0;
    width: 28%;
    animation-delay: -2.5s;
}

.line-f-3 {
    top: 68%;
    left: 6%;
    width: 46%;
    animation-delay: -5s;
}

.line-f-4 {
    top: 28%;
    right: 22%;
    width: 34%;
    animation-delay: -7.5s;
}

.line-f-5 {
    top: 58%;
    right: 12%;
    width: 42%;
    animation-delay: -10s;
}

@keyframes circuitFlowFaqs {
    0% {
        transform: translateX(-100%);
        opacity: 0;
    }
    50% {
        opacity: 1;
    }
    100% {
        transform: translateX(100%);
        opacity: 0;
    }
}

/* AI Floating Elements for FAQs */
.ai-floating-elements-faqs {
    position: absolute;
    width: 100%;
    height: 100%;
}

.ai-element-faq {
    position: absolute;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: radial-gradient(circle at 30% 30%, 
        rgba(147, 51, 234, 0.4) 0%, 
        rgba(126, 34, 206, 0.3) 30%, 
        rgba(107, 33, 168, 0.2) 60%, 
        rgba(88, 28, 135, 0.1) 100%);
    border: 2px solid rgba(147, 51, 234, 0.3);
    box-shadow: 
        inset 0 0 15px rgba(147, 51, 234, 0.2),
        0 0 25px rgba(147, 51, 234, 0.1);
    animation: elementFloatFaqs 18s ease-in-out infinite;
}

.element-f-1 {
    top: 18%;
    right: 18%;
    animation-delay: 0s;
}

.element-f-2 {
    top: 58%;
    left: 16%;
    animation-delay: -4.5s;
}

.element-f-3 {
    bottom: 22%;
    right: 28%;
    animation-delay: -9s;
}

.element-f-4 {
    top: 36%;
    left: 72%;
    animation-delay: -13.5s;
}

.element-core-faq {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 36%;
    height: 36%;
    transform: translate(-50%, -50%);
    border-radius: 50%;
    background: radial-gradient(circle at center, 
        rgba(255, 255, 255, 0.8) 0%, 
        rgba(147, 51, 234, 0.6) 50%, 
        rgba(126, 34, 206, 0.4) 100%);
    box-shadow: 0 0 6px rgba(147, 51, 234, 0.6);
    animation: corePulseFaqs 4.5s ease-in-out infinite;
}

.element-pulse-faq {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 88%;
    height: 88%;
    transform: translate(-50%, -50%);
    border-radius: 50%;
    border: 1px solid rgba(147, 51, 234, 0.2);
    animation: elementPulseFaqs 5.5s ease-out infinite;
}

@keyframes elementFloatFaqs {
    0%, 100% {
        transform: translateY(0px) translateX(0px) rotate(0deg) scale(1);
        opacity: 0.6;
    }
    25% {
        transform: translateY(-15px) translateX(8px) rotate(90deg) scale(1.04);
        opacity: 0.8;
    }
    50% {
        transform: translateY(-10px) translateX(-10px) rotate(180deg) scale(0.96);
        opacity: 0.5;
    }
    75% {
        transform: translateY(-18px) translateX(6px) rotate(270deg) scale(1.09);
        opacity: 0.7;
    }
}

@keyframes corePulseFaqs {
    0%, 100% {
        transform: translate(-50%, -50%) scale(1);
        opacity: 0.7;
    }
    50% {
        transform: translate(-50%, -50%) scale(1.18);
        opacity: 1;
    }
}

@keyframes elementPulseFaqs {
    0% {
        transform: translate(-50%, -50%) scale(0.8);
        opacity: 1;
    }
    100% {
        transform: translate(-50%, -50%) scale(1.7);
        opacity: 0;
    }
}

/* AI Gradient Overlay for FAQs */
.ai-gradient-overlay-faqs {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 80% 20%, 
        rgba(147, 51, 234, 0.05) 0%, 
        rgba(126, 34, 206, 0.03) 30%, 
        transparent 70%);
    pointer-events: none;
}

/* AI Content Glow for FAQs */
.ai-content-glow-faqs {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border-radius: inherit;
    background: linear-gradient(135deg, 
        rgba(147, 51, 234, 0.05) 0%, 
        rgba(126, 34, 206, 0.03) 50%, 
        transparent 100%);
    pointer-events: none;
    z-index: 1;
}

/* AI Accordion Glow */
.ai-accordion-glow {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border-radius: inherit;
    background: linear-gradient(135deg, 
        rgba(147, 51, 234, 0.06) 0%, 
        rgba(126, 34, 206, 0.03) 50%, 
        transparent 100%);
    pointer-events: none;
    z-index: 1;
}

/* AI Image Glow for FAQs */
.ai-image-glow-faqs {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border-radius: inherit;
    background: linear-gradient(135deg, 
        rgba(147, 51, 234, 0.08) 0%, 
        rgba(126, 34, 206, 0.04) 50%, 
        transparent 100%);
    pointer-events: none;
    z-index: 1;
}

/* Ensure content is above effects for FAQs */
.faq-section .container {
    position: relative;
    z-index: 2;
}

.faq-section .col-xl-6 {
    position: relative;
    z-index: 3;
}

.faq-section .accordion {
    position: relative;
    z-index: 3;
    backdrop-filter: blur(5px);
    background: rgba(255, 255, 255, 0.9);
    border-radius: 15px;
    padding: 25px;
    border: 1px solid rgba(147, 51, 234, 0.1);
    box-shadow: 
        0 10px 30px rgba(0, 0, 0, 0.1),
        0 0 20px rgba(147, 51, 234, 0.1);
}

.faq-section .accordion-item {
    backdrop-filter: blur(5px);
    background: rgba(255, 255, 255, 0.95);
    border: 1px solid rgba(147, 51, 234, 0.1);
    border-radius: 10px;
    margin-bottom: 15px;
    box-shadow: 
        0 5px 15px rgba(0, 0, 0, 0.1),
        0 0 10px rgba(147, 51, 234, 0.1);
    transition: all 0.3s ease;
}

.faq-section .accordion-item:hover {
    transform: translateY(-2px);
    box-shadow: 
        0 8px 25px rgba(0, 0, 0, 0.15),
        0 0 15px rgba(147, 51, 234, 0.2);
    border-color: rgba(147, 51, 234, 0.2);
}

.faq-section .accordion-button {
    background: rgba(255, 255, 255, 0.9);
    border: none;
    border-radius: 10px;
    font-weight: 600;
    color: #333;
    transition: all 0.3s ease;
}

.faq-section .accordion-button:hover {
    background: rgba(147, 51, 234, 0.05);
    color: #7c3aed;
}

.faq-section .accordion-button:not(.collapsed) {
    background: rgba(147, 51, 234, 0.1);
    color: #7c3aed;
    box-shadow: none;
}

.faq-section .accordion-body {
    background: rgba(255, 255, 255, 0.95);
    border-top: 1px solid rgba(147, 51, 234, 0.1);
    border-radius: 0 0 10px 10px;
}

.faq-section img {
    border-radius: 15px;
    box-shadow: 
        0 10px 30px rgba(0, 0, 0, 0.1),
        0 0 20px rgba(147, 51, 234, 0.1);
    transition: all 0.3s ease;
}

.faq-section img:hover {
    transform: scale(1.02);
    box-shadow: 
        0 15px 40px rgba(0, 0, 0, 0.15),
        0 0 25px rgba(147, 51, 234, 0.2);
}




/* Sticky Navbar */
.navbar.sticky-top {
    background: rgba(255, 255, 255, 0.95) !important;
    backdrop-filter: blur(10px) !important;
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1) !important;
}
@media (min-width: 992px) {
    .navbar-expand-lg .navbar-collapse {
        margin-left: 100px !important;
    }
}

/* Focus States */




:root {
    --sparxmatrix-primary: #007bff;
    --sparxmatrix-secondary: #0056b3;
    --sparxmatrix-text: #333;
    --sparxmatrix-text-light: #555;
    --sparxmatrix-bg: #fff;
    --sparxmatrix-shadow: rgba(0, 0, 0, 0.15);
}





/* Counter-up specific styles */
[data-toggle="counter-up"] {
    display: inline-block;
    min-width: 60px;
    text-align: center;
    transition: all 0.3s ease;
}

.counter-initialized {
    animation: counterPulse 0.5s ease-in-out;
}

@keyframes counterPulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.1); }
    100% { transform: scale(1); }
}

.who-we-are .who-we-are-stats .counter-item .counter-counting span:first-child {
    display: inline-block;
    min-width: 60px;
    text-align: center;
}
/*** Navbar Start ***/
.nav-bar {
    background: var(--bs-white);
    transition: 1s;
}

/*** Navbar End ***/
.footer-separator {
    position: relative;
    height: 20px;
    overflow: hidden;
    background-image: url("data:image/svg+xml,%3Csvg width='120' height='60' viewBox='0 0 120 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M0 30 C30 0, 90 60, 120 30 V60 H0 Z' fill='%232c3e50'/%3E%3C/svg%3E");

    width: 100%;
  }
  
  .footer-separator svg {
    position: absolute;
    bottom: 0;
    width: 100%;
    height: 100%;
  }
  
  .footer-separator .shape-fill {
    fill: #2c3e50; /* Deep dark blue-gray tone (footer background color) */
  }

/* Contact Us Button Styles */
.contact-us-btn {
    position: relative;
    padding: 10px 20px;
    font-weight: 600;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    border-radius: 25px;
    border: 2px solid #007bff;
    background: linear-gradient(135deg, #002022 0%, #03363a 50%, #063e42 100%);
    color: white !important;
    transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    box-shadow: 0 4px 15px rgba(0, 123, 255, 0.3);
    overflow: hidden;
}

.contact-us-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s ease;
}

.contact-us-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 123, 255, 0.4);
    background: linear-gradient(135deg, #02251f, #02251f);
    border-color: #0056b3;
    color: white !important;
}

.contact-us-btn:hover::before {
    left: 100%;
}

.contact-us-btn:active {
    transform: translateY(0);
    box-shadow: 0 4px 15px rgba(0, 123, 255, 0.3);
}

.contact-us-btn i {
    transition: transform 0.3s ease;
}

.contact-us-btn:hover i {
    transform: scale(1.1);
}

/* Mobile responsive adjustments */
@media (max-width: 991px) {
    .contact-us-btn {
        margin-top: 15px;
        margin-bottom: 15px;
        width: 100%;
        text-align: center;
        padding: 12px 20px;
        font-size: 16px;
    }
    
    .navbar-nav.ms-auto {
        width: 100%;
        text-align: center;
    }
}

@media (max-width: 576px) {
    .contact-us-btn {
        padding: 10px 16px;
        font-size: 14px;
    }
}

/* Focus states for accessibility */
.contact-us-btn:focus {
    outline: none;
    box-shadow: 0 0 0 3px rgba(0, 123, 255, 0.25);
}

/* Animation for button entrance */
@keyframes contactBtnEntrance {
    0% {
        opacity: 0;
        transform: translateY(-10px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

.contact-us-btn {
    animation: contactBtnEntrance 0.6s ease-out;
}

/* Sticky navbar adjustments */
.navbar.sticky-top .contact-us-btn {
    padding: 8px 18px;
    font-size: 13px;
}

/* Dark mode support */
@media (prefers-color-scheme: dark) {
    .contact-us-btn {
        background: linear-gradient(135deg, #0056b3, #004085);
        border-color: #0056b3;
    }
    
    .contact-us-btn:hover {
        background: linear-gradient(135deg, #004085, #002752);
        border-color: #004085;
    }
}

/* Contact Form 7 Styles */
/* Professional and Modern Design */

/* Form Container */
.wpcf7-form {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.95), rgba(255, 255, 255, 0.9));
    backdrop-filter: blur(10px);
    border-radius: 20px;
    padding: 40px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    position: relative;
    overflow: hidden;
}

.wpcf7-form::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #135552, #074f2e, #135552);
    border-radius: 20px 20px 0 0;
}

/* Form Fields */
.wpcf7-form input[type="text"],
.wpcf7-form input[type="email"],
.wpcf7-form input[type="tel"],
.wpcf7-form input[type="url"],
.wpcf7-form textarea,
.wpcf7-form select {
    width: 100%;
    padding: 15px 20px;
    border: 2px solid #e9ecef;
    border-radius: 12px;
    font-size: 16px;
    font-weight: 400;
    color: #333;
    background: rgba(255, 255, 255, 0.9);
    transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.wpcf7-form input[type="text"]:focus,
.wpcf7-form input[type="email"]:focus,
.wpcf7-form input[type="tel"]:focus,
.wpcf7-form input[type="url"]:focus,
.wpcf7-form textarea:focus,
.wpcf7-form select:focus {
    outline: none;
    border-color: #135552;
    box-shadow: 0 0 0 3px rgba(19, 85, 82, 0.1);
    background: rgba(255, 255, 255, 1);
    transform: translateY(-2px);
}

/* Textarea specific styling */
.wpcf7-form textarea {
    min-height: 120px;
    resize: vertical;
    font-family: inherit;
    line-height: 1.6;
}

/* Labels */
.wpcf7-form label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: #333;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Submit Button */
.wpcf7-form input[type="submit"] {
    background: linear-gradient(135deg, #135552, #074f2e);
    color: white;
    border: none;
    padding: 15px 30px;
    border-radius: 25px;
    font-size: 16px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    box-shadow: 0 8px 25px rgba(19, 85, 82, 0.3);
    position: relative;
    overflow: hidden;
    width: 100%;
    margin-top: 20px;
}

.wpcf7-form input[type="submit"]::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s ease;
}

.wpcf7-form input[type="submit"]:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(19, 85, 82, 0.4);
    background: linear-gradient(135deg, #074f2e, #053d23);
}

.wpcf7-form input[type="submit"]:hover::before {
    left: 100%;
}

.wpcf7-form input[type="submit"]:active {
    transform: translateY(-1px);
}

/* Form Grid Layout */
.wpcf7-form .form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-bottom: 20px;
}

.wpcf7-form .form-row .form-group {
    margin-bottom: 0;
}

/* Full width fields */
.wpcf7-form .form-group.full-width {
    grid-column: 1 / -1;
}

/* Checkbox and Radio Styles */
.wpcf7-form input[type="checkbox"],
.wpcf7-form input[type="radio"] {
    width: 20px;
    height: 20px;
    margin-right: 10px;
    accent-color: #135552;
}

.wpcf7-form .checkbox-group,
.wpcf7-form .radio-group {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
}

/* File Upload */
.wpcf7-form input[type="file"] {
    padding: 10px;
    border: 2px dashed #135552;
    border-radius: 12px;
    background: rgba(19, 85, 82, 0.05);
    cursor: pointer;
    transition: all 0.3s ease;
}

.wpcf7-form input[type="file"]:hover {
    background: rgba(19, 85, 82, 0.1);
    border-color: #074f2e;
}

/* Success and Error Messages */
.wpcf7-response-output {
    margin: 20px 0;
    padding: 15px 20px;
    border-radius: 12px;
    font-weight: 500;
    border: none;
}

.wpcf7-mail-sent-ok {
    background: linear-gradient(135deg, #d4edda, #c3e6cb);
    color: #155724;
    border-left: 4px solid #28a745;
}

.wpcf7-validation-errors {
    background: linear-gradient(135deg, #f8d7da, #f5c6cb);
    color: #721c24;
    border-left: 4px solid #dc3545;
}

.wpcf7-spam-blocked {
    background: linear-gradient(135deg, #fff3cd, #ffeaa7);
    color: #856404;
    border-left: 4px solid #ffc107;
}

/* Individual field validation */
.wpcf7-not-valid-tip {
    color: #dc3545;
    font-size: 12px;
    margin-top: 5px;
    font-weight: 500;
}

.wpcf7-not-valid {
    border-color: #dc3545 !important;
    box-shadow: 0 0 0 3px rgba(220, 53, 69, 0.1) !important;
}

/* Loading State */
.wpcf7-form .wpcf7-spinner {
    display: inline-block;
    width: 20px;
    height: 20px;
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    border-top-color: white;
    animation: spin 1s ease-in-out infinite;
    margin-left: 10px;
}

@keyframes spin {
    to { transform: rotate(360deg); }
}

/* Form Groups */
.wpcf7-form .form-group {
    margin-bottom: 25px;
    position: relative;
}

/* Floating Labels (Optional Enhancement) */
.wpcf7-form .floating-label {
    position: relative;
}

.wpcf7-form .floating-label input,
.wpcf7-form .floating-label textarea {
    padding-top: 20px;
    padding-bottom: 10px;
}

.wpcf7-form .floating-label label {
    position: absolute;
    top: 15px;
    left: 20px;
    transition: all 0.3s ease;
    pointer-events: none;
    color: #666;
}

.wpcf7-form .floating-label input:focus + label,
.wpcf7-form .floating-label input:not(:placeholder-shown) + label,
.wpcf7-form .floating-label textarea:focus + label,
.wpcf7-form .floating-label textarea:not(:placeholder-shown) + label {
    top: 5px;
    font-size: 12px;
    color: #135552;
    font-weight: 600;
}

/* Responsive Design */
@media (max-width: 768px) {
    .wpcf7-form {
        padding: 30px 20px;
        margin: 20px 0;
    }
    
    .wpcf7-form .form-row {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .wpcf7-form input[type="text"],
    .wpcf7-form input[type="email"],
    .wpcf7-form input[type="tel"],
    .wpcf7-form input[type="url"],
    .wpcf7-form textarea {
        padding: 12px 15px;
        font-size: 16px; /* Prevents zoom on iOS */
    }
    
    .wpcf7-form input[type="submit"] {
        padding: 12px 25px;
        font-size: 14px;
    }
}

@media (max-width: 576px) {
    .wpcf7-form {
        padding: 25px 15px;
        border-radius: 15px;
    }
    
    .wpcf7-form input[type="submit"] {
        padding: 10px 20px;
        font-size: 13px;
    }
}

/* Dark Mode Support */
@media (prefers-color-scheme: dark) {
    .wpcf7-form {
        background: linear-gradient(135deg, rgba(30, 30, 30, 0.95), rgba(40, 40, 40, 0.9));
        border-color: rgba(255, 255, 255, 0.1);
    }
    
    .wpcf7-form input[type="text"],
    .wpcf7-form input[type="email"],
    .wpcf7-form input[type="tel"],
    .wpcf7-form input[type="url"],
    .wpcf7-form textarea,
    .wpcf7-form select {
        background: rgba(255, 255, 255, 0.1);
        border-color: rgba(255, 255, 255, 0.2);
        color: #fff;
    }
    
    .wpcf7-form input[type="text"]:focus,
    .wpcf7-form input[type="email"]:focus,
    .wpcf7-form input[type="tel"]:focus,
    .wpcf7-form input[type="url"]:focus,
    .wpcf7-form textarea:focus,
    .wpcf7-form select:focus {
        background: rgba(255, 255, 255, 0.15);
        border-color: #135552;
    }
    
    .wpcf7-form label {
        color: #fff;
    }
}

/* Animation for form entrance */
@keyframes formEntrance {
    0% {
        opacity: 0;
        transform: translateY(30px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

.wpcf7-form {
    animation: formEntrance 0.8s ease-out;
}

/* Custom styling for specific form elements */
.wpcf7-form .contact-info {
    background: linear-gradient(135deg, rgba(19, 85, 82, 0.05), rgba(7, 79, 46, 0.05));
    padding: 20px;
    border-radius: 12px;
    margin-bottom: 30px;
    border-left: 4px solid #135552;
}

.wpcf7-form .contact-info h4 {
    color: #135552;
    margin-bottom: 15px;
    font-weight: 600;
}

.wpcf7-form .contact-info p {
    margin-bottom: 10px;
    color: #666;
}

.wpcf7-form .contact-info i {
    color: #135552;
    margin-right: 10px;
    width: 20px;
}

/* Portfolio Page Content Styles */
.portfolio-page-content {
    position: relative;
    padding: 4rem 0 0 4rem;
   
    overflow: hidden;
}

/* Who We Are Section Enhancements */
.who-we-are .row {
    align-items: stretch;
}

.who-we-are .col-lg-6 {
    display: flex;
    flex-direction: column;
}

.who-we-are-image {
    height: 100%;
    display: flex;
    flex-direction: column;
}

.who-we-are-additional-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

/* Technology Stack Styling */
.tech-stack-section .tech-item {
    transition: all 0.3s ease;
    border: 1px solid rgba(0, 214, 255, 0.1);
    position: relative;
    overflow: hidden;
}

.tech-stack-section .tech-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--bs-primary), #17a2b8);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.tech-stack-section .tech-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    border-color: rgba(0, 214, 255, 0.3);
}

.tech-stack-section .tech-item:hover::before {
    opacity: 1;
}

.tech-stack-section .tech-item i {
    transition: all 0.3s ease;
}

.tech-stack-section .tech-item:hover i {
    transform: scale(1.1);
}

/* Achievements Section Styling */
.achievements-section .achievement-item {
    padding: 1rem;
    border-radius: 10px;
    transition: all 0.3s ease;
    background: rgba(255, 255, 255, 0.8);
    border: 1px solid rgba(0, 214, 255, 0.1);
}

.achievements-section .achievement-item:hover {
    transform: translateX(5px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    background: rgba(255, 255, 255, 0.95);
    border-color: rgba(0, 214, 255, 0.2);
}

.achievement-icon {
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--bs-primary), #17a2b8);
    color: white;
    transition: all 0.3s ease;
}

.achievements-section .achievement-item:hover .achievement-icon {
    transform: scale(1.1);
    box-shadow: 0 5px 15px rgba(0, 20, 3, 0.3);
}

/* CTA Right Section */
.who-we-are-cta-right {
    margin-top: auto;
    padding-top: 2rem;
}

.who-we-are-cta-right .btn {
    font-weight: 600;
    padding: 0.75rem 1.5rem;
    border-radius: 50px;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 0.9rem;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.who-we-are-cta-right .btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s ease;
}

.who-we-are-cta-right .btn:hover::before {
    left: 100%;
}

.who-we-are-cta-right .btn-primary {
    background: linear-gradient(135deg, #002022 0%, #03363a 50%, #063e42 100%);
    color: #ffffff;
    box-shadow: 0 4px 15px rgba(0, 20, 3, 0.3);
}

.who-we-are-cta-right .btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 123, 255, 0.4);
    background: linear-gradient(135deg, #02251f, #02251f);
    border-color: #0056b3;
    color: white !important;
}

.who-we-are-cta-right .btn-outline-primary {
    background: transparent;
    color: var(--bs-primary);
    border: 2px solid var(--bs-primary);
    box-shadow: 0 4px 15px rgba(0, 20, 3, 0.1);
}

.who-we-are-cta-right .btn-outline-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 123, 255, 0.4);
    background: linear-gradient(135deg, #02251f, #02251f);
    border-color: #0056b3;
    color: white !important;
}

/* Responsive adjustments for Who We Are */
@media (max-width: 991px) {
    .who-we-are .row {
        align-items: flex-start;
    }
    
    .who-we-are-image {
        height: auto;
        margin-top: 2rem;
    }
    
    .who-we-are-additional-content {
        margin-top: 2rem;
    }
    
    .tech-stack-section .row {
        margin-bottom: 2rem;
    }
    
    .achievements-section {
        margin-bottom: 2rem;
    }
    
    .who-we-are-cta-right {
        margin-top: 2rem;
    }
}

@media (max-width: 767px) {
    .tech-stack-section .col-6 {
        margin-bottom: 1rem;
    }
    
    .achievement-item {
        margin-bottom: 1rem;
    }
    
    .who-we-are-cta-right .btn {
        display: block;
        width: 100%;
        margin-bottom: 1rem;
    }
    
    .who-we-are-cta-right .btn:last-child {
        margin-bottom: 0;
    }
}

/* Animation for new content */
.tech-stack-section .tech-item {
    animation: techItemEntrance 0.6s ease-out;
    animation-fill-mode: both;
}

.tech-stack-section .tech-item:nth-child(1) { animation-delay: 0.1s; }
.tech-stack-section .tech-item:nth-child(2) { animation-delay: 0.2s; }
.tech-stack-section .tech-item:nth-child(3) { animation-delay: 0.3s; }
.tech-stack-section .tech-item:nth-child(4) { animation-delay: 0.4s; }

@keyframes techItemEntrance {
    from {
        opacity: 0;
        transform: translateY(20px) scale(0.95);
    }
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

.achievements-section .achievement-item {
    animation: achievementEntrance 0.6s ease-out;
    animation-fill-mode: both;
}

.achievements-section .achievement-item:nth-child(1) { animation-delay: 0.5s; }
.achievements-section .achievement-item:nth-child(2) { animation-delay: 0.6s; }
.achievements-section .achievement-item:nth-child(3) { animation-delay: 0.7s; }

@keyframes achievementEntrance {
    from {
        opacity: 0;
        transform: translateX(20px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* Accordion Button Styling */
.accordion-button {
    background-color: #003200 !important;
    color: #ffffff !important;
    border: none !important;
    border-radius: 10px !important;
    padding: 1.25rem 1.5rem !important;
    font-weight: 600 !important;
    font-size: 1.1rem !important;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1) !important;
    position: relative !important;
    overflow: hidden !important;
    box-shadow: 0 4px 15px rgba(0, 50, 0, 0.2) !important;
}

.accordion-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, #003200 0%, #004d00 50%, #003200 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: -1;
}

.accordion-button:hover {
    background-color: #004d00 !important;
    transform: translateY(-2px) !important;
    box-shadow: 0 8px 25px rgba(0, 50, 0, 0.3) !important;
}

.accordion-button:hover::before {
    opacity: 1;
}

.accordion-button:not(.collapsed) {
    background-color: #ffffff !important;
    color: #003200 !important;
    box-shadow: 0 6px 20px rgba(0, 50, 0, 0.15) !important;
    border-bottom-left-radius: 0 !important;
    border-bottom-right-radius: 0 !important;
}

.accordion-button:not(.collapsed)::before {
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 50%, #ffffff 100%);
    opacity: 1;
}

.accordion-button:not(.collapsed):hover {
    background-color: #f8f9fa !important;
    transform: translateY(-1px) !important;
    box-shadow: 0 8px 25px rgba(0, 50, 0, 0.2) !important;
}

/* Accordion Button Focus States */
.accordion-button:focus {
    box-shadow: 0 0 0 0.25rem rgba(0, 50, 0, 0.25) !important;
    border-color: #003200 !important;
}

.accordion-button:not(.collapsed):focus {
    box-shadow: 0 0 0 0.25rem rgba(0, 50, 0, 0.15) !important;
    border-color: #003200 !important;
}

/* Accordion Button Icon Styling */
.accordion-button::after {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23ffffff'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e") !important;
    transition: all 0.3s ease !important;
    filter: brightness(1) !important;
}

.accordion-button:not(.collapsed)::after {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23003200'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e") !important;
    transform: rotate(180deg) !important;
}

/* Accordion Body Styling */
.accordion-body {
    background-color: #ffffff !important;
    border: 1px solid rgba(0, 50, 0, 0.1) !important;
    border-top: none !important;
    border-bottom-left-radius: 10px !important;
    border-bottom-right-radius: 10px !important;
    padding: 1.5rem !important;
    color: #333333 !important;
    line-height: 1.6 !important;
}

/* Accordion Item Styling */
.accordion-item {
    border: none !important;
    margin-bottom: 1rem !important;
    border-radius: 10px !important;
    overflow: hidden !important;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05) !important;
    transition: all 0.3s ease !important;
}

.accordion-item:hover {
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1) !important;
    transform: translateY(-2px) !important;
}

/* Responsive Design for Accordion */
@media (max-width: 768px) {
    .accordion-button {
        padding: 1rem 1.25rem !important;
        font-size: 1rem !important;
    }
    
    .accordion-body {
        padding: 1.25rem !important;
    }
}

@media (max-width: 576px) {
    .accordion-button {
        padding: 0.875rem 1rem !important;
        font-size: 0.95rem !important;
    }
    
    .accordion-body {
        padding: 1rem !important;
    }
}

/* Animation for accordion transitions */
.accordion-collapse {
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1) !important;
}

.accordion-collapse.collapsing {
    transition: height 0.3s cubic-bezier(0.4, 0, 0.2, 1) !important;
}

/* Dark mode support for accordion */
@media (prefers-color-scheme: dark) {
    .accordion-button {
        background-color: #003200 !important;
        color: #ffffff !important;
    }
    
    .accordion-button:not(.collapsed) {
        background-color: #ffffff !important;
        color: #003200 !important;
    }
    
    .accordion-body {
        background-color: #2d2d2d !important;
        color: #ffffff !important;
        border-color: rgba(0, 50, 0, 0.2) !important;
    }
}

/* ===== AI ATTENTIVE CHARACTER EFFECTS ===== */

/* AI Character Container */
.ai-character-container {
    position: relative;
    display: inline-block;
    margin: 20px;
    perspective: 1000px;
}

/* Main AI Character */
.ai-character {
    position: relative;
    width: 120px;
    height: 120px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 48px;
    color: #ffffff;
    cursor: pointer;
    transition: all 0.6s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    box-shadow: 
        0 0 30px rgba(102, 126, 234, 0.4),
        inset 0 0 20px rgba(255, 255, 255, 0.1);
    overflow: hidden;
}

.ai-character::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: conic-gradient(
        from 0deg,
        transparent,
        rgba(255, 255, 255, 0.3),
        transparent,
        rgba(102, 126, 234, 0.5),
        transparent
    );
    animation: aiCharacterRotate 8s linear infinite;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.ai-character::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 80%;
    height: 80%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.2) 0%, transparent 70%);
    border-radius: 50%;
    animation: aiCharacterPulse 2s ease-in-out infinite;
}

/* AI Character Hover Effects */
.ai-character:hover {
    transform: scale(1.1) rotateY(15deg);
    box-shadow: 
        0 0 50px rgba(102, 126, 234, 0.8),
        0 20px 40px rgba(0, 0, 0, 0.3),
        inset 0 0 30px rgba(255, 255, 255, 0.2);
}

.ai-character:hover::before {
    opacity: 1;
}

/* AI Character Animations */
@keyframes aiCharacterRotate {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

@keyframes aiCharacterPulse {
    0%, 100% { 
        transform: translate(-50%, -50%) scale(1);
        opacity: 0.3;
    }
    50% { 
        transform: translate(-50%, -50%) scale(1.2);
        opacity: 0.6;
    }
}

/* AI Character Particles */
.ai-character-particles {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
}

.ai-particle {
    position: absolute;
    width: 4px;
    height: 4px;
    background: linear-gradient(45deg, #667eea, #764ba2);
    border-radius: 50%;
    animation: aiParticleFloat 3s ease-in-out infinite;
    opacity: 0;
}

.ai-character:hover .ai-particle {
    opacity: 1;
}

.particle-1 { top: 20%; left: 20%; animation-delay: 0s; }
.particle-2 { top: 30%; right: 25%; animation-delay: 0.5s; }
.particle-3 { bottom: 35%; left: 15%; animation-delay: 1s; }
.particle-4 { bottom: 25%; right: 20%; animation-delay: 1.5s; }
.particle-5 { top: 50%; left: 50%; animation-delay: 2s; }

@keyframes aiParticleFloat {
    0%, 100% {
        transform: translateY(0px) scale(1);
        opacity: 0;
    }
    25% {
        opacity: 1;
    }
    50% {
        transform: translateY(-20px) scale(1.2);
        opacity: 0.8;
    }
    75% {
        opacity: 0.5;
    }
}

/* AI Character Circuit Lines */
.ai-circuit-lines {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
}

.circuit-line {
    position: absolute;
    height: 2px;
    background: linear-gradient(90deg, transparent, #667eea, transparent);
    animation: aiCircuitFlow 2s ease-in-out infinite;
    opacity: 0;
}

.ai-character:hover .circuit-line {
    opacity: 1;
}

.line-1 {
    top: 25%;
    left: -20%;
    width: 40%;
    animation-delay: 0s;
}

.line-2 {
    top: 75%;
    right: -20%;
    width: 40%;
    animation-delay: 0.5s;
}

.line-3 {
    top: -20%;
    left: 25%;
    width: 2px;
    height: 40%;
    animation-delay: 1s;
}

.line-4 {
    bottom: -20%;
    right: 25%;
    width: 2px;
    height: 40%;
    animation-delay: 1.5s;
}

@keyframes aiCircuitFlow {
    0%, 100% {
        opacity: 0;
        transform: scaleX(0);
    }
    50% {
        opacity: 1;
        transform: scaleX(1);
    }
}

/* AI Character Data Stream */
.ai-data-stream {
    position: absolute;
    top: -30px;
    left: 50%;
    transform: translateX(-50%);
    font-family: 'Courier New', monospace;
    font-size: 12px;
    color: #667eea;
    white-space: nowrap;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.ai-character:hover .ai-data-stream {
    opacity: 1;
    animation: aiDataStream 2s linear infinite;
}

@keyframes aiDataStream {
    0% {
        transform: translateX(-50%) translateY(0px);
        opacity: 0;
    }
    10% {
        opacity: 1;
    }
    90% {
        opacity: 1;
    }
    100% {
        transform: translateX(-50%) translateY(-20px);
        opacity: 0;
    }
}

/* AI Character Glow Effect */
.ai-character-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 150%;
    height: 150%;
    background: radial-gradient(
        circle,
        rgba(102, 126, 234, 0.3) 0%,
        rgba(118, 75, 162, 0.2) 30%,
        transparent 70%
    );
    border-radius: 50%;
    animation: aiCharacterGlow 3s ease-in-out infinite;
    pointer-events: none;
    z-index: -1;
}

@keyframes aiCharacterGlow {
    0%, 100% {
        opacity: 0.3;
        transform: translate(-50%, -50%) scale(1);
    }
    50% {
        opacity: 0.6;
        transform: translate(-50%, -50%) scale(1.1);
    }
}

/* AI Character Text Effect */
.ai-character-text {
    position: relative;
    font-weight: bold;
    z-index: 2;
    text-shadow: 0 0 10px rgba(255, 255, 255, 0.5);
    transition: all 0.3s ease;
}

.ai-character:hover .ai-character-text {
    transform: scale(1.2);
    text-shadow: 0 0 20px rgba(255, 255, 255, 0.8);
}

/* AI Character Matrix Background */
.ai-matrix-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        linear-gradient(90deg, transparent 98%, rgba(102, 126, 234, 0.3) 100%),
        linear-gradient(0deg, transparent 98%, rgba(102, 126, 234, 0.3) 100%);
    background-size: 20px 20px;
    opacity: 0;
    transition: opacity 0.3s ease;
    animation: aiMatrixMove 10s linear infinite;
}

.ai-character:hover .ai-matrix-bg {
    opacity: 0.1;
}

@keyframes aiMatrixMove {
    0% {
        background-position: 0 0;
    }
    100% {
        background-position: 20px 20px;
    }
}

/* AI Character Responsive Design */
@media (max-width: 768px) {
    .ai-character {
        width: 80px;
        height: 80px;
        font-size: 32px;
    }
    
    .ai-character-glow {
        width: 120%;
        height: 120%;
    }
    
    .ai-data-stream {
        font-size: 10px;
        top: -25px;
    }
}

@media (max-width: 576px) {
    .ai-character {
        width: 60px;
        height: 60px;
        font-size: 24px;
    }
    
    .ai-character-glow {
        width: 110%;
        height: 110%;
    }
    
    .ai-data-stream {
        font-size: 8px;
        top: -20px;
    }
}

/* AI Character Loading State */
.ai-character.loading {
    animation: aiCharacterLoading 1.5s ease-in-out infinite;
}

@keyframes aiCharacterLoading {
    0%, 100% {
        transform: scale(1) rotate(0deg);
        opacity: 1;
    }
    50% {
        transform: scale(0.9) rotate(180deg);
        opacity: 0.7;
    }
}

/* AI Character Success State */
.ai-character.success {
    background: linear-gradient(135deg, #4CAF50 0%, #45a049 100%);
    box-shadow: 
        0 0 30px rgba(76, 175, 80, 0.4),
        inset 0 0 20px rgba(255, 255, 255, 0.1);
}

.ai-character.success::after {
    background: radial-gradient(circle, rgba(76, 175, 80, 0.3) 0%, transparent 70%);
}

/* AI Character Error State */
.ai-character.error {
    background: linear-gradient(135deg, #f44336 0%, #d32f2f 100%);
    box-shadow: 
        0 0 30px rgba(244, 67, 54, 0.4),
        inset 0 0 20px rgba(255, 255, 255, 0.1);
}

.ai-character.error::after {
    background: radial-gradient(circle, rgba(244, 67, 54, 0.3) 0%, transparent 70%);
}

/* AI Character Group Effects */
.ai-character-group {
    display: flex;
    gap: 20px;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    margin: 40px 0;
}

.ai-character-group .ai-character {
    animation-delay: calc(var(--char-index, 0) * 0.2s);
}

/* AI Character Interaction Effects */
.ai-character.interactive {
    cursor: pointer;
}

.ai-character.interactive:active {
    transform: scale(0.95);
    transition: transform 0.1s ease;
}

/* AI Character Focus States */
.ai-character:focus {
    outline: 2px solid #667eea;
    outline-offset: 4px;
}

.ai-character:focus-visible {
    outline: 2px solid #667eea;
    outline-offset: 4px;
}

/* AI Character Accessibility */
@media (prefers-reduced-motion: reduce) {
    .ai-character,
    .ai-character::before,
    .ai-character::after,
    .ai-particle,
    .circuit-line,
    .ai-data-stream,
    .ai-character-glow,
    .ai-matrix-bg {
        animation: none;
        transition: none;
    }
}

/* AI Character Dark Mode Support */
@media (prefers-color-scheme: dark) {
    .ai-character {
        box-shadow: 
            0 0 30px rgba(102, 126, 234, 0.6),
            inset 0 0 20px rgba(255, 255, 255, 0.05);
    }
    
    .ai-character:hover {
        box-shadow: 
            0 0 50px rgba(102, 126, 234, 1),
            0 20px 40px rgba(0, 0, 0, 0.5),
            inset 0 0 30px rgba(255, 255, 255, 0.1);
    }
    
    .ai-data-stream {
        color: #8ab4f8;
    }
}
