/* ================================
   ABOUT US PAGE - ULTRA MODERN HERO
   ================================ */

/* Modern Hero Section */
.about-hero-modern {
    position: relative;
    min-height: 60vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #000;
    overflow: hidden;
    padding: 100px 0 60px;
}

/* 3D Canvas Background */
#heroCanvas3D {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

/* Gradient Overlay */
.hero-gradient-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(ellipse at center, transparent 0%, rgba(0,0,0,0.8) 100%);
    z-index: 2;
}

/* Floating Shapes */
.floating-shapes {
    position: absolute;
    width: 100%;
    height: 100%;
    z-index: 2;
    pointer-events: none;
}

.shape {
    position: absolute;
    border-radius: 50%;
    filter: blur(60px);
    opacity: 0.15;
    animation: float 20s infinite ease-in-out;
}

.shape-1 {
    width: 400px;
    height: 400px;
    background: linear-gradient(135deg, #00ffff, #00ccff);
    top: 10%;
    left: 10%;
    animation-delay: 0s;
}

.shape-2 {
    width: 350px;
    height: 350px;
    background: linear-gradient(135deg, #0099ff, #00ffff);
    bottom: 20%;
    right: 15%;
    animation-delay: -7s;
}

.shape-3 {
    width: 300px;
    height: 300px;
    background: linear-gradient(135deg, #00ccff, #0088ff);
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    animation-delay: -14s;
}

@keyframes float {
    0%, 100% {
        transform: translate(0, 0) scale(1);
    }
    33% {
        transform: translate(50px, -50px) scale(1.1);
    }
    66% {
        transform: translate(-50px, 50px) scale(0.9);
    }
}

/* Hero Content */
.hero-content-wrapper {
    position: relative;
    z-index: 3;
    text-align: center;
    max-width: 1000px;
    margin: 0 auto;
}

/* Hero Badge */
.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 10px 24px;
    background: rgba(0, 255, 255, 0.1);
    border: 1px solid rgba(0, 255, 255, 0.3);
    border-radius: 50px;
    margin-bottom: 30px;
    animation: fadeInDown 0.8s ease-out;
}

.badge-dot {
    width: 8px;
    height: 8px;
    background: #00ffff;
    border-radius: 50%;
    animation: pulse 2s infinite;
}

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

.badge-text {
    color: #00ffff;
    font-weight: 600;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Modern Title with Animation */
.hero-title-modern {
    font-size: 5rem;
    font-weight: 900;
    margin-bottom: 30px;
    line-height: 1.1;
    perspective: 1000px;
}

.hero-title-modern .word {
    display: inline-block;
    margin: 0 15px;
    background: linear-gradient(135deg, #00ffff 0%, #00ccff 50%, #00ffff 100%);
    background-size: 200% auto;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: shimmer 3s linear infinite, fadeInUp 0.8s ease-out backwards;
    text-shadow: 0 0 40px rgba(0, 255, 255, 0.5);
}

.hero-title-modern .word:nth-child(1) { animation-delay: 0.1s; }
.hero-title-modern .word:nth-child(2) { animation-delay: 0.2s; }
.hero-title-modern .word:nth-child(3) { animation-delay: 0.3s; }
.hero-title-modern .word:nth-child(4) { animation-delay: 0.4s; }

@keyframes shimmer {
    to {
        background-position: 200% center;
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px) rotateX(20deg);
    }
    to {
        opacity: 1;
        transform: translateY(0) rotateX(0);
    }
}

@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Subtitle with Typewriter */
.hero-subtitle-wrapper {
    margin-bottom: 50px;
    animation: fadeIn 1s ease-out 0.6s backwards;
}

.hero-subtitle-modern {
    font-size: 2rem;
    color: #fff;
    font-weight: 600;
    margin-bottom: 15px;
    min-height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
}

.subtitle-prefix {
    color: rgba(255, 255, 255, 0.7);
}

.typewriter {
    color: #00ffff;
    font-weight: 700;
    min-width: 400px;
    text-align: left;
}

.cursor {
    color: #00ffff;
    animation: blink 1s infinite;
    font-weight: 300;
}

@keyframes blink {
    0%, 50% { opacity: 1; }
    51%, 100% { opacity: 0; }
}

.hero-description {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.6);
    line-height: 1.8;
    max-width: 700px;
    margin: 0 auto;
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

/* Animated Grid Background */
.grid-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        linear-gradient(rgba(0, 255, 255, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(0, 255, 255, 0.03) 1px, transparent 1px);
    background-size: 50px 50px;
    z-index: 1;
    animation: gridMove 20s linear infinite;
}

/* Responsive Design for Modern Hero */
@media (max-width: 1024px) {
    .hero-title-modern {
        font-size: 3.5rem;
    }
    
    .typewriter {
        min-width: 300px;
    }
}

@media (max-width: 768px) {
    .about-hero-modern {
        min-height: auto;
        padding: 100px 0 60px;
    }
    
    .hero-title-modern {
        font-size: 2.5rem;
    }
    
    .hero-title-modern .word {
        margin: 0 8px;
    }
    
    .hero-subtitle-modern {
        font-size: 1.5rem;
        flex-direction: column;
        gap: 8px;
    }
    
    .typewriter {
        min-width: auto;
        text-align: center;
    }
    
    .shape {
        width: 200px !important;
        height: 200px !important;
    }
}

@media (max-width: 480px) {
    .hero-title-modern {
        font-size: 2rem;
    }
    
    .hero-title-modern .word {
        display: block;
        margin: 10px 0;
    }
    
    .hero-subtitle-modern {
        font-size: 1.2rem;
    }
    
    .hero-description {
        font-size: 1rem;
    }
}

/* ================================
   CREATIVE & UNIQUE COMPANY INFO SECTION
   ================================ */
.company-info-creative {
    position: relative;
    padding: 0;
    background: #000;
    overflow: hidden;
}

/* Animated Background with Network */
.creative-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}

#networkCanvas {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0.3;
}

/* Floating Code Snippets */
.floating-code {
    position: absolute;
    top: 10%;
    right: 5%;
    font-family: 'Consolas', 'Monaco', 'Courier New', monospace;
    font-size: 0.9rem;
    color: rgba(0, 255, 255, 0.2);
    pointer-events: none;
    animation: float 20s ease-in-out infinite;
}

.code-line {
    display: block;
    margin: 8px 0;
    animation: codeGlow 3s ease-in-out infinite;
}

.code-line:nth-child(1) { animation-delay: 0s; }
.code-line:nth-child(2) { animation-delay: 0.5s; }
.code-line:nth-child(3) { animation-delay: 1s; }
.code-line:nth-child(4) { animation-delay: 1.5s; }

@keyframes codeGlow {
    0%, 100% { opacity: 0.2; }
    50% { opacity: 0.4; }
}

/* ========================================
   WHO WE ARE SECTION - COMPACT REDESIGN
======================================== */
.who-we-are-section {
    position: relative;
    z-index: 2;
    margin-bottom: 40px;
}

.section-header {
    position: relative;
    z-index: 2;
    text-align: center;
    margin-bottom: 30px;
}

.section-header .glitch-text {
    margin-bottom: 15px;
}

.section-header .location-pulse {
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

.company-overview {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: 1fr;
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
}

.overview-text {
    text-align: center;
    padding: 0 20px;
}

.overview-text h3 {
    font-size: 2rem;
    color: #00ffff;
    margin-bottom: 20px;
    font-weight: 700;
}

.overview-text p {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.8;
    max-width: 900px;
    margin: 0 auto;
}

.company-details-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 20px;
    margin-top: 20px;
}

.detail-card {
    display: flex;
    align-items: center;
    gap: 15px;
    background: rgba(0, 255, 255, 0.03);
    border: 1px solid rgba(0, 255, 255, 0.2);
    border-radius: 12px;
    padding: 20px;
    transition: all 0.3s ease;
}

.detail-card:hover {
    background: rgba(0, 255, 255, 0.08);
    border-color: rgba(0, 255, 255, 0.4);
    transform: translateY(-3px);
    box-shadow: 0 5px 20px rgba(0, 255, 255, 0.2);
}

.card-icon-small {
    width: 45px;
    height: 45px;
    background: rgba(0, 255, 255, 0.1);
    border: 1px solid rgba(0, 255, 255, 0.3);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #00ffff;
    font-size: 1.2rem;
    flex-shrink: 0;
    transition: all 0.3s ease;
}

.detail-card:hover .card-icon-small {
    background: rgba(0, 255, 255, 0.2);
    border-color: #00ffff;
    transform: rotate(5deg);
}

.card-text {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.detail-label {
    font-size: 0.75rem;
    color: rgba(0, 255, 255, 0.7);
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 600;
}

.detail-value {
    font-size: 1rem;
    color: #ffffff;
    font-weight: 500;
}

/* ========================================
   OLD SPLIT SCREEN STYLES (HIDDEN)
======================================== */
/* Split Screen Layout */
.split-screen-wrapper {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 60px;
    position: relative;
    z-index: 1;
    margin-bottom: 80px;
}

/* Left Panel */
.left-panel {
    position: relative;
}

.panel-header {
    margin-bottom: 40px;
}

/* Glitch Text Effect - Refined */
.glitch-text {
    font-size: 2.8rem;
    font-weight: 900;
    color: #00ffff;
    position: relative;
    display: inline-block;
    margin-bottom: 20px;
    letter-spacing: 4px;
    text-transform: uppercase;
}

.glitch-text::before,
.glitch-text::after {
    content: attr(data-text);
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0.8;
}

.glitch-text::before {
    left: 3px;
    text-shadow: -3px 0 #ff00de;
    clip: rect(24px, 550px, 90px, 0);
    animation: glitch-anim-1 2.5s infinite linear alternate-reverse;
}

.glitch-text::after {
    left: -3px;
    text-shadow: 3px 0 #00fff9;
    clip: rect(85px, 550px, 140px, 0);
    animation: glitch-anim-2 2.5s infinite linear alternate-reverse;
}

/* Simplified glitch animations - less chaotic */
@keyframes glitch-anim-1 {
    0% {
        clip: rect(132px, 9999px, 101px, 0);
        transform: skew(0.3deg);
    }
    5% {
        clip: rect(17px, 9999px, 94px, 0);
        transform: skew(0.5deg);
    }
    10% {
        clip: rect(40px, 9999px, 66px, 0);
        transform: skew(0.1deg);
    }
    15% {
        clip: rect(20px, 9999px, 20px, 0);
        transform: skew(0deg);
    }
    20% {
        clip: rect(91px, 9999px, 62px, 0);
        transform: skew(0.2deg);
    }
    25% {
        clip: rect(54px, 9999px, 29px, 0);
        transform: skew(0deg);
    }
    30% {
        clip: rect(132px, 9999px, 101px, 0);
        transform: skew(0deg);
    }
    35%, 100% {
        clip: rect(0, 0, 0, 0);
        transform: skew(0deg);
    }
}

@keyframes glitch-anim-2 {
    0% {
        clip: rect(129px, 9999px, 36px, 0);
        transform: skew(0.7deg);
    }
    5% {
        clip: rect(70px, 9999px, 110px, 0);
        transform: skew(0.4deg);
    }
    10% {
        clip: rect(48px, 9999px, 86px, 0);
        transform: skew(0.2deg);
    }
    15% {
        clip: rect(37px, 9999px, 15px, 0);
        transform: skew(0deg);
    }
    20% {
        clip: rect(102px, 9999px, 65px, 0);
        transform: skew(0.3deg);
    }
    25% {
        clip: rect(24px, 9999px, 42px, 0);
        transform: skew(0deg);
    }
    30% {
        clip: rect(129px, 9999px, 36px, 0);
        transform: skew(0deg);
    }
    35%, 100% {
        clip: rect(0, 0, 0, 0);
        transform: skew(0deg);
    }
}

/* Location Pulse */
.location-pulse {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 8px 20px;
    background: rgba(0, 255, 255, 0.05);
    border: 1px solid rgba(0, 255, 255, 0.3);
    border-radius: 50px;
}

.pulse-dot {
    width: 10px;
    height: 10px;
    background: #00ffff;
    border-radius: 50%;
    animation: pulse-ring 2s cubic-bezier(0.215, 0.61, 0.355, 1) infinite;
}

@keyframes pulse-ring {
    0% {
        transform: scale(0.8);
        box-shadow: 0 0 0 0 rgba(0, 255, 255, 0.7);
    }
    70% {
        transform: scale(1);
        box-shadow: 0 0 0 10px rgba(0, 255, 255, 0);
    }
    100% {
        transform: scale(0.8);
        box-shadow: 0 0 0 0 rgba(0, 255, 255, 0);
    }
}

.location-text {
    color: #00ffff;
    font-weight: 600;
    font-size: 0.9rem;
}

/* Interactive World Map - Compact Rectangle */
.map-section-wrapper {
    position: relative;
    padding: 60px 0;
    background: linear-gradient(135deg, #000000 0%, #0a0a0a 50%, #000000 100%);
    overflow: hidden;
}

/* Background wrapper for canvas */
.map-section-wrapper .about-bg-wrapper {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}

/* Canvas for particles */
#mapAreaParticles {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
}

/* Grid overlay animation */
.map-section-wrapper::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image:
        linear-gradient(rgba(0, 255, 255, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(0, 255, 255, 0.03) 1px, transparent 1px);
    background-size: 50px 50px;
    animation: gridMove 20s linear infinite;
    pointer-events: none;
    z-index: 0;
}

@keyframes gridMove {
    0% { transform: translate(0, 0); }
    100% { transform: translate(50px, 50px); }
}

.world-map-container {
    position: relative;
    z-index: 2;
    background: rgba(0, 255, 255, 0.02);
    border: 2px solid rgba(0, 255, 255, 0.2);
    border-radius: 16px;
    padding: 40px;
    overflow: hidden;
    min-height: 400px;
    max-height: 500px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.map-svg-wrapper {
    position: relative;
    width: 100%;
    height: 100%;
    z-index: 1;
}

/* Map Title (Now Outside Container) */
.map-title-overlay {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    z-index: 10;
    background: rgba(0, 0, 0, 0.85);
    backdrop-filter: blur(10px);
    padding: 15px 30px;
    border-radius: 50px;
    border: 1px solid rgba(0, 255, 255, 0.3);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5);
    margin-bottom: 25px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.map-overlay-icon {
    color: #00ffff;
    font-size: 1.2rem;
}

.map-title {
    font-size: 1.1rem;
    font-weight: 700;
    color: #00ffff;
    margin: 0;
    letter-spacing: 0.5px;
}

.map-subtitle {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.8);
    margin: 0;
    font-weight: 400;
    padding-left: 12px;
    border-left: 1px solid rgba(0, 255, 255, 0.3);
}

/* International Badge (Now Outside Container) */
.international-badge {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    background: rgba(0, 0, 0, 0.9);
    backdrop-filter: blur(10px);
    padding: 20px 30px;
    border-radius: 50px;
    border: 2px solid rgba(0, 255, 255, 0.4);
    box-shadow: 0 10px 40px rgba(0, 255, 255, 0.3);
    z-index: 10;
    animation: pulse-badge-map 3s ease-in-out infinite;
    margin-top: 25px;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
}

@keyframes pulse-badge-map {
    0%, 100% { 
        box-shadow: 0 10px 40px rgba(0, 255, 255, 0.3);
        border-color: rgba(0, 255, 255, 0.4);
    }
    50% { 
        box-shadow: 0 10px 50px rgba(0, 255, 255, 0.5);
        border-color: rgba(0, 255, 255, 0.6);
    }
}

.badge-icon {
    width: 50px;
    height: 50px;
    background: rgba(0, 255, 255, 0.15);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #00ffff;
    font-size: 1.5rem;
    animation: rotate-globe 8s linear infinite;
}

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

.badge-text {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.badge-label {
    font-size: 0.65rem;
    color: rgba(0, 255, 255, 0.8);
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: 700;
}

.badge-value {
    font-size: 1.1rem;
    color: #ffffff;
    font-weight: 700;
    letter-spacing: 0.5px;
}

@media (max-width: 768px) {
    .world-map-container {
        padding: 15px;
        min-height: 250px;
        max-height: 350px;
    }
    
    .map-title-overlay {
        padding: 12px 20px;
        flex-direction: column;
        gap: 8px;
        text-align: center;
        margin-bottom: 20px;
    }
    
    .map-title {
        font-size: 1rem;
    }
    
    .map-subtitle {
        font-size: 0.8rem;
        padding-left: 0;
        border-left: none;
        padding-top: 5px;
        border-top: 1px solid rgba(0, 255, 255, 0.3);
    }
    
    .international-badge {
        padding: 12px 20px;
        gap: 10px;
        flex-direction: row;
        text-align: center;
        margin-top: 20px;
    }
    
    .badge-icon {
        width: 35px;
        height: 35px;
        font-size: 1rem;
    }
    
    .badge-text {
        gap: 5px;
        flex-direction: row;
        align-items: center;
    }
    
    .badge-label {
        font-size: 0.7rem;
    }
    
    .badge-value {
        font-size: 0.9rem;
    }
    
    .map-loading {
        padding: 40px 10px !important;
    }
    
    .map-loading i {
        font-size: 2rem !important;
    }
    
    .map-loading p {
        font-size: 0.9rem;
    }
}

/* Professional Info Section Below Map */
.professional-info-section {
    position: relative;
    z-index: 2;
    padding: 60px 0 40px;
    text-align: center;
}

.professional-title {
    font-size: 2.5rem;
    font-weight: 800;
    color: #00ffff;
    margin-bottom: 25px;
    letter-spacing: 1px;
}

.professional-text {
    font-size: 1.15rem;
    color: rgba(255, 255, 255, 0.85);
    line-height: 1.8;
    max-width: 900px;
    margin: 0 auto 50px;
}

.info-cards-row {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 25px;
    margin-top: 40px;
}

.info-card-enhanced {
    background: rgba(0, 255, 255, 0.03);
    border: 2px solid rgba(0, 255, 255, 0.25);
    border-radius: 16px;
    padding: 30px 25px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.info-card-enhanced::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(0, 255, 255, 0.1), transparent);
    transition: left 0.6s ease;
}

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

.info-card-enhanced:hover {
    background: rgba(0, 255, 255, 0.08);
    border-color: rgba(0, 255, 255, 0.5);
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(0, 255, 255, 0.25);
}

.card-icon-large {
    width: 70px;
    height: 70px;
    background: rgba(0, 255, 255, 0.1);
    border: 2px solid rgba(0, 255, 255, 0.4);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #00ffff;
    font-size: 1.8rem;
    transition: all 0.4s ease;
}

.info-card-enhanced:hover .card-icon-large {
    background: rgba(0, 255, 255, 0.2);
    border-color: #00ffff;
    transform: rotate(360deg) scale(1.1);
    box-shadow: 0 0 25px rgba(0, 255, 255, 0.5);
}

.card-content-enhanced {
    display: flex;
    flex-direction: column;
    gap: 8px;
    text-align: center;
}

.card-label-enhanced {
    font-size: 0.7rem;
    color: rgba(0, 255, 255, 0.8);
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: 700;
}

.card-value-enhanced {
    font-size: 1.05rem;
    color: #ffffff;
    font-weight: 600;
    line-height: 1.4;
}

@media (max-width: 768px) {
    .professional-title {
        font-size: 1.8rem;
    }
    
    .professional-text {
        font-size: 1rem;
    }
    
    .info-cards-row {
        grid-template-columns: 1fr;
        gap: 20px;
    }
}

.world-map {
    width: 100%;
    height: auto;
    display: block;
    max-width: 100%;
}

.continent {
    fill: rgba(0, 255, 255, 0.1);
    stroke: rgba(0, 255, 255, 0.3);
    stroke-width: 1;
    transition: all 0.3s ease;
}

.continent:hover {
    fill: rgba(0, 255, 255, 0.2);
}

/* UK Marker Animation */
.uk-marker {
    cursor: pointer;
}

.marker-ping {
    animation: ping 2s cubic-bezier(0, 0, 0.2, 1) infinite;
}

@keyframes ping {
    75%, 100% {
        transform: scale(2);
        opacity: 0;
    }
}

.marker-outer {
    animation: rotate 10s linear infinite;
}

.marker-inner {
    animation: pulse 2s ease-in-out infinite;
}

/* Connection Lines */
.connection-line {
    animation: dash 3s linear infinite;
}

@keyframes dash {
    to {
        stroke-dashoffset: -20;
    }
}

/* Map Overlay Stats */
.map-overlay-text {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
}

.stat-bubble {
    position: absolute;
    background: rgba(0, 0, 0, 0.8);
    border: 1px solid #00ffff;
    border-radius: 10px;
    padding: 10px 15px;
    display: flex;
    flex-direction: column;
    align-items: center;
    animation: float 4s ease-in-out infinite;
}

.stat-bubble:nth-child(2) {
    animation-delay: -2s;
}

.bubble-number {
    font-size: 1.2rem;
    font-weight: 700;
    color: #00ffff;
}

.bubble-label {
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.6);
    text-transform: uppercase;
}

/* Quick Facts */
.quick-facts {
    margin-top: 30px;
}

.fact-item {
    display: flex;
    gap: 20px;
    padding: 25px;
    background: rgba(0, 255, 255, 0.03);
    border-left: 3px solid #00ffff;
    border-radius: 10px;
}

.fact-icon-wrapper {
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0, 255, 255, 0.1);
    border-radius: 12px;
    color: #00ffff;
    font-size: 1.5rem;
    flex-shrink: 0;
}

.fact-content h4 {
    font-size: 1.2rem;
    color: #fff;
    margin-bottom: 8px;
}

.fact-content p {
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.6;
}

/* Right Panel - Holographic Display */
.right-panel {
    position: relative;
}

.holo-display {
    background: rgba(0, 20, 40, 0.5);
    border: 1px solid rgba(0, 255, 255, 0.3);
    border-radius: 20px;
    padding: 30px;
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(10px);
}

.holo-display::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: repeating-linear-gradient(
        0deg,
        rgba(0, 255, 255, 0.03) 0px,
        rgba(0, 255, 255, 0.03) 1px,
        transparent 1px,
        transparent 2px
    );
    pointer-events: none;
    animation: scanlines 10s linear infinite;
}

@keyframes scanlines {
    0% { transform: translateY(0); }
    100% { transform: translateY(20px); }
}

.holo-header {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 30px;
    padding-bottom: 15px;
    border-bottom: 1px solid rgba(0, 255, 255, 0.2);
}

.holo-icon {
    color: #00ffff;
    font-size: 1.2rem;
}

.holo-title {
    color: #00ffff;
    font-weight: 700;
    font-family: 'Inter', 'Segoe UI', -apple-system, BlinkMacSystemFont, sans-serif;
    font-size: 1.1rem;
    letter-spacing: 2px;
}

.holo-status {
    margin-left: auto;
    color: #00ff00;
    font-size: 0.85rem;
    font-family: 'Inter', 'Segoe UI', -apple-system, BlinkMacSystemFont, sans-serif;
}

/* Info Blocks */
.info-block {
    margin-bottom: 25px;
    position: relative;
}

.info-label {
    display: flex;
    align-items: center;
    gap: 10px;
    color: rgba(0, 255, 255, 0.7);
    font-family: 'Inter', 'Segoe UI', -apple-system, BlinkMacSystemFont, sans-serif;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 8px;
}

.info-label i {
    color: #00ffff;
}

.info-value {
    color: #fff;
    font-size: 1rem;
    line-height: 1.6;
    padding-left: 30px;
}

.info-underline {
    height: 1px;
    background: linear-gradient(90deg, rgba(0, 255, 255, 0.5), transparent);
    margin-top: 10px;
}

/* Terminal Window */
.terminal-window {
    margin-top: 30px;
    background: #0a0a0a;
    border: 1px solid rgba(0, 255, 255, 0.3);
    border-radius: 8px;
    overflow: hidden;
}

.terminal-header {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px 15px;
    background: rgba(0, 255, 255, 0.05);
    border-bottom: 1px solid rgba(0, 255, 255, 0.2);
}

.terminal-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
}

.terminal-dot.red { background: #ff5f56; }
.terminal-dot.yellow { background: #ffbd2e; }
.terminal-dot.green { background: #27c93f; }

.terminal-title {
    margin-left: auto;
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.8rem;
    font-family: 'Consolas', 'Monaco', 'Courier New', monospace;
}

.terminal-body {
    padding: 20px;
    font-family: 'Consolas', 'Monaco', 'Courier New', monospace;
    font-size: 0.9rem;
}

.terminal-line {
    margin: 8px 0;
    line-height: 1.6;
}

.prompt {
    color: #00ffff;
    margin-right: 8px;
}

.command {
    color: #fff;
}

.terminal-line.output {
    color: rgba(255, 255, 255, 0.8);
    padding-left: 20px;
}

.check {
    color: #00ff00;
    margin-right: 8px;
}

.cursor-blink {
    color: #00ffff;
    animation: blink 1s infinite;
}

/* Services Section Background */
.services-section-about {
    position: relative;
    padding: 100px 0;
    background: linear-gradient(135deg, #0a1419 0%, #0f1f26 50%, #0a1419 100%);
    overflow: hidden;
}

/* Subtle cyan glow */
.services-section-about::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(ellipse at 30% 50%, rgba(0, 255, 255, 0.15) 0%, transparent 60%),
        radial-gradient(ellipse at 70% 50%, rgba(0, 255, 255, 0.1) 0%, transparent 60%);
    animation: gentleGlow 10s ease-in-out infinite;
    pointer-events: none;
    z-index: 0;
}

/* Grid overlay */
.services-section-about::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image:
        linear-gradient(rgba(0, 255, 255, 0.08) 1px, transparent 1px),
        linear-gradient(90deg, rgba(0, 255, 255, 0.08) 1px, transparent 1px);
    background-size: 50px 50px;
    pointer-events: none;
    z-index: 1;
}

/* Services Deck */
.services-deck {
    position: relative;
    z-index: 1;
}

.deck-header {
    text-align: center;
    margin-bottom: 60px;
}

.deck-title {
    font-size: 3rem;
    font-weight: 900;
    color: #fff;
    margin-bottom: 15px;
    letter-spacing: 2px;
}

.title-bracket {
    color: #00ffff;
    font-size: 3.5rem;
}

.deck-subtitle {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.6);
}

/* Cards Container */
.cards-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    perspective: 1000px;
}

/* Service Card Deck Style */
.service-card-deck {
    position: relative;
    background: linear-gradient(135deg, rgba(0, 50, 100, 0.3), rgba(0, 20, 40, 0.3));
    border: 2px solid rgba(0, 255, 255, 0.3);
    border-radius: 15px;
    padding: 35px 25px;
    transition: all 0.3s ease;
    cursor: pointer;
    overflow: hidden;
}

.service-card-deck::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(0, 255, 255, 0.1), transparent);
    opacity: 0;
    transition: opacity 0.3s;
}

.service-card-deck:hover::before {
    opacity: 1;
}

.service-card-deck:hover {
    transform: translateY(-5px);
    border-color: #00ffff;
    box-shadow: 
        0 10px 30px rgba(0, 255, 255, 0.2),
        0 0 0 1px rgba(0, 255, 255, 0.2) inset;
}

/* Card Corner Accent */
.card-corner {
    position: absolute;
    top: 0;
    right: 0;
    width: 60px;
    height: 60px;
    border-top: 3px solid #00ffff;
    border-right: 3px solid #00ffff;
    border-radius: 0 15px 0 0;
}

/* Card Pattern */
.card-pattern {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        linear-gradient(45deg, rgba(0, 255, 255, 0.02) 25%, transparent 25%),
        linear-gradient(-45deg, rgba(0, 255, 255, 0.02) 25%, transparent 25%),
        linear-gradient(45deg, transparent 75%, rgba(0, 255, 255, 0.02) 75%),
        linear-gradient(-45deg, transparent 75%, rgba(0, 255, 255, 0.02) 75%);
    background-size: 20px 20px;
    opacity: 0.3;
}

.card-content {
    position: relative;
    z-index: 1;
}

.card-number {
    position: absolute;
    top: -10px;
    right: 10px;
    font-size: 5rem;
    font-weight: 900;
    color: rgba(0, 255, 255, 0.05);
    line-height: 1;
    font-family: 'Inter', 'Segoe UI', -apple-system, BlinkMacSystemFont, sans-serif;
}

.card-icon {
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0, 255, 255, 0.1);
    border: 2px solid rgba(0, 255, 255, 0.3);
    border-radius: 12px;
    color: #00ffff;
    font-size: 1.8rem;
    margin-bottom: 20px;
    transition: all 0.4s ease;
}

.service-card-deck:hover .card-icon {
    background: rgba(0, 255, 255, 0.2);
    transform: rotate(10deg) scale(1.1);
    box-shadow: 0 0 20px rgba(0, 255, 255, 0.5);
}

.service-card-deck h4 {
    font-size: 1.3rem;
    color: #fff;
    font-weight: 700;
    margin-bottom: 12px;
}

.service-card-deck p {
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.6;
    margin-bottom: 20px;
}

/* Service Link */
.service-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: #00ffff;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    padding: 8px 16px;
    border: 1px solid rgba(0, 255, 255, 0.3);
    border-radius: 20px;
    background: rgba(0, 255, 255, 0.05);
}

.service-link:hover {
    background: rgba(0, 255, 255, 0.15);
    border-color: #00ffff;
    transform: translateX(5px);
    box-shadow: 0 5px 15px rgba(0, 255, 255, 0.3);
}

/* Tech Tags - Hidden since we're using links instead */
.card-tech-tags {
    display: none;
}

.tech-tag {
    padding: 5px 12px;
    background: rgba(0, 255, 255, 0.1);
    border: 1px solid rgba(0, 255, 255, 0.3);
    border-radius: 20px;
    color: #00ffff;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
}

.service-card-deck:hover .tech-tag {
    background: rgba(0, 255, 255, 0.2);
    border-color: #00ffff;
}

/* AOS Animations */
[data-aos] {
    opacity: 0;
    transition-property: transform, opacity;
}

[data-aos].aos-animate {
    opacity: 1;
}

[data-aos="fade-up"] {
    transform: translateY(40px);
}

[data-aos="fade-up"].aos-animate {
    transform: translateY(0);
}

[data-aos="fade-left"] {
    transform: translateX(-40px);
}

[data-aos="fade-left"].aos-animate {
    transform: translateX(0);
}

[data-aos="flip-left"] {
    transform: perspective(2500px) rotateY(-100deg);
}

[data-aos="flip-left"].aos-animate {
    transform: perspective(2500px) rotateY(0);
}

/* Responsive Design */
@media (max-width: 1024px) {
    .split-screen-wrapper {
        grid-template-columns: 1fr;
        gap: 50px;
    }
    
    .floating-code {
        display: none;
    }
}

/* ========================================
   FOUNDERS SECTION - MODERN DESIGN
======================================== */
.founders-modern {
    position: relative;
    padding: 120px 0;
    background: linear-gradient(135deg, #0a1419 0%, #0f1f26 50%, #0a1419 100%);
    overflow: hidden;
}

/* Subtle cyan glow */
.founders-modern::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(ellipse at 30% 50%, rgba(0, 255, 255, 0.15) 0%, transparent 60%),
        radial-gradient(ellipse at 70% 50%, rgba(0, 255, 255, 0.1) 0%, transparent 60%);
    animation: gentleGlow 10s ease-in-out infinite;
    pointer-events: none;
    z-index: 0;
}

/* Grid overlay */
.founders-modern::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image:
        linear-gradient(rgba(0, 255, 255, 0.08) 1px, transparent 1px),
        linear-gradient(90deg, rgba(0, 255, 255, 0.08) 1px, transparent 1px);
    background-size: 50px 50px;
    pointer-events: none;
    z-index: 1;
}

@keyframes gentleGlow {
    0%, 100% { opacity: 0.7; }
    50% { opacity: 1; }
}

.founders-bg-effects {
    display: none;
}

/* Header */
.founders-header {
    text-align: center;
    margin-bottom: 80px;
}

.header-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 20px;
    background: rgba(0, 255, 255, 0.05);
    border: 1px solid rgba(0, 255, 255, 0.3);
    border-radius: 50px;
    margin-bottom: 25px;
    animation: pulse-badge 3s ease-in-out infinite;
}

@keyframes pulse-badge {
    0%, 100% { box-shadow: 0 0 0 rgba(0, 255, 255, 0.4); }
    50% { box-shadow: 0 0 20px rgba(0, 255, 255, 0.6); }
}

.badge-dot {
    width: 8px;
    height: 8px;
    background: #00ffff;
    border-radius: 50%;
    animation: pulse-dot 2s ease-in-out infinite;
}

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

.badge-text {
    color: #00ffff;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.founders-title {
    font-size: 3.5rem;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.title-line {
    color: #ffffff;
    display: block;
}

.title-emphasis {
    background: linear-gradient(135deg, #00ffff 0%, #00ccff 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    display: block;
    position: relative;
}

.title-emphasis::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 4px;
    background: linear-gradient(90deg, transparent, #00ffff, transparent);
}

.founders-subtitle {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.7);
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.6;
}

/* Founders Container */
.founders-container {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 60px;
    max-width: 1200px;
    margin: 0 auto;
}

.founder-profile {
    opacity: 0;
    transition: opacity 0.6s ease;
}

.founder-profile.aos-animate {
    opacity: 1;
}

/* Profile Card */
.profile-card {
    position: relative;
    background: rgba(0, 255, 255, 0.02);
    border: 1px solid rgba(0, 255, 255, 0.2);
    border-radius: 24px;
    padding: 40px;
    transition: all 0.4s ease;
    overflow: hidden;
}

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

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

.profile-card:hover {
    transform: translateY(-10px);
    border-color: rgba(0, 255, 255, 0.5);
    box-shadow: 0 20px 60px rgba(0, 255, 255, 0.2);
}

.card-glow {
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: linear-gradient(135deg, #00ffff, #00ccff);
    border-radius: 24px;
    opacity: 0;
    z-index: -1;
    transition: opacity 0.4s ease;
}

.profile-card:hover .card-glow {
    opacity: 0.3;
}

/* Profile Image */
.profile-image-wrapper {
    position: relative;
    margin-bottom: 30px;
}

.image-border {
    position: absolute;
    top: -10px;
    left: -10px;
    right: -10px;
    bottom: -10px;
    pointer-events: none;
}

.border-corner {
    position: absolute;
    width: 30px;
    height: 30px;
    border-color: #00ffff;
    opacity: 0.6;
}

.border-corner.tl {
    top: 0;
    left: 0;
    border-top: 2px solid;
    border-left: 2px solid;
}

.border-corner.tr {
    top: 0;
    right: 0;
    border-top: 2px solid;
    border-right: 2px solid;
}

.border-corner.bl {
    bottom: 0;
    left: 0;
    border-bottom: 2px solid;
    border-left: 2px solid;
}

.border-corner.br {
    bottom: 0;
    right: 0;
    border-bottom: 2px solid;
    border-right: 2px solid;
}

.profile-card:hover .border-corner {
    opacity: 1;
    animation: corner-pulse 1.5s ease-in-out infinite;
}

@keyframes corner-pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.2); }
}

.profile-image {
    position: relative;
    width: 200px;
    height: 200px;
    border-radius: 50%;
    overflow: hidden;
    margin: 0 auto;
    border: 3px solid rgba(0, 255, 255, 0.3);
    transition: all 0.4s ease;
}

.profile-card:hover .profile-image {
    border-color: #00ffff;
    box-shadow: 0 0 30px rgba(0, 255, 255, 0.5);
}

.profile-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

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

.image-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(0, 255, 255, 0.2), transparent);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.profile-card:hover .image-overlay {
    opacity: 1;
}

.status-indicator {
    position: absolute;
    bottom: 10px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    align-items: center;
    gap: 6px;
    background: rgba(0, 0, 0, 0.8);
    border: 1px solid rgba(0, 255, 255, 0.4);
    border-radius: 20px;
    padding: 6px 16px;
    backdrop-filter: blur(10px);
}

.status-dot {
    width: 8px;
    height: 8px;
    background: #00ff00;
    border-radius: 50%;
    animation: pulse-status 2s ease-in-out infinite;
}

@keyframes pulse-status {
    0%, 100% { box-shadow: 0 0 0 rgba(0, 255, 0, 0.4); }
    50% { box-shadow: 0 0 15px rgba(0, 255, 0, 0.8); }
}

.status-text {
    color: #00ff00;
    font-size: 0.75rem;
    font-weight: 600;
}

/* Profile Content */
.profile-content {
    text-align: center;
}

.profile-header {
    margin-bottom: 20px;
}

.profile-name {
    font-size: 2rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 10px;
}

.profile-role {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: #00ffff;
    font-size: 1rem;
    font-weight: 600;
}

.role-icon {
    width: 6px;
    height: 6px;
    background: #00ffff;
    border-radius: 50%;
    animation: pulse-dot 2s ease-in-out infinite;
}

.profile-bio {
    margin-bottom: 25px;
}

.profile-bio p {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.8;
    font-size: 1rem;
}

/* Specialties */
.profile-specialties {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    justify-content: center;
    margin-bottom: 30px;
}

.specialty-tag {
    display: inline-block;
    padding: 8px 16px;
    background: rgba(0, 255, 255, 0.1);
    border: 1px solid rgba(0, 255, 255, 0.3);
    border-radius: 20px;
    color: #00ffff;
    font-size: 0.85rem;
    font-weight: 600;
    transition: all 0.3s ease;
}

.specialty-tag:hover {
    background: rgba(0, 255, 255, 0.2);
    border-color: #00ffff;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 255, 255, 0.3);
}

/* LinkedIn Link */
.linkedin-link {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 14px 28px;
    background: linear-gradient(135deg, rgba(0, 255, 255, 0.1), rgba(0, 204, 255, 0.1));
    border: 2px solid rgba(0, 255, 255, 0.4);
    border-radius: 50px;
    color: #00ffff;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

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

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

.linkedin-link:hover {
    background: linear-gradient(135deg, rgba(0, 255, 255, 0.2), rgba(0, 204, 255, 0.2));
    border-color: #00ffff;
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(0, 255, 255, 0.4);
}

.link-icon {
    font-size: 1.2rem;
    transition: transform 0.3s ease;
}

.linkedin-link:hover .link-icon {
    transform: scale(1.2) rotate(10deg);
}

.link-text {
    font-size: 1rem;
}

.link-arrow {
    font-size: 1.2rem;
    transition: transform 0.3s ease;
}

.linkedin-link:hover .link-arrow {
    transform: translateX(5px);
}

/* Responsive Design for Founders */
@media (max-width: 1024px) {
    .founders-container {
        grid-template-columns: 1fr;
        gap: 50px;
        max-width: 600px;
    }
    
    .founders-title {
        font-size: 2.5rem;
    }
}

@media (max-width: 768px) {
    .founders-modern {
        padding: 80px 0;
    }
    
    .founders-header {
        margin-bottom: 60px;
    }
    
    .founders-title {
        font-size: 2rem;
    }
    
    .founders-subtitle {
        font-size: 1rem;
    }
    
    .profile-card {
        padding: 30px 20px;
    }
    
    .profile-image {
        width: 150px;
        height: 150px;
    }
    
    .profile-name {
        font-size: 1.5rem;
    }
    
    .profile-specialties {
        gap: 8px;
    }
    
    .specialty-tag {
        font-size: 0.75rem;
        padding: 6px 12px;
    }
}

@media (max-width: 768px) {
    .glitch-text {
        font-size: 2rem;
    }
    
    .deck-title {
        font-size: 2rem;
    }
    
    .title-bracket {
        font-size: 2.5rem;
    }
    
    .cards-container {
        grid-template-columns: 1fr;
    }
    
    .service-card-deck {
        padding: 30px 20px;
    }
}

@media (max-width: 480px) {
    .company-info-creative {
        padding: 0;
    }
    
    .glitch-text {
        font-size: 1.5rem;
    }
    
    .holo-display {
        padding: 15px;
    }
    
    .world-map-container {
        padding: 10px;
        min-height: 200px;
        max-height: 300px;
    }
    
    .map-title-overlay {
        padding: 10px 15px;
        flex-direction: column;
        gap: 6px;
        margin-bottom: 15px;
    }
    
    .map-overlay-icon {
        font-size: 0.9rem;
    }
    
    .map-title {
        font-size: 0.85rem;
    }
    
    .map-subtitle {
        font-size: 0.7rem;
        padding-left: 0;
        border-left: none;
        padding-top: 5px;
        border-top: 1px solid rgba(0, 255, 255, 0.3);
    }
    
    .international-badge {
        padding: 10px 15px;
        gap: 8px;
        flex-direction: column;
        margin-top: 15px;
    }
    
    .badge-icon {
        width: 30px;
        height: 30px;
        font-size: 0.9rem;
    }
    
    .badge-text {
        flex-direction: column;
        gap: 3px;
    }
    
    .badge-label {
        font-size: 0.65rem;
    }
    
    .badge-value {
        font-size: 0.75rem;
    }
}

/* ===========================
   Trust Section Modern
   =========================== */
.trust-section-modern {
    position: relative;
    padding: 120px 0;
    background: #000000;
    overflow: hidden;
}

.trust-header {
    text-align: center;
    margin-bottom: 80px;
    position: relative;
    z-index: 2;
}

.trust-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 20px;
    background: rgba(0, 255, 255, 0.1);
    border: 1px solid rgba(0, 255, 255, 0.3);
    border-radius: 50px;
    font-size: 0.875rem;
    font-weight: 600;
    color: #00ffff;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 20px;
    backdrop-filter: blur(10px);
}

.trust-badge i {
    font-size: 1rem;
}

.trust-main-title {
    font-size: 3.5rem;
    font-weight: 700;
    color: #ffffff;
    margin: 0 0 20px 0;
}

.trust-subtitle {
    font-size: 1.25rem;
    color: rgba(255, 255, 255, 0.7);
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

.trust-features-grid {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    position: relative;
    z-index: 2;
}

.trust-feature-card {
    position: relative;
    display: flex;
    align-items: flex-start;
    gap: 25px;
    background: linear-gradient(135deg, rgba(15, 15, 15, 0.95) 0%, rgba(20, 20, 20, 0.95) 100%);
    border: 1px solid rgba(0, 255, 255, 0.15);
    border-radius: 16px;
    padding: 35px;
    backdrop-filter: blur(10px);
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    overflow: hidden;
}

.trust-feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 0;
    background: linear-gradient(180deg, #00ffff 0%, rgba(0, 255, 255, 0.3) 100%);
    transition: height 0.5s ease;
}

.trust-feature-card:hover {
    transform: translateX(8px);
    border-color: rgba(0, 255, 255, 0.4);
    box-shadow: 
        0 20px 60px rgba(0, 0, 0, 0.5),
        0 0 40px rgba(0, 255, 255, 0.1);
}

.trust-feature-card:hover::before {
    height: 100%;
}

.feature-icon-large {
    position: relative;
    flex-shrink: 0;
    width: 80px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0, 255, 255, 0.05);
    border: 2px solid rgba(0, 255, 255, 0.2);
    border-radius: 16px;
    transition: all 0.4s ease;
    overflow: hidden;
}

.icon-glow-pulse {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    height: 100%;
    background: radial-gradient(circle, rgba(0, 255, 255, 0.4) 0%, rgba(0, 255, 255, 0.1) 50%, transparent 70%);
    border-radius: 50%;
    animation: pulse 2s ease-in-out infinite;
    opacity: 0;
    transition: opacity 0.4s ease;
    pointer-events: none;
}

.trust-feature-card:hover .icon-glow-pulse {
    opacity: 1;
}

.feature-icon-large i {
    position: relative;
    z-index: 2;
    font-size: 2.5rem;
    color: #00ffff;
    transition: all 0.4s ease;
}

.trust-feature-card:hover .feature-icon-large {
    background: rgba(0, 255, 255, 0.1);
    border-color: rgba(0, 255, 255, 0.5);
    transform: scale(1.05) rotate(5deg);
}

.trust-feature-card:hover .feature-icon-large i {
    transform: scale(1.1);
}

.feature-content {
    flex: 1;
    min-width: 0;
}

.feature-header {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 15px;
}

.feature-label {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: rgba(0, 255, 255, 0.1);
    border: 1px solid rgba(0, 255, 255, 0.3);
    border-radius: 8px;
    font-size: 1rem;
    font-weight: 700;
    color: #00ffff;
    flex-shrink: 0;
}

.feature-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: #ffffff;
    margin: 0;
    line-height: 1.2;
}

.feature-description {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.7;
    margin: 0 0 20px 0;
}

.feature-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.badge-item {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 6px 14px;
    background: rgba(0, 255, 255, 0.08);
    border: 1px solid rgba(0, 255, 255, 0.2);
    border-radius: 6px;
    font-size: 0.875rem;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.85);
    transition: all 0.3s ease;
}

.badge-item i {
    color: #00ffff;
    font-size: 0.75rem;
}

.trust-feature-card:hover .badge-item {
    background: rgba(0, 255, 255, 0.12);
    border-color: rgba(0, 255, 255, 0.3);
}

/* Responsive Design */
@media (max-width: 1200px) {
    .trust-features-grid {
        gap: 25px;
    }
    
    .trust-feature-card {
        padding: 30px;
    }
}

@media (max-width: 992px) {
    .trust-section-modern {
        padding: 80px 0;
    }
    
    .trust-main-title {
        font-size: 2.5rem;
    }
    
    .trust-subtitle {
        font-size: 1.1rem;
    }
    
    .trust-header {
        margin-bottom: 60px;
    }
    
    .trust-features-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .trust-section-modern {
        padding: 60px 0;
    }
    
    .trust-main-title {
        font-size: 2rem;
    }
    
    .trust-subtitle {
        font-size: 1rem;
    }
    
    .trust-feature-card {
        flex-direction: column;
        padding: 25px;
    }
    
    .feature-icon-large {
        width: 70px;
        height: 70px;
    }
    
    .feature-icon-large i {
        font-size: 2rem;
    }
    
    .feature-title {
        font-size: 1.25rem;
    }
    
    .feature-header {
        flex-wrap: wrap;
    }
}
