.hover-scale {
    transition: all 0.2s ease-in-out
}

.hover-scale:hover {
    transform: scale(1.05)
}


.circle-icon {
    display: -webkit-inline-box;
    display: -webkit-inline-flex;
    display: -ms-inline-flexbox;
    display: inline-flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center;
    width: 80px;
    height: 80px;
    border-radius: 50%;
}

.circle-icon-sm { 
    width: 50px;
    height: 50px;
}

.bg-accent-1 {
    background-image: linear-gradient(310deg, #7928ca, #ff0080);
}

[data-bs-theme=dark] .bg-accent-1.text-white {
    color: #fff !important;
}

.bg-gradient-primary {
    background-image: linear-gradient(310deg, #7928ca, #ff0080);
}

.hero-text-start {
    --tw-gradient-to: #7928ca;
    --tw-gradient-from: #ff0080;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to);
    color: transparent;
    -webkit-background-clip: text;
    background-clip: text;
    background-image: linear-gradient(to right, var(--tw-gradient-stops));
}

.multi-line-clamp {
  line-clamp:2;
  -webkit-line-clamp: 2;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
  width: 100%; 
}

.process-step .line {
    position: relative
}

.process-step .line:after {
    background: linear-gradient(90deg,#a6a7a7,#5b5b5b);
    content: "";
    height: 1px;
    left: 68%;
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 100%
}

@media (max-width: 1200px) {
    .process-step .line:after {
        display:none
    }
}

.process-step>div:last-child .line:after {
    display: none
}

/* Temporarily hide the AI 技术 nav item on all pages */
.navbar-nav .nav-link[href="ai-technology.html"] {
    display: none !important;
}

/* Hide the Blog/博客 nav item on all pages */
.navbar-nav .nav-link[href$="blogs.html"] {
    display: none !important;
}

/* Remove the News/新闻资讯 nav item on all pages */
.navbar-nav .nav-link[href$="news.html"],
.navbar-nav .nav-link[href$="/news.html"] {
    display: none !important;
}

/* Also hide footer News links (if present) */
footer a[href$="news.html"],
footer a[href$="/news.html"] {
    display: none !important;
}

/* Temporarily hide footer social icons */
footer .btn-instagram,
footer .btn-facebook {
    display: none !important;
}

/* =========================
   UA TU AI readability tweaks
   ========================= */

/* Lighten the background of the "Multi-agent / User-centric GEO platform" module (light sections only) */
.geo-platform-section:not(.bg-dark) {
    background: linear-gradient(
        180deg,
        rgba(30, 136, 229, 0.10) 0%,
        rgba(30, 136, 229, 0.04) 35%,
        rgba(255, 255, 255, 1) 100%
    );
}

/* Keep dark-mode behavior unchanged */
[data-bs-theme="dark"] .geo-platform-section {
    background: transparent;
}

/* Darken the "lead" paragraph color on light backgrounds (text-white utilities still win via !important) */
.lead {
    color: rgba(15, 23, 42, 0.78);
}

/* Darken "lead + text-secondary" combos (used on hero copy) */
.lead.text-secondary {
    color: rgba(15, 23, 42, 0.72) !important;
}