@import "faq.css";

/* ==============================
   Tech Hero – Technology Page
   ============================== */

.tech-hero {
    min-height: 520px;
    background: linear-gradient(
        135deg,
        #e9f4ff 0%,
        #f6fcff 60%,
        #ffffff 100%
    );
}

/* Text content */
.tech-hero .hero-content {
    padding: 110px 0 40px;
}

/* Heading */
.tech-hero h1 {
    font-size: 42px;
    line-height: 56px;
    font-weight: 800;
    color: #1f2c3a;
}

/* Paragraph */
.tech-hero p {
    font-size: 17px;
    line-height: 30px;
    color: #4a5a6a;
    font-weight: 500;
}

/* Technology logo */
.tech-logo {
    display: flex;
    align-items: center;
    justify-content: center;
}

.tech-logo img {
    max-width: 180px;   /* KEY FIX */
    opacity: 0.95;
}

/* Tags */
.hero-tags {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

.hero-tags span {
    background: #eaf3ff;
    color: #2563eb;
    font-size: 14px;
    font-weight: 600;
    padding: 8px 16px;
    border-radius: 30px;
}

/* Subtle logo animation */
@media (min-width: 992px) {
    .tech-logo img {
        animation: floatHero 6s ease-in-out infinite;
    }
}

@keyframes floatHero {
    0% { transform: translateY(0); }
    50% { transform: translateY(-8px); }
    100% { transform: translateY(0); }
}

/* Mobile */
@media (max-width: 768px) {
    .tech-hero {
        text-align: center;
    }

    .tech-hero h1 {
        font-size: 32px;
        line-height: 44px;
    }
}


/* ==============================
   Utility: Pill / Tag Buttons
   ============================== */

/* Container utility */
.u-pill-group {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

/* Base pill */
.u-pill {
    padding: 10px 18px;
    font-size: 14px;
    font-weight: 600;
    line-height: 1;
    color: #1f2d3d;
    background-color: #ffffff;
    border: 1px solid #dce9f8;
    border-radius: 30px;
    transition: all 0.3s ease;
    cursor: default;
    display: inline-flex;
    align-items: center;
    white-space: nowrap;
}

/* Hover effect */
.u-pill:hover {
    background-color: #4A90E2;
    color: #ffffff;
    border-color: #4A90E2;
}

.u-brand-gradient {
    background: -webkit-linear-gradient(21deg,#005493 0%, #00d0fb 100%);
}

.u-section-title h2 {
    font-weight: 700;
}

.u-section-title h2::after {
    content: '';
    display: block;
    width: 70px;
    height: 4px;
    margin: 12px auto 0;
    border-radius: 10px;
    background: -webkit-linear-gradient(21deg,#005493 0%, #00d0fb 100%);
}

.u-feature-tile {
    position: relative;
    background: #ffffff;
    border-radius: 12px;
    padding: 24px;
    height: 100%;
    box-shadow: 0 6px 18px rgba(0, 84, 147, 0.08);
    overflow: hidden;
}

.u-feature-tile::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    width: 4px;
    height: 100%;
    background: linear-gradient(21deg, #005493 0%, #00d0fb 100%);
}

.u-feature-icon {
    font-size: 26px;
    color: #005493;
    margin-bottom: 10px;
}

.u-usecase-card {
    background: #ffffff;
    border-radius: 16px;
    padding: 30px;
    height: 100%;
    position: relative;
    overflow: hidden;
    box-shadow: 0 12px 30px rgba(0, 84, 147, 0.12);
    transition: all 0.35s ease;
}

.u-usecase-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    height: 5px;
    width: 100%;
    background: -webkit-linear-gradient(21deg,#005493 0%, #00d0fb 100%);
}

.u-usecase-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 22px 45px rgba(0, 208, 251, 0.35);
}

.u-usecase-icon {
    width: 72px;
    height: 72px;
    border-radius: 50%;
    margin: 0 auto 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: -webkit-linear-gradient(21deg,#005493 0%, #00d0fb 100%);
}

.u-usecase-icon i {
    color: #ffffff;
    font-size: 26px;
}

.tech-section-subtitle {
    font-size: 16px;
    color: #64748b;
    margin-top: 10px;
}

/* ===== WIDTH ===== */
.tech-max-w-720 {
    max-width: 720px;
}

/* ===== TECHNOLOGY CARD ===== */
.tech-card {
    background: #ffffff;
    border-radius: 16px;
    padding: 34px 24px;
    border: 1px solid #e6f1ff;
    transition: all 0.35s ease;
    box-shadow: 0 10px 30px rgba(15, 23, 42, 0.06);
}

.tech-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 18px 40px rgba(13, 110, 253, 0.16);
}

/* ===== TECHNOLOGY ICON ===== */
.tech-icon {
    font-size: 38px;
    margin-bottom: 14px;
    color: #0b5ed7;
}

/* ===== TECHNOLOGY CARD TEXT ===== */
.tech-card h5 {
    font-weight: 600;
    margin-bottom: 10px;
    color: #0f172a;
}

.tech-card p {
    color: #64748b;
    font-size: 15px;
    margin-bottom: 0;
}

/* ===== TECHNOLOGY OVERVIEW SECTION ===== */
.tech-overview-section {
    background: linear-gradient(180deg, #f5faff 0%, #ffffff 100%);
}

/* Content text */
.tech-overview-content {
    text-align: justify;
    font-size: 16px;
    line-height: 1.85;
    color: #475569;
}

/* Paragraph spacing */
.tech-overview-content p {
    margin-bottom: 20px;
}

/* Highlighted text (company / key terms) */
.tech-overview-content strong {
    color: #0f172a;
    font-weight: 600;
}


/* ===== TECH ECOSYSTEM SECTION ===== */
.tech-ecosystem {
    background: linear-gradient(180deg, #f5faff 0%, #ffffff 100%);
}

/* Card */
.ecosystem-card {
    background: #ffffff;
    border-radius: 14px;
    padding: 28px 22px;
    height: 100%;
    text-align: center;
    border: 1px solid #e6f1ff;
    transition: all 0.3s ease;
    box-shadow: 0 10px 25px rgba(15, 23, 42, 0.06);
}

.ecosystem-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 18px 40px rgba(13, 110, 253, 0.18);
}

/* Icon */
.eco-icon {
    font-size: 34px;
    display: inline-block;
    margin-bottom: 12px;
}

/* Title */
.ecosystem-card h6 {
    font-weight: 600;
    margin-bottom: 8px;
    color: #0f172a;
}

/* Text */
.ecosystem-card p {
    font-size: 14px;
    color: #64748b;
    margin-bottom: 0;
}


/* ===== RELATED TECHNOLOGIES STRIP ===== */
.related-tech-box {
    background: #f8fbff;
    border: 1px solid #e6f1ff;
    border-radius: 14px;
    padding: 20px 24px;
    max-width: 820px;
    margin-left: auto;
    margin-right: auto;
}

/* Title */
.related-tech-title {
    font-weight: 600;
    color: #0f172a;
    font-size: 16px;
}

/* Links text */
.related-tech-links {
    font-size: 15px;
    color: #475569;
    line-height: 1.7;
}

/* Links */
.related-tech-links a {
    color: #0b5ed7;
    font-weight: 500;
    text-decoration: none;
    margin: 0 4px;
}

.related-tech-links a:hover {
    text-decoration: underline;
}

/* ===== MOBILE VIEW ===== */

@media (max-width: 500px) {

    .tech-hero h1 {
        font-size: 28px;
        line-height: 35px;
    }

}

/* =========================
   Tablets (≤ 992px)
========================= */
@media (max-width: 992px) {

    .u-section-title h2 {
        font-size: 28px;
    }

    .u-section-title h2::after {
        width: 60px;
        height: 3px;
        margin-top: 10px;
    }

    .u-feature-tile {
        padding: 20px;
        box-shadow: 0 4px 14px rgba(0, 84, 147, 0.08);
    }

    .u-feature-icon {
        font-size: 24px;
        margin-bottom: 8px;
    }

    .u-usecase-card {
        padding: 24px;
        box-shadow: 0 10px 26px rgba(0, 84, 147, 0.12);
    }

    .u-usecase-icon {
        width: 64px;
        height: 64px;
        margin-bottom: 12px;
    }

    .u-usecase-icon i {
        font-size: 24px;
    }

    .u-usecase-card h5 {
        font-size: 17px;
        margin-bottom: 6px;
    }

    .u-usecase-card p {
        font-size: 14.5px;
    }

    .tech-card {
        padding: 28px 20px;
        border-radius: 14px;
        box-shadow: 0 8px 24px rgba(15, 23, 42, 0.06);
    }

    .tech-card h5 {
        font-size: 17px;
        margin-bottom: 8px;
    }

    .tech-card p {
        font-size: 14.5px;
        line-height: 1.6;
    }

    .tech-overview-content {
        font-size: 15.5px;
        line-height: 1.75;
    }
}

/* =========================
   Mobile (≤ 768px)
========================= */
@media (max-width: 768px) {

    .u-section-title h2 {
        font-size: 24px;
        line-height: 1.3;
        text-align: center;
    }

    .u-section-title h2::after {
        width: 50px;
        height: 3px;
    }

    .u-feature-tile {
        padding: 18px;
        border-radius: 10px;
    }

    .u-feature-tile::before {
        width: 3px;
    }

    .u-feature-icon {
        font-size: 22px;
    }

    .u-usecase-card {
        padding: 20px;
        border-radius: 14px;
        transform: none;
    }

    .u-usecase-card:hover {
        transform: none;
        box-shadow: 0 14px 32px rgba(0, 208, 251, 0.25);
    }

    .u-usecase-icon {
        width: 56px;
        height: 56px;
    }

    .u-usecase-icon i {
        font-size: 22px;
    }

    .u-usecase-card h5 {
        font-size: 16px;
        line-height: 1.35;
    }

    .u-usecase-card p {
        font-size: 14px;
        line-height: 1.6;
    }

    .tech-card {
        padding: 24px 18px;
        border-radius: 12px;
        box-shadow: 0 6px 18px rgba(15, 23, 42, 0.05);
    }

    .tech-card h5 {
        font-size: 16px;
        line-height: 1.35;
        margin-bottom: 6px;
    }

    .tech-card p {
        font-size: 14px;
        line-height: 1.6;
    }

    .tech-overview-content {
        font-size: 15px;
        line-height: 1.7;
    }
}

/* =========================
   Small Mobile (≤ 480px)
========================= */
@media (max-width: 480px) {

    .u-section-title h2 {
        font-size: 22px;
    }

    .u-feature-tile,
    .u-usecase-card {
        padding: 16px;
    }

    .u-usecase-icon {
        width: 50px;
        height: 50px;
    }

    .u-usecase-icon i {
        font-size: 20px;
    }

    .u-usecase-card h5 {
        font-size: 15px;
    }

    .u-usecase-card p {
        font-size: 13.5px;
    }

    .tech-card {
        padding: 20px 16px;
        border-radius: 10px;
        box-shadow: 0 4px 14px rgba(15, 23, 42, 0.05);
    }

    .tech-card h5 {
        font-size: 15px;
    }

    .tech-card p {
        font-size: 13.5px;
    }

    .tech-overview-content {
        font-size: 14.5px;
        line-height: 1.65;
    }
}

