.support-center-section-intro {
    padding: 50px 20px 20px 20px;
    border-radius: 20px;
    margin-bottom: 60px;
    max-width: 1300px;
    margin: auto;
}


.support-center-intro-content h2 {
    font-size: 2.8em;
    color: #62d6e5;
    margin-bottom: 20px;
}

.support-center-intro-content p {
    font-size: 1.2em;
    color: white;

}

.support-center-section {
    padding: 20px;
    border-radius: 16px;
    padding: 20px 20px 50px 20px;
    max-width: 1300px;
    margin: auto;

}

.support-center-grid {
    display: flex;
    flex-wrap: wrap;
}

.support-center-text {
    flex: 1 1 50%;
}

.support-center-text ul li i {
    color: #00f0ff;
    margin-right: 10px;
    font-size: 18px;
}

.support-center-text h2 {
    color: #62d6e5;
    font-size: 40px;
    margin-bottom: 20px;
    font-weight: 700;
}

.support-center-text ul {
    padding-left: 20px;
    font-size: 1.1em;
    color: white;
    line-height: 1.6;
}

.support-center-text ul li {
    list-style: none
}

.support-center-image {
    flex: 1 1 40%;
    text-align: center;
}

.support-center-image img {
    width: 400px;
    border-radius: 16px;
}

/* Base styling adjustments for smaller screens */
@media (max-width: 1024px) {
    .support-center-grid {
        flex-direction: column;
        align-items: center;
    }

    .support-center-text,
    .support-center-image {
        flex: 1 1 100%;
        max-width: 100%;
    }

    .support-center-text {
        text-align: center;
    }

    .support-center-text h2 {
        font-size: 2.4em;
    }

    .support-center-text p {
        font-size: 1.1em;
    }

    .support-center-image img {
        width: 80%;
        max-width: 350px;
    }
}

@media (max-width: 768px) {
    .support-center-section-intro {
        padding: 30px 15px 15px 15px;
    }

    .support-center-section {
        padding: 15px 15px 30px 15px;
    }

    .support-center-text h2 {
        font-size: 2em;
    }

    .support-center-text p {
        font-size: 1em;
    }

    .support-center-image img {
        width: 90%;
        max-width: 300px;
    }
}

@media (max-width: 480px) {
    .support-center-section-intro {
        padding: 20px 10px 10px 10px;
    }

    .support-center-section {
        padding: 10px 10px 20px 10px;
    }

    .support-center-text h2 {
        font-size: 1.5em;
    }

    .support-center-text p {
        font-size: 0.95em;
    }

    .support-center-image img {
        width: 100%;
        max-width: 250px;
    }
}

.support-center-image-desktop {
    display: block;
}

.support-center-image-mobile {
    display: none;
}

@media (max-width: 480px) {
    .support-center-image-desktop {
        display: none;
    }

    .support-center-image-mobile {
        display: block;
    }
}

.product-key-key-features {
    display: flex;
    justify-content: center;
    align-items: stretch;
    gap: 50px;
    padding: 60px 20px;
    text-align: center;
}

.product-key-key-features {
    display: flex;
    justify-content: center;
    align-items: stretch;
    gap: 40px;
    padding: 60px 20px;
    text-align: center;
    flex-wrap: wrap;
}

.product-key-feature {
    flex: 1 1 300px;
    /* Flexible basis */
    min-width: 260px;
    max-width: 340px;
    padding: 20px;
    border-radius: 15px;
    transition: transform 0.4s ease, box-shadow 0.4s ease;
    color: #fff;
    cursor: pointer;
    animation: fadeUp 1.2s ease forwards;
    opacity: 0;
}
@media only screen and (max-width:768px) {
    .product-key-feature{
        flex: 1 1 200px;
    }
}

.product-key-feature:nth-child(1) {
    animation-delay: 0.2s;
}

.product-key-feature:nth-child(2) {
    animation-delay: 0.4s;
}

.product-key-feature:nth-child(3) {
    animation-delay: 0.6s;
}

.product-key-feature:hover {
    transform: translateY(-12px) scale(1.05);
    box-shadow: 0px 10px 30px rgba(0, 216, 255, 0.4);
}

.product-key-icon img {
    width: clamp(50px, 6vw, 65px);
    margin-bottom: 15px;
    filter: drop-shadow(0px 0px 8px rgba(0, 216, 255, 0.8));
    transition: transform 0.4s ease;
}

.product-key-feature:hover .product-key-icon img {
    transform: rotate(10deg) scale(1.1);
}

.product-key-feature h3 {
    font-size: clamp(16px, 2vw, 20px);
    font-weight: bold;
    margin-bottom: 10px;
}

.product-key-feature p {
    font-size: clamp(13px, 1.5vw, 15px);
    line-height: 1.6;
    color: #cfd6df;
}

/* Fade-in Animation */
@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ================= RESPONSIVE ================= */
@media (max-width: 992px) {
    .product-key-key-features {
        gap: 30px;
        padding: 50px 15px;
    }
}

@media (max-width: 768px) {
    .product-key-key-features {
        flex-direction: column;
        align-items: center;
    }

    .product-key-feature {
        max-width: 95%;
    }
}

@media (max-width: 480px) {
    .product-key-feature {
        padding: 15px;
    }

    .product-key-icon img {
        width: 45px;
    }
}


.core-feature-section {
    padding: 80px 20px;
    display: flex;
    justify-content: center;
}

.core-feature-container {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    max-width: 1300px;
    width: 100%;
    gap: 60px;
    flex-wrap: wrap;
}

.core-feature-left {
    flex: 1;
    min-width: 320px;
    color: #fff;
}

.core-feature-step {
    color: #00d9ff;
    font-size: 14px;
    letter-spacing: 1px;
    margin-bottom: 15px;
}

.core-feature-title {
    font-size: 40px;
    font-weight: 700;
    margin-bottom: 25px;
    line-height: 1.2;
}

/* Accordion */
.core-feature-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.core-feature-item {

    border-radius: 10px;
    overflow: hidden;
    border: 1px solid #1fa3c14c;
    transition: all 0.3s ease;
}

.core-feature-header {
    width: 100%;
    background: none;
    border: none;
    color: #fff;
    font-size: 18px;
    font-weight: 600;
    padding: 15px 20px;
    text-align: left;
    cursor: pointer;
    outline: none;
    transition: background 0.3s;
}

.core-feature-header:hover {
    background: #1a2538;
}

.core-feature-content {
    max-height: 0;
    overflow: hidden;
    background: #0b1422;
    padding: 0 20px;
    transition: max-height 0.4s ease, padding 0.3s ease;
    color: #aaa;
    font-size: 16px;
    line-height: 1.5;
}

.core-feature-item.active .core-feature-content {
    max-height: 200px;
    padding: 15px 20px;
}

/* Right Image */
.core-feature-right {
    flex: 1;
    min-width: 320px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.core-feature-image {
    max-width: 100%;
    border-radius: 15px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.6);
    transition: transform 0.4s ease;
}

.core-feature-image:hover {
    transform: scale(1.05);
}

/* Responsive */
@media (max-width: 992px) {
    .core-feature-container {
        flex-direction: column;
        text-align: center;
    }

    .core-feature-right {
        margin-top: 40px;
    }
}

.tech-points-section {
    color: #fff;
    padding: 80px 20px;
    display: flex;
    justify-content: center;
    text-align: left;
}

.tech-points-container {
    max-width: 1300px;
    width: 100%;
}

.tech-points-title {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 30px;
    color: #3bd0ff;
}

.tech-points-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.tech-point {
    font-size: 18px;
    margin: 15px 0;
    position: relative;
    padding-left: 25px;
    opacity: 0;
    transform: translateX(-20px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

/* custom bullet */
.tech-point::before {
    content: "•";
    position: absolute;
    left: 0;
    color: #3bd0ff;
    font-size: 22px;
    line-height: 1;
}

/* animation visible */
.tech-point.visible {
    opacity: 1;
    transform: translateX(0);
}

/* responsive */
@media (max-width: 768px) {
    .tech-points-title {
        font-size: 28px;
    }

    .tech-point {
        font-size: 16px;
    }
}

.qe-problem-section {

    color: #fff;
    padding: 80px 20px;
    display: flex;
    justify-content: center;
}

.qe-problem-container {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    max-width: 1300px;
    width: 100%;
    gap: 60px;
    flex-wrap: wrap;
}

.qe-problem-left {
    flex: 1;
    min-width: 320px;
}

.qe-problem-title {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 25px;
    color: #00e1ff;
}

.qe-problem-list {
    list-style: none;
    padding: 0;
    margin: 0 0 20px 0;
}

.qe-problem-item {
    margin-bottom: 15px;
    font-size: 18px;
    line-height: 1.6;
    position: relative;
    padding-left: 25px;
    opacity: 0;
    transform: translateX(-20px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.qe-problem-item::before {
    content: "•";
    position: absolute;
    left: 0;
    color: #00e1ff;
    font-size: 30px;
    line-height: 1;
}

.qe-problem-item.visible {
    opacity: 1;
    transform: translateX(0);
}

.qe-problem-note {
    font-size: 16px;
    color: #fff;
    margin-top: 15px;
}

/* Right Image */
.qe-problem-right {
    flex: 1;
    min-width: 320px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.qe-problem-image {
    max-width: 100%;
    border-radius: 15px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.6);
    opacity: 0;
    transform: scale(0.9);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.qe-problem-image.visible {
    opacity: 1;
    transform: scale(1);
}

/* Responsive */
@media (max-width: 992px) {
    .qe-problem-container {
        flex-direction: column;
        text-align: center;
    }

    .qe-problem-right {
        margin-top: 40px;
    }

    .qe-problem-item {
        text-align: left;
    }
}

.svc-section {
    padding: 80px 20px;
    max-width: 1300px;
    margin: auto;

}

.svc-subtitle {
    color: #00d9ff;
    text-transform: uppercase;
    font-weight: bold;
    letter-spacing: 1px;
}

.svc-title {
    font-size: 40px;
    font-weight: 700;
    margin: 20px 0;
    line-height: 1.4;

}

/* Cards */
.svc-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(330px, 1fr));
    gap: 10px;
    margin-top: 30px;
}

.svc-card {
    background: transparent;
    border-radius: 20px;
    padding: 30px 25px;
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
    z-index: 1;
    border: 1px solid transparent;
    text-align: left;
}

.svc-card h3 {
    margin-top: 15px;
    color: #00d9ff;
    font-size: 1.3rem;
}

.svc-card:hover {
    box-shadow: 0 0 10px #61dafb;
}

.svc-card p {
    color: #bbb;
    font-size: 0.95rem;
    line-height: 1.6;
}

/* Glow effect follow */
.svc-card::before {
    content: "";
    position: absolute;
    width: 250px;
    height: 250px;
    pointer-events: none;
    border-radius: 50%;
    background: radial-gradient(circle, #5e29ff55, transparent 60%);
    transform: translate(-50%, -50%);
    left: var(--x);
    top: var(--y);
    opacity: 0;
    transition: opacity 0.2s;
    z-index: 0;
}

.svc-card:hover::before {
    opacity: 1;
}

.svc-icon img {
    height: 60px;
    width: 60px;
    object-fit: contain;
}

/* Scroll animation */
[data-animate] {
    opacity: 0;
    transform: translateY(40px);
    transition: all 0.6s ease-out;
}

[data-animate].active {
    opacity: 1;
    transform: translateY(0);
}

/* Responsive */
@media (max-width: 768px) {
    .svc-title {
        font-size: 1.8rem;
    }


    .svc-card {
        text-align: center;
    }

    .svc-icon img {
        margin: auto;
    }
}

.service-section {
    color: #f1f1f1;
    padding: 80px 20px;
}