/* =========================
   INNOVATIVE TECH SECTION
========================= */
.innovative-tech {
    position: relative;
    background:linear-gradient(180deg, #000 0%, #0a0a0a 50%, #000 100%);
}

/* =========================
   TECH HEADER
========================= */
.tech-header {
    text-align: center;
    margin-bottom: 80px;
    position: relative;
    z-index: 1;
}

.tech-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: linear-gradient(135deg, rgba(234, 179, 8, 0.15) 0%, rgba(234, 179, 8, 0.05) 100%);
    border: 1px solid rgba(234, 179, 8, 0.4);
    padding: 12px 28px;
    border-radius: 50px;
    font-size: 13px;
    font-weight: 600;
    color: #eab308;
    margin-bottom: 30px;
    text-transform: uppercase;
    letter-spacing: 2px;
    backdrop-filter: blur(10px);
}

.tech-badge-icon {
    display: flex;
    animation: techSpin 4s linear infinite;
}

@keyframes techSpin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.tech-main-title {
    font-size: clamp(32px, 5vw, 54px);
    font-weight: 800;
    line-height: 1.15;
    margin-bottom: 20px;
    color: #fff;
    letter-spacing: -1px;
}

.tech-highlight {
    background: linear-gradient(135deg, #eab308 0%, #fbbf24 30%, #f59e0b 60%, #eab308 100%);
    background-size: 200% auto;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: techShine 3s linear infinite;
}

@keyframes techShine {
    0% { background-position: 0% center; }
    100% { background-position: 200% center; }
}

.tech-subtitle {
    font-size: clamp(18px, 2.5vw, 24px);
    color: #9ca3af;
    margin-bottom: 40px;
    font-weight: 400;
}

.tech-intro-content {
    max-width: 1000px;
    margin: 0 auto;
}

.tech-intro-text {
    margin-bottom: 40px;
}

.tech-intro-text p {
    font-size: 16px;
    color: #d1d5db;
    line-height: 1.9;
    margin-bottom: 16px;
}

.tech-intro-text p:last-child {
    margin-bottom: 0;
}

.tech-intro-text strong {
    color: #eab308;
    font-weight: 600;
}

/* Tech Stats */
.tech-intro-stats {
    display: flex;
    justify-content: center;
    gap: 60px;
    padding: 30px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.tech-stat-item {
    text-align: center;
}

.tech-stat-number {
    display: block;
    font-size: 42px;
    font-weight: 800;
    background: linear-gradient(135deg, #eab308, #fbbf24);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1;
    margin-bottom: 8px;
}

.tech-stat-label {
    font-size: 14px;
    color: #9ca3af;
    font-weight: 500;
}

/* =========================
   TECH SOLUTIONS GRID
========================= */
.tech-solutions-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    position: relative;
    z-index: 1;
}

/* =========================
   TECH SOLUTION CARD
========================= */
.tech-solution-card {
    position: relative;
    background: linear-gradient(160deg, rgba(255, 255, 255, 0.06) 0%, rgba(255, 255, 255, 0.02) 100%);
    border-radius: 28px;
    padding: 40px;
    transition: all 0.5s cubic-bezier(0.23, 1, 0.32, 1);
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

.tech-card-border {
    position: absolute;
    inset: 0;
    border-radius: 28px;
    padding: 1px;
    background: linear-gradient(160deg, rgba(255, 255, 255, 0.1) 0%, rgba(255, 255, 255, 0.02) 50%, rgba(234, 179, 8, 0.1) 100%);
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    pointer-events: none;
    transition: all 0.5s ease;
}

.tech-solution-card:hover {
    transform: translateY(-12px);
    box-shadow: 
        0 30px 60px -15px rgba(0, 0, 0, 0.8),
        0 0 80px rgba(234, 179, 8, 0.08);
}

.tech-solution-card:hover .tech-card-border {
    background: linear-gradient(160deg, rgba(234, 179, 8, 0.5) 0%, rgba(234, 179, 8, 0.1) 50%, rgba(234, 179, 8, 0.3) 100%);
}

/* Card Glow */
.tech-card-glow {
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle at center, rgba(234, 179, 8, 0.1) 0%, transparent 40%);
    opacity: 0;
    transition: opacity 0.5s ease;
    pointer-events: none;
}

.tech-solution-card:hover .tech-card-glow {
    opacity: 1;
}

/* Card Top */
.tech-card-top {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 30px;
}

.tech-card-icon-wrap {
    position: relative;
}

.tech-card-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(145deg, rgba(234, 179, 8, 0.12) 0%, rgba(234, 179, 8, 0.04) 100%);
    border: 1px solid rgba(234, 179, 8, 0.25);
    border-radius: 22px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #eab308;
    transition: all 0.5s cubic-bezier(0.23, 1, 0.32, 1);
    position: relative;
    z-index: 2;
}

.tech-card-icon-ring {
    position: absolute;
    inset: -6px;
    border: 2px dashed rgba(234, 179, 8, 0.2);
    border-radius: 28px;
    animation: techRingSpin 20s linear infinite;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.tech-solution-card:hover .tech-card-icon-ring {
    opacity: 1;
}

@keyframes techRingSpin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.tech-solution-card:hover .tech-card-icon {
    background: linear-gradient(145deg, #eab308 0%, #ca8a04 100%);
    color: #000;
    transform: scale(1.1) rotate(8deg);
    box-shadow: 
        0 20px 40px rgba(234, 179, 8, 0.35),
        0 0 30px rgba(234, 179, 8, 0.2);
    border-color: #eab308;
}

.tech-card-meta {
    text-align: right;
}

.tech-card-number {
    display: block;
    font-size: 52px;
    font-weight: 900;
    color: rgba(255, 255, 255, 0.04);
    line-height: 1;
    transition: color 0.3s ease;
    margin-bottom: 5px;
}

.tech-solution-card:hover .tech-card-number {
    color: rgba(234, 179, 8, 0.12);
}

.tech-card-tag {
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: #eab308;
    background: rgba(234, 179, 8, 0.1);
    padding: 6px 14px;
    border-radius: 20px;
    border: 1px solid rgba(234, 179, 8, 0.2);
}

/* Card Body */
.tech-card-body {
    flex: 1;
}

.tech-card-title {
    font-size: 24px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 16px;
    line-height: 1.3;
    transition: color 0.3s ease;
}

.tech-solution-card:hover .tech-card-title {
    color: #eab308;
}

.tech-card-desc {
    font-size: 15px;
    color: #9ca3af;
    line-height: 1.8;
    margin-bottom: 28px;
}

/* Tech Features List */
.tech-features-list {
    list-style: none;
    margin-bottom: 28px;
}

.tech-feature-item {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 16px;
    font-size: 14px;
    color: #d1d5db;
    transition: all 0.3s ease;
    padding: 8px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.04);
}

.tech-feature-item:last-child {
    margin-bottom: 0;
    border-bottom: none;
}

.tech-feature-item:hover {
    color: #fff;
    transform: translateX(8px);
}

.tech-feature-check {
    flex-shrink: 0;
    width: 26px;
    height: 26px;
    background: linear-gradient(135deg, rgba(234, 179, 8, 0.15) 0%, rgba(234, 179, 8, 0.05) 100%);
    border: 1px solid rgba(234, 179, 8, 0.3);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #eab308;
    transition: all 0.3s ease;
}

.tech-feature-item:hover .tech-feature-check {
    background: linear-gradient(135deg, #eab308 0%, #ca8a04 100%);
    color: #000;
    border-color: #eab308;
    transform: scale(1.1);
}

/* Tech Card Quote */
.tech-card-quote {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    padding: 20px;
    background: linear-gradient(135deg, rgba(234, 179, 8, 0.08) 0%, rgba(234, 179, 8, 0.02) 100%);
    border-radius: 16px;
    border-left: 4px solid #eab308;
    margin-bottom: 28px;
}

.tech-quote-icon {
    font-size: 24px;
    line-height: 1;
}

.tech-card-quote p {
    font-size: 14px;
    color: #fbbf24;
    font-style: italic;
    line-height: 1.7;
    margin: 0;
}

/* Card Footer */
.tech-card-footer {
    margin-top: auto;
}

.tech-card-btn {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    color: #fff;
    text-decoration: none;
    font-weight: 600;
    font-size: 15px;
    padding: 16px 28px;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.08) 0%, rgba(255, 255, 255, 0.03) 100%);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 50px;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.tech-card-btn::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, #eab308 0%, #ca8a04 100%);
    opacity: 0;
    transition: opacity 0.4s ease;
    z-index: -1;
}

.tech-card-btn:hover {
    color: #000;
    border-color: #eab308;
    box-shadow: 0 15px 35px rgba(234, 179, 8, 0.35);
    transform: translateY(-2px);
}

.tech-card-btn:hover::before {
    opacity: 1;
}

.tech-card-btn svg {
    transition: transform 0.3s ease;
}

.tech-card-btn:hover svg {
    transform: translateX(6px);
}

/* =========================
   TECH GLOBAL BANNER
========================= */
.tech-global-banner {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    margin-top: 70px;
    padding: 30px 50px;
    background: linear-gradient(135deg, rgba(234, 179, 8, 0.1) 0%, rgba(234, 179, 8, 0.02) 100%);
    border: 1px solid rgba(234, 179, 8, 0.2);
    border-radius: 100px;
    position: relative;
    z-index: 1;
    overflow: hidden;
}

.tech-banner-icon {
    flex-shrink: 0;
    color: #eab308;
    animation: techGlobeRotate 25s linear infinite;
}

@keyframes techGlobeRotate {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.tech-banner-text {
    font-size: 17px;
    color: #d1d5db;
    margin: 0;
    line-height: 1.6;
}

.tech-banner-text strong {
    color: #eab308;
    font-weight: 700;
}

.tech-banner-decoration {
    position: absolute;
    right: 30px;
    display: flex;
    gap: 6px;
}

.tech-banner-decoration span {
    width: 8px;
    height: 8px;
    background: #eab308;
    border-radius: 50%;
    animation: techDotPulse 1.5s ease-in-out infinite;
}

.tech-banner-decoration span:nth-child(2) {
    animation-delay: 0.2s;
    opacity: 0.7;
}

.tech-banner-decoration span:nth-child(3) {
    animation-delay: 0.4s;
    opacity: 0.4;
}

@keyframes techDotPulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.3); }
}

/* =========================
   TECH CTA WRAPPER
========================= */
.tech-cta-wrapper {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
    margin-top: 50px;
    position: relative;
    z-index: 1;
}

.btn-tech-primary {
    background: linear-gradient(135deg, #eab308 0%, #ca8a04 100%);
    color: #000;
    padding: 18px 40px;
    font-size: 16px;
    border: none;
    box-shadow: 
        0 4px 25px rgba(234, 179, 8, 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.2);
}

.btn-tech-primary:hover {
    transform: translateY(-4px);
    box-shadow: 
        0 15px 40px rgba(234, 179, 8, 0.5),
        inset 0 1px 0 rgba(255, 255, 255, 0.2);
}

.btn-tech-primary svg {
    transition: transform 0.3s ease;
}

.btn-tech-primary:hover svg {
    transform: translateX(6px);
}

.btn-tech-outline {
    background: transparent;
    color: #fff;
    padding: 18px 40px;
    font-size: 16px;
    border: 2px solid rgba(255, 255, 255, 0.15);
}

.btn-tech-outline:hover {
    border-color: #eab308;
    color: #eab308;
    background: rgba(234, 179, 8, 0.08);
}

/* =========================
   CARD ANIMATIONS
========================= */
.tech-solution-card {
    opacity: 0;
    transform: translateY(50px);
    animation: techCardReveal 0.7s cubic-bezier(0.23, 1, 0.32, 1) forwards;
}

.tech-solution-card:nth-child(1) { animation-delay: 0.15s; }
.tech-solution-card:nth-child(2) { animation-delay: 0.3s; }
.tech-solution-card:nth-child(3) { animation-delay: 0.45s; }
.tech-solution-card:nth-child(4) { animation-delay: 0.6s; }

@keyframes techCardReveal {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* =========================
   RESPONSIVE DESIGN
========================= */
@media (max-width: 1100px) {
    .section-padding {
        padding: 80px 0;
    }
    
    .tech-header {
        margin-bottom: 60px;
    }
    
    .tech-solutions-grid {
        gap: 25px;
    }
    
    .tech-solution-card {
        padding: 35px;
    }
    
    .tech-card-icon {
        width: 70px;
        height: 70px;
    }
    
    .tech-card-title {
        font-size: 22px;
    }
    
    .tech-intro-stats {
        gap: 40px;
    }
    
    .tech-stat-number {
        font-size: 36px;
    }
}

@media (max-width: 900px) {
    .tech-solutions-grid {
        grid-template-columns: 1fr;
        max-width: 600px;
        margin: 0 auto;
    }
    
    .tech-global-banner {
        flex-direction: column;
        text-align: center;
        padding: 30px;
        border-radius: 24px;
    }
    
    .tech-banner-decoration {
        position: static;
        margin-top: 15px;
    }
}

@media (max-width: 768px) {
    .section-padding {
        padding: 60px 0;
    }
    
    .tech-badge {
        padding: 10px 22px;
        font-size: 11px;
        letter-spacing: 1.5px;
    }
    
    .tech-subtitle {
        margin-bottom: 30px;
    }
    
    .tech-intro-text p {
        font-size: 15px;
    }
    
    .tech-intro-stats {
        flex-direction: column;
        gap: 25px;
    }
    
    .tech-stat-number {
        font-size: 38px;
    }
    
    .tech-card-number {
        font-size: 40px;
    }
    
    .tech-cta-wrapper {
        flex-direction: column;
    }
    
    .btn-tech-primary,
    .btn-tech-outline {
        width: 100%;
        justify-content: center;
        max-width: 320px;
    }
}

@media (max-width: 480px) {
    .section-padding {
        padding: 50px 0;
    }
    
    .tech-header {
        margin-bottom: 40px;
    }
    
    .tech-solution-card {
        padding: 28px;
        border-radius: 22px;
    }
    
    .tech-card-top {
        margin-bottom: 24px;
    }
    
    .tech-card-icon {
        width: 60px;
        height: 60px;
        border-radius: 18px;
    }
    
    .tech-card-icon svg {
        width: 26px;
        height: 26px;
    }
    
    .tech-card-number {
        font-size: 32px;
    }
    
    .tech-card-tag {
        font-size: 10px;
        padding: 5px 10px;
    }
    
    .tech-card-title {
        font-size: 20px;
    }
    
    .tech-card-desc {
        font-size: 14px;
    }
    
    .tech-feature-item {
        font-size: 13px;
        gap: 10px;
        padding: 6px 0;
    }
    
    .tech-feature-check {
        width: 22px;
        height: 22px;
    }
    
    .tech-card-quote {
        padding: 16px;
        gap: 12px;
    }
    
    .tech-card-quote p {
        font-size: 13px;
    }
    
    .tech-card-btn {
        padding: 14px 24px;
        font-size: 14px;
        width: 100%;
        justify-content: center;
    }
    
    .tech-global-banner {
        padding: 25px 20px;
    }
    
    .tech-banner-text {
        font-size: 14px;
    }
    
    .btn-tech-primary,
    .btn-tech-outline {
        padding: 16px 32px;
        font-size: 14px;
    }
}

/* =========================
   HOVER ENHANCEMENTS
========================= */
@media (hover: hover) {
    .tech-solution-card:hover .tech-feature-item {
        opacity: 0.6;
    }
    
    .tech-solution-card:hover .tech-feature-item:hover {
        opacity: 1;
    }
}

