* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    background: #000000;
    color: #ffffff;
    overflow-x: hidden;
    min-height: 100vh;
    line-height: 1.8;
}

/* Prevent body overflow changes from affecting fixed mobile menu */
body:has(.mobile-menu.active) {
    overflow: hidden;
    position: fixed;
    width: 100%;
    height: 100%;
}

body.mobile-menu-open {
    overflow: hidden !important;
    position: fixed !important;
    width: 100% !important;
    height: 100% !important;
}

/* Animated Background */
.background-animation {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    overflow: hidden;
}

.gradient-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.3;
    animation: float 20s infinite ease-in-out;
}

.orb-1 {
    width: 500px;
    height: 500px;
    background: linear-gradient(135deg, #1DA1F2, #0d8bd9);
    top: -250px;
    left: -250px;
    animation-delay: 0s;
}

.orb-2 {
    width: 400px;
    height: 400px;
    background: linear-gradient(135deg, #7856ff, #5a3fd4);
    bottom: -200px;
    right: -200px;
    animation-delay: 5s;
}

.orb-3 {
    width: 350px;
    height: 350px;
    background: linear-gradient(135deg, #ff6b6b, #ee5a52);
    top: 50%;
    right: 10%;
    animation-delay: 10s;
}

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

/* Navigation */
nav {
    position: fixed;
    top: 0;
    width: 100%;
    padding: 12px 40px;
    z-index: 100;
    backdrop-filter: blur(10px);
    background: rgba(0, 0, 0, 0.5);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    animation: slideDown 0.8s ease-out;
}

@keyframes slideDown {
    from {
        transform: translateY(-100%);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

.nav-container {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 30px;
    width: 100%;
}

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
    transition: all 0.3s ease;
    flex-shrink: 0;
}

.logo:hover {
    transform: translateY(-2px);
}

.logo-img {
    height: 45px;
    width: auto;
    display: block;
    animation: glow 2s ease-in-out infinite alternate;
    transition: transform 0.3s ease;
}

.logo:hover .logo-img {
    transform: scale(1.05);
}

.logo-text {
    display: none; /* Hide text, show logo only */
}

@keyframes glow {
    from {
        filter: drop-shadow(0 0 5px rgba(29, 161, 242, 0.5));
    }
    to {
        filter: drop-shadow(0 0 20px rgba(29, 161, 242, 0.8));
    }
}

.nav-links {
    display: flex;
    gap: 35px;
    list-style: none;
    justify-content: center;
    flex: 1;
    margin: 0 auto;
}

.nav-links a {
    color: #ffffff;
    text-decoration: none;
    font-size: 16px;
    font-weight: 500;
    transition: color 0.3s ease;
    position: relative;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, #1DA1F2, #7856ff);
    transition: width 0.3s ease;
}

.nav-links a:hover {
    color: #1DA1F2;
}

.nav-links a:hover::after {
    width: 100%;
}

.nav-links a.active {
    color: #1DA1F2;
}

.nav-links a.active::after {
    width: 100%;
}

.cta-button {
    background: linear-gradient(135deg, #1DA1F2, #7856ff);
    border: none;
    padding: 6px 16px;
    border-radius: 18px;
    color: white;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 12px;
    text-decoration: none;
    display: inline-block;
    flex-shrink: 0;
}

.cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(29, 161, 242, 0.4);
}

/* Mobile Menu Toggle Button */
.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    justify-content: space-around;
    width: 30px;
    height: 30px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0;
    z-index: 101;
    position: relative;
    flex-shrink: 0;
}

.mobile-menu-toggle span {
    width: 100%;
    height: 3px;
    background: linear-gradient(135deg, #1DA1F2, #7856ff);
    border-radius: 3px;
    transition: all 0.3s ease;
    transform-origin: center;
}

.mobile-menu-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(8px, 8px);
}

.mobile-menu-toggle.active span:nth-child(2) {
    opacity: 0;
}

.mobile-menu-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(8px, -8px);
}

/* Mobile Menu */
.mobile-menu {
    display: none;
    position: fixed !important;
    top: 0 !important;
    left: 0 !important;
    right: 0 !important;
    width: 100% !important;
    height: 100vh !important;
    z-index: 1000;
    pointer-events: none;
    /* Prevent any transforms or movements */
    transform: none !important;
    margin: 0 !important;
    padding: 0 !important;
}

.mobile-menu.active {
    pointer-events: all;
    /* Ensure no position changes when active */
    position: fixed !important;
    top: 0 !important;
    left: 0 !important;
    right: 0 !important;
    transform: none !important;
}

.mobile-menu-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.9);
    backdrop-filter: blur(10px);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.mobile-menu.active .mobile-menu-overlay {
    opacity: 1;
}

.mobile-menu-content {
    position: fixed !important;
    top: 0 !important;
    right: 0 !important;
    left: auto !important;
    bottom: auto !important;
    width: 320px !important;
    max-width: 100% !important;
    min-width: 320px !important;
    height: 100vh !important;
    max-height: 100vh !important;
    background: rgba(0, 0, 0, 0.95);
    backdrop-filter: blur(20px);
    border-left: 1px solid rgba(255, 255, 255, 0.1);
    padding: 80px 30px 30px;
    overflow-y: auto;
    opacity: 0;
    pointer-events: none;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0s 0.3s !important;
    box-shadow: -10px 0 30px rgba(0, 0, 0, 0.5);
    /* Fixed position and size - no movement or size changes allowed */
    transform: translateX(0) translateY(0) translateZ(0) !important;
    will-change: opacity;
    /* Prevent any width/size animations */
    box-sizing: border-box;
    /* Lock all position and size properties - no transitions allowed */
    margin: 0 !important;
    z-index: 1001;
    /* Force GPU acceleration and prevent layout shifts */
    backface-visibility: hidden;
    -webkit-backface-visibility: hidden;
    perspective: 1000px;
    -webkit-perspective: 1000px;
}

.mobile-menu.active .mobile-menu-content {
    opacity: 1;
    pointer-events: all;
    visibility: visible;
    transition: opacity 0.3s ease, visibility 0s 0s !important;
    /* Lock position and size - never change */
    position: fixed !important;
    top: 0 !important;
    right: 0 !important;
    left: auto !important;
    bottom: auto !important;
    width: 320px !important;
    max-width: 100% !important;
    min-width: 320px !important;
    height: 100vh !important;
    max-height: 100vh !important;
    transform: translateX(0) translateY(0) translateZ(0) !important;
    margin: 0 !important;
}

.mobile-menu-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 40px;
    padding-bottom: 20px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.mobile-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
}

.mobile-logo .logo-img {
    height: 26px;
    width: auto;
}

.mobile-logo .logo-text {
    display: none; /* Hide text, show logo only */
}

.mobile-menu-close {
    background: transparent;
    border: none;
    color: #ffffff;
    font-size: 24px;
    cursor: pointer;
    padding: 5px;
    transition: color 0.3s ease;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
}

.mobile-menu-close:hover {
    color: #1DA1F2;
    background: rgba(29, 161, 242, 0.1);
}

.mobile-nav-links {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.mobile-nav-links li {
    margin: 0;
}

.mobile-nav-links a {
    display: block;
    color: #ffffff;
    text-decoration: none;
    font-size: 18px;
    padding: 15px 20px;
    border-radius: 10px;
    transition: background-color 0.3s ease, border-color 0.3s ease, color 0.3s ease;
    position: relative;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    /* No transforms or movement */
    transform: none;
}

.mobile-nav-links a:hover {
    background: rgba(29, 161, 242, 0.2);
    border-color: rgba(29, 161, 242, 0.5);
    color: #1DA1F2;
}

.mobile-nav-links a.active {
    background: rgba(29, 161, 242, 0.2);
    border-color: rgba(29, 161, 242, 0.5);
    color: #1DA1F2;
}

.mobile-cta-button {
    display: block;
    background: linear-gradient(135deg, #1DA1F2, #7856ff);
    border: none;
    padding: 15px 28px;
    border-radius: 30px;
    color: white;
    font-weight: 600;
    cursor: pointer;
    transition: box-shadow 0.3s ease;
    font-size: 16px;
    text-decoration: none;
    text-align: center;
    margin-top: 30px;
    /* No transforms or movement */
    transform: none;
}

.mobile-cta-button:hover {
    box-shadow: 0 10px 30px rgba(29, 161, 242, 0.4);
}

/* Hero Section */
.hero {
    position: relative;
    z-index: 1;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 120px 40px 80px;
    text-align: center;
    overflow: hidden;
}


.hero-content {
    position: relative;
    z-index: 2;
    max-width: 900px;
    animation: fadeInUp 1s ease-out;
}

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

.hero-title {
    font-size: clamp(32px, 5vw, 48px);
    font-weight: 900;
    line-height: 1.1;
    margin-bottom: 30px;
    background: linear-gradient(135deg, #ffffff, #a0a0a0);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: fadeInUp 1s ease-out 0.2s both;
    position: relative;
    overflow: visible;
}

.title-line-1 {
    white-space: nowrap;
    display: inline-block;
}

.title-line-2 {
    display: inline-block;
}

.ai-highlight {
    position: relative;
    display: inline-block;
    background: linear-gradient(135deg, #1DA1F2, #7856ff, #ff6b6b, #1DA1F2);
    background-size: 300% 300%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: colorShift 4s ease-in-out infinite;
    padding: 0 5px;
    overflow: hidden;
}


@keyframes colorShift {
    0% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
    100% {
        background-position: 0% 50%;
    }
}


.hero .subtitle {
    font-size: clamp(20px, 3vw, 28px);
    color: #8b8b8b;
    margin-bottom: 50px;
    line-height: 1.6;
    animation: fadeInUp 1s ease-out 0.4s both;
}

.hero-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
    animation: fadeInUp 1s ease-out 0.6s both;
}

.btn-primary {
    background: linear-gradient(135deg, #1DA1F2, #7856ff);
    border: none;
    padding: 18px 40px;
    border-radius: 30px;
    color: white;
    font-weight: 600;
    font-size: 18px;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.btn-primary::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}

.btn-primary:hover::before {
    width: 300px;
    height: 300px;
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(29, 161, 242, 0.5);
}

.btn-primary span {
    position: relative;
    z-index: 1;
}

.btn-secondary {
    background: transparent;
    border: 2px solid rgba(255, 255, 255, 0.3);
    padding: 18px 40px;
    border-radius: 30px;
    color: white;
    font-weight: 600;
    font-size: 18px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-secondary:hover {
    border-color: #1DA1F2;
    background: rgba(29, 161, 242, 0.1);
    transform: translateY(-3px);
}

/* About Section */
.about-section {
    position: relative;
    z-index: 1;
    padding: 100px 40px;
    max-width: 1400px;
    margin: 0 auto;
    scroll-margin-top: 100px;
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.about-container {
    text-align: center;
}

.about-title {
    font-size: clamp(36px, 5vw, 56px);
    font-weight: 800;
    margin-bottom: 60px;
    background: linear-gradient(135deg, #ffffff, #8b8b8b);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.about-text {
    text-align: left;
}

.about-description {
    font-size: clamp(16px, 2vw, 18px);
    line-height: 1.8;
    color: #b0b0b0;
    margin-bottom: 30px;
}

.about-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.stat-card {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    padding: 30px 20px;
    text-align: center;
    transition: all 0.3s ease;
}

.stat-card:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(29, 161, 242, 0.5);
    transform: translateY(-5px);
}

.stat-number {
    font-size: clamp(32px, 4vw, 48px);
    font-weight: 800;
    background: linear-gradient(135deg, #1DA1F2, #7856ff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 10px;
}

.stat-label {
    font-size: 14px;
    color: #8b8b8b;
    text-transform: uppercase;
    letter-spacing: 1px;
}

@media (max-width: 768px) {
    .about-section {
        padding: 60px 20px;
    }

    .about-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .about-stats {
        grid-template-columns: 1fr;
        gap: 20px;
    }
}

/* Features Section */
.features {
    position: relative;
    z-index: 1;
    padding: 100px 40px;
    max-width: 1400px;
    margin: 0 auto;
    scroll-margin-top: 100px;
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.features-title {
    text-align: center;
    font-size: clamp(36px, 5vw, 56px);
    font-weight: 800;
    margin-bottom: 80px;
    background: linear-gradient(135deg, #ffffff, #8b8b8b);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
}

.feature-card {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 40px;
    transition: all 0.4s ease;
    opacity: 1 !important;
    transform: translateY(0) !important;
}

.feature-card.visible {
    opacity: 1;
    transform: translateY(0);
}

.feature-card:hover {
    transform: translateY(-10px);
    border-color: rgba(29, 161, 242, 0.5);
    box-shadow: 0 20px 60px rgba(29, 161, 242, 0.2);
    background: rgba(255, 255, 255, 0.08);
}

.feature-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #1DA1F2, #7856ff);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    margin-bottom: 25px;
    animation: pulse 2s ease-in-out infinite;
    color: #ffffff;
}

.feature-icon i {
    font-size: 28px;
}

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

.feature-card h3 {
    font-size: 20px;
    margin-bottom: 15px;
    color: #ffffff;
}

.feature-card p {
    color: #8b8b8b;
    line-height: 1.6;
    font-size: 16px;
}

/* Floating Particles */
.particles {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    pointer-events: none;
}

.particle {
    position: absolute;
    width: 4px;
    height: 4px;
    background: rgba(29, 161, 242, 0.5);
    border-radius: 50%;
    animation: float-particle 15s infinite ease-in-out;
}

@keyframes float-particle {
    0% {
        transform: translateY(100vh) translateX(0) rotate(0deg);
        opacity: 0;
    }
    10% {
        opacity: 1;
    }
    90% {
        opacity: 1;
    }
    100% {
        transform: translateY(-100px) translateX(100px) rotate(360deg);
        opacity: 0;
    }
}

/* Responsive */
@media (max-width: 768px) {
    nav {
        padding: 10px 20px;
        width: 100%;
        max-width: 100vw;
    }

    .nav-container {
        display: flex;
        justify-content: space-between;
        align-items: center;
        gap: 20px;
        width: 100%;
    }

    .logo {
        flex-shrink: 0;
    }

    .nav-links {
        display: none;
    }

    .cta-button {
        display: none;
    }

    .mobile-menu-toggle {
        display: flex;
        flex-shrink: 0;
        margin-left: auto;
    }

    .mobile-menu {
        display: block;
    }

    .mobile-menu-content {
        position: fixed !important;
        top: 0 !important;
        right: 0 !important;
        left: auto !important;
        width: 320px !important;
        max-width: 100% !important;
        min-width: 320px !important;
        height: 100vh !important;
        transition: opacity 0.3s ease, visibility 0s 0.3s !important;
        transform: none !important;
        margin: 0 !important;
    }

    .mobile-menu.active .mobile-menu-content {
        position: fixed !important;
        top: 0 !important;
        right: 0 !important;
        left: auto !important;
        width: 320px !important;
        max-width: 100% !important;
        min-width: 320px !important;
        height: 100vh !important;
        transition: opacity 0.3s ease, visibility 0s 0s !important;
        transform: none !important;
        margin: 0 !important;
    }

    .hero {
        padding: 100px 20px 60px;
    }

    .hero-title {
        font-size: clamp(32px, 6vw, 60px);
    }

    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }

    .btn-primary,
    .btn-secondary {
        width: 100%;
        max-width: 300px;
    }

    .features {
        padding: 60px 20px;
    }

    .features-grid {
        grid-template-columns: 1fr;
    }
}

/* Scroll Animation */
@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

/* ============================================
   BLOG PAGE STYLES
   ============================================ */

/* Page Header (Blogs Page) */
.page-header {
    position: relative;
    z-index: 1;
    padding: 150px 40px 80px;
    text-align: center;
    animation: fadeInUp 1s ease-out;
}

.page-header h1 {
    font-size: clamp(48px, 8vw, 72px);
    font-weight: 900;
    line-height: 1.1;
    margin-bottom: 20px;
    background: linear-gradient(135deg, #ffffff, #a0a0a0);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.page-header p {
    font-size: clamp(18px, 2.5vw, 24px);
    color: #8b8b8b;
    max-width: 600px;
    margin: 0 auto;
}

/* Blogs Section */
.blogs-section {
    position: relative;
    z-index: 1;
    padding: 60px 40px 100px;
    max-width: 1400px;
    margin: 0 auto;
}

.blogs-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 40px;
    margin-top: 60px;
}

.blog-card {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
    text-decoration: none;
    color: inherit;
    display: block;
    opacity: 0;
    transform: translateY(50px) scale(0.9);
    animation: slideInUp 0.6s ease-out forwards;
}

@keyframes slideInUp {
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

.blog-card:nth-child(1) { animation-delay: 0.1s; }
.blog-card:nth-child(2) { animation-delay: 0.2s; }
.blog-card:nth-child(3) { animation-delay: 0.3s; }
.blog-card:nth-child(4) { animation-delay: 0.4s; }
.blog-card:nth-child(5) { animation-delay: 0.5s; }
.blog-card:nth-child(6) { animation-delay: 0.6s; }
.blog-card:nth-child(7) { animation-delay: 0.7s; }
.blog-card:nth-child(8) { animation-delay: 0.8s; }
.blog-card:nth-child(9) { animation-delay: 0.9s; }

.blog-card:hover {
    transform: translateY(-15px) scale(1.02);
    border-color: rgba(29, 161, 242, 0.5);
    box-shadow: 0 25px 70px rgba(29, 161, 242, 0.3);
    background: rgba(255, 255, 255, 0.08);
}

.blog-image {
    width: 100%;
    height: 220px;
    background: linear-gradient(135deg, #1DA1F2, #7856ff);
    position: relative;
    overflow: hidden;
}

.blog-image::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(29, 161, 242, 0.8), rgba(120, 86, 255, 0.8));
    opacity: 0.7;
}

.blog-image::after {
    content: '\f15c';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 80px;
    opacity: 0.3;
}

.blog-content {
    padding: 30px;
}

.blog-category {
    display: inline-block;
    background: linear-gradient(135deg, #1DA1F2, #7856ff);
    color: white;
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    margin-bottom: 15px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.blog-card h3 {
    font-size: 24px;
    margin-bottom: 12px;
    color: #ffffff;
    line-height: 1.3;
    transition: color 0.3s ease;
}

.blog-card:hover h3 {
    color: #1DA1F2;
}

.blog-excerpt {
    color: #8b8b8b;
    line-height: 1.6;
    font-size: 15px;
    margin-bottom: 20px;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.blog-meta {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    font-size: 13px;
    color: #8b8b8b;
}

.blog-date {
    display: flex;
    align-items: center;
    gap: 8px;
}

.blog-read-time {
    display: flex;
    align-items: center;
    gap: 8px;
}

.read-more {
    color: #1DA1F2;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: gap 0.3s ease;
}

.blog-card:hover .read-more {
    gap: 12px;
}

/* ============================================
   BLOG DETAIL PAGE STYLES
   ============================================ */

/* Blog Detail Container */
.blog-detail-container {
    position: relative;
    z-index: 1;
    max-width: 900px;
    margin: 0 auto;
    padding: 140px 40px 100px;
}

.back-button {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: #1DA1F2;
    text-decoration: none;
    font-weight: 600;
    margin-bottom: 40px;
    transition: gap 0.3s ease;
    animation: fadeInUp 0.6s ease-out;
}

.back-button:hover {
    gap: 15px;
}

.blog-header {
    margin-bottom: 50px;
    animation: fadeInUp 0.8s ease-out 0.2s both;
}

.blog-title {
    font-size: clamp(36px, 6vw, 56px);
    font-weight: 900;
    line-height: 1.2;
    margin-bottom: 25px;
    background: linear-gradient(135deg, #ffffff, #a0a0a0);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.blog-meta-item {
    display: flex;
    align-items: center;
    gap: 8px;
}

.blog-detail-container .blog-image {
    width: 100%;
    height: 400px;
    background: linear-gradient(135deg, #1DA1F2, #7856ff);
    border-radius: 20px;
    margin: 50px 0;
    position: relative;
    overflow: hidden;
    animation: fadeInUp 1s ease-out 0.4s both;
}

.blog-detail-container .blog-image::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(29, 161, 242, 0.8), rgba(120, 86, 255, 0.8));
}

.blog-detail-container .blog-image::after {
    content: '\f544';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 120px;
    opacity: 0.3;
}

.blog-detail-container .blog-content {
    animation: fadeInUp 1s ease-out 0.6s both;
}

.blog-detail-container .blog-content p {
    font-size: 18px;
    color: #d0d0d0;
    margin-bottom: 25px;
    line-height: 1.9;
}

.blog-detail-container .blog-content h2 {
    font-size: 32px;
    font-weight: 800;
    margin: 50px 0 25px;
    color: #ffffff;
    background: linear-gradient(135deg, #ffffff, #a0a0a0);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.blog-detail-container .blog-content h3 {
    font-size: 24px;
    font-weight: 700;
    margin: 40px 0 20px;
    color: #ffffff;
}

.blog-detail-container .blog-content ul,
.blog-detail-container .blog-content ol {
    margin: 25px 0;
    padding-left: 30px;
    color: #d0d0d0;
}

.blog-detail-container .blog-content li {
    margin-bottom: 15px;
    font-size: 18px;
    line-height: 1.8;
}

.blog-detail-container .blog-content blockquote {
    border-left: 4px solid #1DA1F2;
    padding-left: 30px;
    margin: 40px 0;
    font-style: italic;
    color: #8b8b8b;
    font-size: 20px;
}

.blog-detail-container .blog-content code {
    background: rgba(255, 255, 255, 0.1);
    padding: 2px 8px;
    border-radius: 4px;
    font-family: 'Courier New', monospace;
    font-size: 16px;
}

.blog-detail-container .blog-content pre {
    background: rgba(255, 255, 255, 0.05);
    padding: 25px;
    border-radius: 10px;
    overflow-x: auto;
    margin: 30px 0;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.blog-detail-container .blog-content pre code {
    background: none;
    padding: 0;
}

.blog-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 50px;
    padding-top: 40px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.blog-tag {
    background: rgba(29, 161, 242, 0.2);
    color: #1DA1F2;
    padding: 8px 18px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 600;
    border: 1px solid rgba(29, 161, 242, 0.3);
    transition: all 0.3s ease;
}

.blog-tag:hover {
    background: rgba(29, 161, 242, 0.3);
    transform: translateY(-2px);
}

.blog-navigation {
    display: flex;
    justify-content: space-between;
    margin-top: 80px;
    padding-top: 40px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.nav-link {
    display: flex;
    flex-direction: column;
    gap: 10px;
    color: #ffffff;
    text-decoration: none;
    padding: 20px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 15px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
    max-width: 45%;
}

.nav-link:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(29, 161, 242, 0.5);
    transform: translateY(-5px);
}

.nav-link-label {
    font-size: 12px;
    color: #8b8b8b;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.nav-link-title {
    font-size: 16px;
    font-weight: 600;
    color: #1DA1F2;
}

/* Blog Page Responsive */
@media (max-width: 768px) {
    .page-header {
        padding: 120px 20px 60px;
    }

    .blogs-section {
        padding: 40px 20px 80px;
    }

    .blogs-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .blog-detail-container {
        padding: 120px 20px 80px;
    }

    .blog-detail-container .blog-image {
        height: 250px;
    }

    .blog-detail-container .blog-content p {
        font-size: 16px;
    }

    .blog-detail-container .blog-content h2 {
        font-size: 28px;
    }

    .blog-detail-container .blog-content h3 {
        font-size: 22px;
    }

    .blog-navigation {
        flex-direction: column;
        gap: 20px;
    }

    .nav-link {
        max-width: 100%;
    }
}

/* ============================================
   CONTACT PAGE STYLES
   ============================================ */

.contact-section {
    position: relative;
    z-index: 1;
    padding: 60px 40px 100px;
    max-width: 1400px;
    margin: 0 auto;
}

.contact-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    margin-top: 60px;
}

.contact-form-wrapper,
.contact-info-wrapper {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 40px;
}

.contact-form-wrapper h2,
.contact-info-wrapper h2 {
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 30px;
    background: linear-gradient(135deg, #ffffff, #a0a0a0);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.form-group label {
    color: #ffffff;
    font-weight: 600;
    font-size: 15px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.form-group label i {
    color: #1DA1F2;
    font-size: 16px;
}

.form-group input,
.form-group textarea {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    padding: 15px 20px;
    color: #ffffff;
    font-size: 15px;
    font-family: inherit;
    transition: all 0.3s ease;
    outline: none;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: #8b8b8b;
}

.form-group input:focus,
.form-group textarea:focus {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(29, 161, 242, 0.5);
    box-shadow: 0 0 0 3px rgba(29, 161, 242, 0.1);
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

.contact-form .btn-primary {
    margin-top: 10px;
    width: 100%;
    justify-content: center;
}

.contact-info-list {
    display: flex;
    flex-direction: column;
    gap: 30px;
    margin-bottom: 40px;
}

.contact-info-item {
    display: flex;
    gap: 20px;
    align-items: flex-start;
}

.info-icon {
    width: 50px;
    height: 50px;
    border-radius: 12px;
    background: linear-gradient(135deg, #1DA1F2, #7856ff);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    font-size: 20px;
    flex-shrink: 0;
    box-shadow: 0 5px 20px rgba(29, 161, 242, 0.3);
}

.info-content h3 {
    color: #ffffff;
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 8px;
}

.info-content p {
    color: #8b8b8b;
    font-size: 15px;
    line-height: 1.6;
    margin: 4px 0;
}

.social-contact {
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.social-contact h3 {
    color: #ffffff;
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 20px;
}

.social-contact .footer-social {
    justify-content: flex-start;
}

/* Contact Page Responsive */
@media (max-width: 968px) {
    .contact-container {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .contact-form-wrapper,
    .contact-info-wrapper {
        padding: 30px;
    }
}

@media (max-width: 768px) {
    .contact-section {
        padding: 40px 20px 80px;
    }

    .contact-form-wrapper,
    .contact-info-wrapper {
        padding: 25px;
    }

    .contact-info-item {
        flex-direction: column;
        gap: 15px;
    }

    .info-icon {
        width: 45px;
        height: 45px;
        font-size: 18px;
    }
}

/* ============================================
   FOOTER STYLES
   ============================================ */

footer {
    position: relative;
    z-index: 1;
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(10px);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding: 60px 40px 30px;
    margin-top: 100px;
}

.footer-container {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 50px;
    margin-bottom: 40px;
}

.footer-brand {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
    margin-bottom: 10px;
}

.footer-logo-img {
    height: 32px;
    width: auto;
    display: block;
    transition: transform 0.3s ease;
}

.footer-logo:hover .footer-logo-img {
    transform: scale(1.05);
}

.footer-logo-text {
    display: none; /* Hide text, show logo only */
}

.footer-description {
    color: #8b8b8b;
    line-height: 1.6;
    font-size: 15px;
    max-width: 300px;
}

.footer-social {
    display: flex;
    gap: 15px;
    margin-top: 10px;
}

.social-link {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 18px;
}

.social-link:hover {
    background: linear-gradient(135deg, #1DA1F2, #7856ff);
    border-color: transparent;
    transform: translateY(-3px);
    box-shadow: 0 5px 20px rgba(29, 161, 242, 0.4);
}

.footer-section h3 {
    font-size: 18px;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 20px;
    position: relative;
    padding-bottom: 10px;
}

.footer-section h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 2px;
    background: linear-gradient(90deg, #1DA1F2, #7856ff);
}

.footer-links {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-links a {
    color: #8b8b8b;
    text-decoration: none;
    font-size: 15px;
    transition: all 0.3s ease;
    display: inline-block;
    position: relative;
    padding-left: 0;
}

.footer-links a::before {
    content: '\f061';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    position: absolute;
    left: -20px;
    opacity: 0;
    transition: all 0.3s ease;
    color: #1DA1F2;
}

.footer-links a:hover {
    color: #1DA1F2;
    padding-left: 20px;
}

.footer-links a:hover::before {
    opacity: 1;
    left: 0;
}

.footer-contact {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 12px;
    color: #8b8b8b;
    font-size: 15px;
    margin-bottom: 12px;
    transition: transform 0.3s ease;
}

.contact-item:hover {
    transform: translateX(5px);
}

.contact-icon {
    color: #1DA1F2;
    font-size: 18px;
    width: 24px;
    text-align: center;
    transition: all 0.3s ease;
    filter: drop-shadow(0 0 3px rgba(29, 161, 242, 0.5));
}

.contact-item:hover .contact-icon {
    color: #7856ff;
    transform: scale(1.2);
    filter: drop-shadow(0 0 8px rgba(120, 86, 255, 0.8));
}

.contact-text {
    color: #8b8b8b;
    text-shadow: 
        -1px -1px 0 rgba(0, 0, 0, 0.5),
        1px -1px 0 rgba(0, 0, 0, 0.5),
        -1px 1px 0 rgba(0, 0, 0, 0.5),
        1px 1px 0 rgba(0, 0, 0, 0.5);
    animation: textMove 3s ease-in-out infinite;
    position: relative;
}

@keyframes textMove {
    0%, 100% {
        transform: translateX(0);
    }
    50% {
        transform: translateX(3px);
    }
}

.contact-item:hover .contact-text {
    color: #ffffff;
    text-shadow: 
        -1px -1px 0 rgba(29, 161, 242, 0.8),
        1px -1px 0 rgba(29, 161, 242, 0.8),
        -1px 1px 0 rgba(29, 161, 242, 0.8),
        1px 1px 0 rgba(29, 161, 242, 0.8),
        0 0 10px rgba(29, 161, 242, 0.5);
    animation: textMoveHover 2s ease-in-out infinite;
}

@keyframes textMoveHover {
    0%, 100% {
        transform: translateX(0);
    }
    25% {
        transform: translateX(2px);
    }
    75% {
        transform: translateX(-2px);
    }
}

.footer-bottom {
    max-width: 1400px;
    margin: 0 auto;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.footer-copyright {
    color: #8b8b8b;
    font-size: 14px;
}

.footer-legal {
    display: flex;
    gap: 25px;
    flex-wrap: wrap;
}

.footer-legal a {
    color: #8b8b8b;
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s ease;
}

.footer-legal a:hover {
    color: #1DA1F2;
}

/* Footer Responsive */
@media (max-width: 768px) {
    footer {
        padding: 40px 20px 20px;
        margin-top: 60px;
    }

    .footer-container {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .footer-bottom {
        flex-direction: column;
        text-align: center;
        gap: 15px;
    }

    .footer-legal {
        justify-content: center;
    }
}

/* ============================================
   PARTNERS SECTION STYLES
   ============================================ */

.partners-section {
    position: relative;
    z-index: 1;
    padding: 100px 40px;
    max-width: 1400px;
    margin: 0 auto;
}

.partners-container {
    text-align: center;
}

.partners-title {
    font-size: clamp(36px, 5vw, 56px);
    font-weight: 800;
    margin-bottom: 20px;
    background: linear-gradient(135deg, #ffffff, #a0a0a0);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.partners-subtitle {
    font-size: clamp(16px, 2vw, 20px);
    color: #8b8b8b;
    margin-bottom: 60px;
}

.partners-marquee {
    overflow: hidden;
    width: 100%;
    position: relative;
    padding: 40px 0;
    mask-image: linear-gradient(to right, transparent, black 10%, black 90%, transparent);
    -webkit-mask-image: linear-gradient(to right, transparent, black 10%, black 90%, transparent);
}

.partners-track {
    display: flex;
    gap: 60px;
    animation: scrollPartners 30s linear infinite;
    width: fit-content;
}

@keyframes scrollPartners {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}

.partner-card {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 40px 60px;
    transition: all 0.4s ease;
    cursor: pointer;
    flex-shrink: 0;
    min-width: 280px;
}

.partner-card:hover {
    transform: translateY(-10px) scale(1.05);
    border-color: rgba(29, 161, 242, 0.5);
    box-shadow: 0 20px 60px rgba(29, 161, 242, 0.2);
    background: rgba(255, 255, 255, 0.08);
}

.partner-logo {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%;
    min-height: 120px;
    padding: 15px;
}

.partner-img {
    max-width: 100%;
    max-height: 100px;
    width: auto;
    height: auto;
    object-fit: contain;
    opacity: 0.7;
    transition: all 0.4s ease;
    filter: brightness(0) invert(1) opacity(0.7) drop-shadow(0 2px 10px rgba(255, 255, 255, 0.1));
}

.partner-card:hover .partner-img {
    opacity: 0.9;
    transform: scale(1.15);
    filter: brightness(0) invert(1) opacity(0.9) drop-shadow(0 4px 20px rgba(29, 161, 242, 0.4));
}

/* Make 5BB logo bigger */
.partner-img[alt="5BB Logo"] {
    max-height: 130px;
    opacity: 0.75;
    filter: brightness(0) invert(1) opacity(0.75) drop-shadow(0 2px 10px rgba(255, 255, 255, 0.1));
}

.partner-card:hover .partner-img[alt="5BB Logo"] {
    max-height: 145px;
    opacity: 0.95;
    filter: brightness(0) invert(1) opacity(0.95) drop-shadow(0 4px 20px rgba(29, 161, 242, 0.4));
}

/* Partners Section Responsive */
@media (max-width: 768px) {
    .partners-section {
        padding: 60px 20px;
    }

    .partners-marquee {
        padding: 30px 0;
    }

    .partners-track {
        gap: 40px;
        animation-duration: 20s;
    }

    .partner-card {
        padding: 40px 50px;
        min-width: 250px;
    }

    .partner-logo {
        min-height: 100px;
    }

    .partner-img {
        max-height: 80px;
    }

    .partner-img[alt="5BB Logo"] {
        max-height: 100px;
    }

    .partner-card:hover .partner-img[alt="5BB Logo"] {
        max-height: 110px;
    }
}

/* ============================================
   PORTFOLIO STYLE STYLES
   ============================================ */

/* Hero Badge */
.hero-badge {
    display: inline-block;
    padding: 8px 20px;
    background: rgba(29, 161, 242, 0.15);
    border: 1px solid rgba(29, 161, 242, 0.3);
    border-radius: 30px;
    color: #1DA1F2;
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 30px;
    animation: fadeInUp 1s ease-out 0.1s both;
}

.hero-subtitle {
    font-size: clamp(24px, 4vw, 36px);
    color: #b0b0b0;
    margin-bottom: 25px;
    font-weight: 500;
    animation: fadeInUp 1s ease-out 0.3s both;
}

.hero-description {
    font-size: clamp(14px, 1.8vw, 16px);
    color: #8b8b8b;
    line-height: 1.8;
    max-width: 800px;
    margin: 0 auto 20px;
    animation: fadeInUp 1s ease-out 0.5s both;
}

.hero-support {
    font-size: clamp(14px, 1.8vw, 16px);
    color: #6b6b6b;
    line-height: 1.7;
    max-width: 800px;
    margin: 0 auto 40px;
    animation: fadeInUp 1s ease-out 0.7s both;
}

.hero-support strong {
    color: #1DA1F2;
    font-weight: 600;
}

/* Projects Section */
.projects-section {
    position: relative;
    z-index: 1;
    padding: 80px 40px;
    max-width: 1400px;
    margin: 0 auto;
}

.project-card {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 25px;
    padding: 60px 50px;
    text-align: center;
    transition: all 0.4s ease;
}

.project-card.featured-project {
    max-width: 1000px;
    margin: 0 auto;
}

.project-card:hover {
    transform: translateY(-5px);
    border-color: rgba(29, 161, 242, 0.5);
    box-shadow: 0 20px 60px rgba(29, 161, 242, 0.2);
    background: rgba(255, 255, 255, 0.08);
}

.project-badge {
    display: inline-block;
    padding: 8px 20px;
    background: rgba(29, 161, 242, 0.2);
    border: 1px solid rgba(29, 161, 242, 0.4);
    border-radius: 25px;
    color: #1DA1F2;
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 25px;
}

.project-card h2 {
    font-size: clamp(24px, 3vw, 32px);
    font-weight: 800;
    margin-bottom: 25px;
    background: linear-gradient(135deg, #ffffff, #a0a0a0);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.project-card p {
    font-size: 18px;
    line-height: 1.8;
    color: #8b8b8b;
    margin-bottom: 30px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.project-link {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: #1DA1F2;
    font-size: 16px;
    font-weight: 600;
    text-decoration: none;
    transition: gap 0.3s ease;
}

.project-link:hover {
    gap: 15px;
}

.project-link i {
    transition: transform 0.3s ease;
}

.project-link:hover i {
    transform: translateX(5px);
}

/* Programs Grid */
.programs-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 60px;
}

.program-card {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 40px 30px;
    text-align: center;
    transition: all 0.4s ease;
}

.program-card:hover {
    transform: translateY(-10px);
    border-color: rgba(29, 161, 242, 0.5);
    box-shadow: 0 20px 60px rgba(29, 161, 242, 0.2);
    background: rgba(255, 255, 255, 0.08);
}

.program-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, #1DA1F2, #7856ff);
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    margin: 0 auto 25px;
    color: #ffffff;
}

.program-card h3 {
    font-size: 18px;
    margin-bottom: 15px;
    color: #ffffff;
}

.program-card p {
    color: #8b8b8b;
    line-height: 1.7;
    font-size: 15px;
}

.section-subtitle {
    font-size: 16px;
    color: #8b8b8b;
    line-height: 1.8;
    max-width: 800px;
    margin: 20px auto 0;
}

/* How It Works Section */
.how-it-works-section {
    position: relative;
    z-index: 1;
    padding: 120px 40px;
    max-width: 1400px;
    margin: 0 auto;
    background: rgba(255, 255, 255, 0.02);
}

.how-it-works-container {
    max-width: 1200px;
    margin: 0 auto;
}

.how-it-works-layout {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 80px;
    align-items: center;
}

.how-it-works-left {
    display: flex;
    justify-content: center;
    align-items: center;
}

.ai-visual-container {
    position: relative;
    width: 100%;
    max-width: 500px;
    aspect-ratio: 1;
}

.ai-network-visual {
    position: relative;
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.network-center {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 3;
}

.network-core {
    width: 120px;
    height: 120px;
    background: linear-gradient(135deg, #1DA1F2, #7856ff);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 48px;
    color: #ffffff;
    box-shadow: 0 0 40px rgba(29, 161, 242, 0.6);
    position: relative;
    z-index: 2;
    animation: core-pulse 3s ease-in-out infinite;
}

@keyframes core-pulse {
    0%, 100% {
        transform: scale(1);
        box-shadow: 0 0 40px rgba(29, 161, 242, 0.6);
    }
    50% {
        transform: scale(1.1);
        box-shadow: 0 0 60px rgba(29, 161, 242, 0.8);
    }
}

.network-pulse {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 120px;
    height: 120px;
    border: 2px solid rgba(29, 161, 242, 0.5);
    border-radius: 50%;
    animation: pulse-ring 2s ease-out infinite;
}

@keyframes pulse-ring {
    0% {
        transform: translate(-50%, -50%) scale(1);
        opacity: 1;
    }
    100% {
        transform: translate(-50%, -50%) scale(2);
        opacity: 0;
    }
}

.network-node {
    position: absolute;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    animation: node-float 4s ease-in-out infinite;
}

.node-icon {
    width: 70px;
    height: 70px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 2px solid rgba(29, 161, 242, 0.5);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    color: #1DA1F2;
    box-shadow: 0 0 20px rgba(29, 161, 242, 0.4);
    transition: all 0.3s ease;
}

.network-node:hover .node-icon {
    background: rgba(29, 161, 242, 0.2);
    transform: scale(1.1);
    box-shadow: 0 0 30px rgba(29, 161, 242, 0.6);
}

.node-label {
    font-size: 12px;
    color: #8b8b8b;
    text-align: center;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.node-1 {
    top: 10%;
    left: 50%;
    transform: translateX(-50%);
    animation-delay: 0s;
}

.node-2 {
    bottom: 20%;
    left: 10%;
    animation-delay: 1s;
}

.node-3 {
    bottom: 20%;
    right: 10%;
    animation-delay: 2s;
}

@keyframes node-float {
    0%, 100% {
        transform: translateY(0) translateX(-50%);
    }
    50% {
        transform: translateY(-10px) translateX(-50%);
    }
}

.node-2,
.node-3 {
    animation-name: node-float-alt;
}

@keyframes node-float-alt {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-10px);
    }
}

.connection-line {
    position: absolute;
    width: 2px;
    height: 100px;
    background: linear-gradient(180deg, rgba(29, 161, 242, 0.3), transparent);
    top: -110px;
    left: 50%;
    transform: translateX(-50%);
    animation: connection-pulse 2s ease-in-out infinite;
}

@keyframes connection-pulse {
    0%, 100% {
        opacity: 0.3;
    }
    50% {
        opacity: 0.8;
    }
}

.connection-svg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    opacity: 0.3;
}

.connection-path {
    stroke: rgba(29, 161, 242, 0.5);
    stroke-width: 2;
    fill: none;
    stroke-dasharray: 5, 5;
    animation: dash-move 3s linear infinite;
}

@keyframes dash-move {
    0% {
        stroke-dashoffset: 0;
    }
    100% {
        stroke-dashoffset: 20;
    }
}

/* How It Works Right Side */
.how-it-works-right {
    display: flex;
    flex-direction: column;
    gap: 50px;
}

.section-header-left {
    text-align: left;
}

.section-header-left .section-title {
    text-align: left;
}

.section-header-left .section-intro {
    text-align: left;
    margin: 15px 0 10px;
}

.section-header-left .section-subtitle {
    text-align: left;
    margin: 0;
}

.how-it-works-steps {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.how-it-works-step {
    display: flex;
    gap: 25px;
    align-items: flex-start;
    padding: 30px;
    background: rgba(255, 255, 255, 0.03);
    border-left: 4px solid rgba(29, 161, 242, 0.3);
    border-radius: 0 15px 15px 0;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.how-it-works-step::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 4px;
    background: linear-gradient(180deg, #1DA1F2, #7856ff);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.how-it-works-step:hover {
    background: rgba(255, 255, 255, 0.06);
    border-left-color: #1DA1F2;
    transform: translateX(10px);
    box-shadow: 0 10px 40px rgba(29, 161, 242, 0.1);
}

.how-it-works-step:hover::before {
    opacity: 1;
}

.step-number {
    font-size: 48px;
    font-weight: 900;
    background: linear-gradient(135deg, #1DA1F2, #7856ff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1;
    flex-shrink: 0;
    min-width: 60px;
}

.step-content {
    flex: 1;
}

.step-content h3 {
    font-size: 20px;
    margin-bottom: 12px;
    color: #ffffff;
}

.step-content p {
    color: #8b8b8b;
    line-height: 1.8;
    font-size: 16px;
    margin: 0;
}

/* Results/Stats Section */
.results-section {
    position: relative;
    z-index: 1;
    padding: 100px 40px;
    max-width: 1400px;
    margin: 0 auto;
    background: rgba(255, 255, 255, 0.02);
}

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

.stat-item {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 50px 30px;
    text-align: center;
    transition: all 0.4s ease;
}

.stat-item:hover {
    transform: translateY(-10px);
    border-color: rgba(29, 161, 242, 0.5);
    box-shadow: 0 20px 60px rgba(29, 161, 242, 0.2);
    background: rgba(255, 255, 255, 0.08);
}

.stat-item .stat-number {
    font-size: clamp(48px, 6vw, 72px);
    font-weight: 900;
    background: linear-gradient(135deg, #1DA1F2, #7856ff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 15px;
    line-height: 1;
}

.stat-item .stat-label {
    font-size: 20px;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 10px;
}

.stat-item p {
    color: #8b8b8b;
    font-size: 15px;
    line-height: 1.6;
    margin: 0;
}

/* Portfolio Section */
.portfolio-section {
    position: relative;
    z-index: 1;
    padding: 120px 40px;
    max-width: 1400px;
    margin: 0 auto;
    scroll-margin-top: 100px;
}

.portfolio-section-alt {
    background: rgba(255, 255, 255, 0.02);
    border-radius: 0;
}

.portfolio-container {
    max-width: 1200px;
    margin: 0 auto;
}

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

.section-label {
    display: inline-block;
    padding: 6px 18px;
    background: rgba(29, 161, 242, 0.15);
    border: 1px solid rgba(29, 161, 242, 0.3);
    border-radius: 20px;
    color: #1DA1F2;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 20px;
}

.section-title {
    font-size: clamp(28px, 4vw, 42px);
    font-weight: 800;
    margin-bottom: 25px;
    background: linear-gradient(135deg, #ffffff, #a0a0a0);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.section-intro {
    font-size: clamp(14px, 1.8vw, 16px);
    color: #8b8b8b;
    line-height: 1.8;
    max-width: 700px;
    margin: 0 auto;
}

/* Purpose Layout */
.purpose-layout {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 60px;
    align-items: center;
    margin-top: 60px;
}

.purpose-left {
    display: flex;
    justify-content: center;
    align-items: center;
}

.ai-head-container {
    position: relative;
    width: 100%;
    max-width: 400px;
    aspect-ratio: 1;
    margin: 0 auto;
}

.ai-head {
    position: relative;
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    min-width: 200px;
}

.ai-head-face {
    position: relative;
    width: 280px;
    height: 280px;
    max-width: 100%;
    aspect-ratio: 1;
    background: linear-gradient(135deg, rgba(29, 161, 242, 0.2), rgba(120, 86, 255, 0.2));
    border-radius: 50%;
    border: 3px solid rgba(29, 161, 242, 0.5);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    z-index: 2;
    animation: float 6s ease-in-out infinite;
    margin: 0 auto;
}

@keyframes float {
    0%, 100% {
        transform: translateY(0) rotate(0deg);
    }
    50% {
        transform: translateY(-20px) rotate(5deg);
    }
}

.ai-eye {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #1DA1F2, #7856ff);
    border-radius: 50%;
    position: absolute;
    top: 35%;
    transform: translateY(-50%);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 0 20px rgba(29, 161, 242, 0.6);
    animation: blink 4s infinite;
}

@keyframes blink {
    0%, 90%, 100% {
        height: 50px;
    }
    95% {
        height: 5px;
    }
}

.ai-eye.left-eye {
    left: calc(50% - 35px);
    transform: translateX(-50%) translateY(-50%);
}

.ai-eye.right-eye {
    left: calc(50% + 35px);
    transform: translateX(-50%) translateY(-50%);
}

.ai-pupil {
    width: 20px;
    height: 20px;
    background: #000;
    border-radius: 50%;
    animation: lookAround 8s infinite;
}

@keyframes lookAround {
    0%, 100% {
        transform: translate(0, 0);
    }
    25% {
        transform: translate(8px, -5px);
    }
    50% {
        transform: translate(-8px, 5px);
    }
    75% {
        transform: translate(5px, 8px);
    }
}

.ai-mouth {
    position: absolute;
    bottom: 30%;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 40px;
    border: 3px solid rgba(29, 161, 242, 0.8);
    border-top: none;
    border-radius: 0 0 80px 80px;
    animation: smile 3s ease-in-out infinite;
}

@keyframes smile {
    0%, 100% {
        width: 80px;
        height: 40px;
    }
    50% {
        width: 100px;
        height: 50px;
    }
}

.ai-head-glow {
    position: absolute;
    width: 320px;
    height: 320px;
    max-width: 114%;
    max-height: 114%;
    background: radial-gradient(circle, rgba(29, 161, 242, 0.3), transparent 70%);
    border-radius: 50%;
    z-index: 1;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    animation: pulse-glow 3s ease-in-out infinite;
}

@keyframes pulse-glow {
    0%, 100% {
        transform: translate(-50%, -50%) scale(1);
        opacity: 0.6;
    }
    50% {
        transform: translate(-50%, -50%) scale(1.2);
        opacity: 0.3;
    }
}

.ai-head-particles {
    position: absolute;
    width: 100%;
    height: 100%;
    z-index: 0;
}

.ai-head-particles .particle {
    position: absolute;
    width: 8px;
    height: 8px;
    background: linear-gradient(135deg, #1DA1F2, #7856ff);
    border-radius: 50%;
    opacity: 0.6;
    animation: orbit 10s linear infinite;
}

.ai-head-particles .particle:nth-child(1) {
    top: 10%;
    left: 50%;
    animation-delay: 0s;
    animation-duration: 8s;
}

.ai-head-particles .particle:nth-child(2) {
    top: 50%;
    right: 10%;
    animation-delay: -2s;
    animation-duration: 10s;
}

.ai-head-particles .particle:nth-child(3) {
    bottom: 10%;
    left: 50%;
    animation-delay: -4s;
    animation-duration: 12s;
}

.ai-head-particles .particle:nth-child(4) {
    top: 50%;
    left: 10%;
    animation-delay: -6s;
    animation-duration: 9s;
}

.ai-head-particles .particle:nth-child(5) {
    top: 20%;
    right: 20%;
    animation-delay: -1s;
    animation-duration: 11s;
}

@keyframes orbit {
    0% {
        transform: rotate(0deg) translateX(150px) rotate(0deg);
    }
    100% {
        transform: rotate(360deg) translateX(150px) rotate(-360deg);
    }
}

/* Purpose List */
.purpose-right {
    display: flex;
    align-items: center;
}

.purpose-list {
    display: flex;
    flex-direction: column;
    gap: 25px;
    width: 100%;
}

.purpose-list-item {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    padding: 25px 30px;
    display: flex;
    align-items: flex-start;
    gap: 20px;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.purpose-list-item::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 4px;
    background: linear-gradient(180deg, #1DA1F2, #7856ff);
    border-radius: 15px 0 0 15px;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.purpose-list-item:hover {
    transform: translateX(10px);
    border-color: rgba(29, 161, 242, 0.5);
    box-shadow: 0 10px 40px rgba(29, 161, 242, 0.2);
    background: rgba(255, 255, 255, 0.08);
}

.purpose-list-item:hover::before {
    opacity: 1;
}

.purpose-list-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #1DA1F2, #7856ff);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    color: #ffffff;
    flex-shrink: 0;
    transition: all 0.3s ease;
}

.purpose-list-item:hover .purpose-list-icon {
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 5px 20px rgba(29, 161, 242, 0.4);
}

.purpose-list-content {
    flex: 1;
}

.purpose-list-content h3 {
    font-size: 18px;
    margin-bottom: 10px;
    color: #ffffff;
}

.purpose-list-content p {
    color: #8b8b8b;
    line-height: 1.7;
    font-size: 15px;
    margin: 0;
}

.purpose-belief {
    background: rgba(29, 161, 242, 0.1);
    border-left: 4px solid #1DA1F2;
    border-radius: 15px;
    padding: 30px 40px;
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
}

.purpose-belief p {
    font-size: 18px;
    line-height: 1.8;
    color: #b0b0b0;
    font-style: italic;
    margin: 0;
}

.purpose-belief i {
    color: #1DA1F2;
    opacity: 0.5;
    font-size: 20px;
}

/* Shwenyan List Layout */
.shwenyan-list {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: start;
}

.shwenyan-intro {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 25px;
    padding: 50px 40px;
    position: relative;
    overflow: hidden;
    position: sticky;
    top: 120px;
}

.shwenyan-intro::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #1DA1F2, #7856ff);
}

.shwenyan-badge {
    display: inline-block;
    padding: 6px 16px;
    background: rgba(29, 161, 242, 0.2);
    border: 1px solid rgba(29, 161, 242, 0.4);
    border-radius: 20px;
    color: #1DA1F2;
    font-size: 12px;
    font-weight: 600;
    margin-bottom: 25px;
}

.shwenyan-intro h3 {
    font-size: 32px;
    margin-bottom: 20px;
    color: #ffffff;
}

.shwenyan-intro p {
    color: #8b8b8b;
    line-height: 1.8;
    font-size: 16px;
}

.shwenyan-list-items {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.shwenyan-list-item {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    padding: 30px;
    display: flex;
    align-items: flex-start;
    gap: 25px;
    transition: all 0.3s ease;
    position: relative;
}

.shwenyan-list-item::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 4px;
    background: linear-gradient(180deg, #1DA1F2, #7856ff);
    border-radius: 15px 0 0 15px;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.shwenyan-list-item:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(29, 161, 242, 0.5);
    transform: translateX(10px);
}

.shwenyan-list-item:hover::before {
    opacity: 1;
}

.shwenyan-list-number {
    font-size: 24px;
    font-weight: 900;
    background: linear-gradient(135deg, #1DA1F2, #7856ff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    min-width: 40px;
    flex-shrink: 0;
}

.shwenyan-list-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #1DA1F2, #7856ff);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    color: #ffffff;
    flex-shrink: 0;
}

.shwenyan-list-content {
    flex: 1;
}

.shwenyan-list-content h4 {
    font-size: 20px;
    margin-bottom: 10px;
    color: #ffffff;
}

.shwenyan-list-content p {
    color: #8b8b8b;
    font-size: 15px;
    line-height: 1.7;
    margin: 0;
}

/* Applications Grid */
.applications-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-bottom: 50px;
}

.application-card {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 40px;
    text-align: center;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.application-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, #1DA1F2, #7856ff);
    transform: scaleX(0);
    transition: transform 0.4s ease;
}

.application-card:hover::before {
    transform: scaleX(1);
}

.application-card:hover {
    transform: translateY(-8px);
    border-color: rgba(29, 161, 242, 0.5);
    box-shadow: 0 20px 50px rgba(29, 161, 242, 0.2);
    background: rgba(255, 255, 255, 0.08);
}

.application-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #1DA1F2, #7856ff);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 36px;
    margin: 0 auto 25px;
    color: #ffffff;
}

.application-card h3 {
    font-size: 20px;
    margin-bottom: 15px;
    color: #ffffff;
}

.application-card p {
    color: #8b8b8b;
    line-height: 1.7;
    font-size: 15px;
}

.application-note {
    background: rgba(29, 161, 242, 0.1);
    border: 1px solid rgba(29, 161, 242, 0.3);
    border-radius: 15px;
    padding: 20px 30px;
    display: flex;
    align-items: center;
    gap: 15px;
    max-width: 800px;
    margin: 0 auto;
}

.application-note i {
    color: #1DA1F2;
    font-size: 24px;
    flex-shrink: 0;
}

.application-note p {
    color: #b0b0b0;
    font-size: 15px;
    margin: 0;
    line-height: 1.6;
}

.application-note strong {
    color: #ffffff;
}

/* Principles List Layout */
.principles-list {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.principles-list-item {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    padding: 30px;
    display: flex;
    align-items: flex-start;
    gap: 25px;
    transition: all 0.3s ease;
    position: relative;
}

.principles-list-item::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 4px;
    background: linear-gradient(180deg, #1DA1F2, #7856ff);
    border-radius: 15px 0 0 15px;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.principles-list-item:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(29, 161, 242, 0.5);
    transform: translateX(10px);
}

.principles-list-item:hover::before {
    opacity: 1;
}

.principles-list-number {
    font-size: 24px;
    font-weight: 900;
    background: linear-gradient(135deg, #1DA1F2, #7856ff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    min-width: 40px;
    flex-shrink: 0;
}

.principles-list-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #1DA1F2, #7856ff);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    color: #ffffff;
    flex-shrink: 0;
}

.principles-list-content {
    flex: 1;
}

.principles-list-content h3 {
    font-size: 18px;
    margin-bottom: 12px;
    color: #ffffff;
}

.principles-list-content p {
    color: #8b8b8b;
    font-size: 15px;
    line-height: 1.7;
    margin: 0;
}

/* Collaboration Grid */
.collaboration-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.collaboration-item {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 35px 30px;
    text-align: center;
    transition: all 0.4s ease;
}

.collaboration-item:hover {
    transform: translateY(-8px);
    border-color: rgba(29, 161, 242, 0.5);
    box-shadow: 0 15px 40px rgba(29, 161, 242, 0.2);
    background: rgba(255, 255, 255, 0.08);
}

.collaboration-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, #1DA1F2, #7856ff);
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    margin: 0 auto 20px;
    color: #ffffff;
}

.collaboration-item h3 {
    font-size: 18px;
    margin-bottom: 12px;
    color: #ffffff;
}

.collaboration-item p {
    color: #8b8b8b;
    line-height: 1.7;
    font-size: 14px;
}

/* Governance Card */
.governance-card {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 25px;
    padding: 60px 50px;
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

.governance-content {
    margin-top: 30px;
}

.governance-text {
    max-width: 700px;
    margin: 0 auto;
}

.governance-text p {
    font-size: 17px;
    line-height: 1.9;
    color: #b0b0b0;
    margin-bottom: 20px;
}

.governance-text p:last-child {
    margin-bottom: 0;
}

.governance-text strong {
    color: #1DA1F2;
    font-weight: 600;
}

/* Vision Narrative Section */
.vision-section {
    position: relative;
    z-index: 1;
    padding: 120px 40px;
    max-width: 1400px;
    margin: 0 auto;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, rgba(29, 161, 242, 0.03) 50%, rgba(0, 0, 0, 0) 100%);
}

.vision-container {
    max-width: 900px;
    margin: 0 auto;
}

.vision-content {
    position: relative;
}

.vision-narrative {
    margin-top: 80px;
    position: relative;
}

.vision-text-block {
    position: relative;
    padding: 50px 0;
    opacity: 0;
    animation: fadeInUp 0.8s ease-out forwards;
}

.vision-text-block:nth-child(1) { animation-delay: 0.1s; }
.vision-text-block:nth-child(3) { animation-delay: 0.3s; }
.vision-text-block:nth-child(5) { animation-delay: 0.5s; }
.vision-text-block:nth-child(7) { animation-delay: 0.7s; }

.vision-icon-large {
    width: 100px;
    height: 100px;
    background: linear-gradient(135deg, #1DA1F2, #7856ff);
    border-radius: 25px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 48px;
    color: #ffffff;
    margin: 0 auto 30px;
    box-shadow: 0 10px 40px rgba(29, 161, 242, 0.3);
    transition: all 0.4s ease;
}

.vision-text-block:hover .vision-icon-large {
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 15px 50px rgba(29, 161, 242, 0.5);
}

.vision-text-block h3 {
    font-size: clamp(20px, 2.5vw, 26px);
    font-weight: 800;
    text-align: center;
    margin-bottom: 25px;
    background: linear-gradient(135deg, #ffffff, #a0a0a0);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.vision-text-block p {
    font-size: 18px;
    line-height: 1.9;
    color: #b0b0b0;
    text-align: center;
    max-width: 750px;
    margin: 0 auto;
}

.vision-connector {
    width: 2px;
    height: 60px;
    background: linear-gradient(180deg, #1DA1F2, #7856ff);
    margin: 0 auto;
    position: relative;
    opacity: 0.5;
}

.vision-connector::before,
.vision-connector::after {
    content: '';
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    width: 12px;
    height: 12px;
    background: linear-gradient(135deg, #1DA1F2, #7856ff);
    border-radius: 50%;
}

.vision-connector::before {
    top: -6px;
}

.vision-connector::after {
    bottom: -6px;
}

.vision-closing {
    margin-top: 80px;
    text-align: center;
    padding: 60px 40px;
    background: rgba(29, 161, 242, 0.1);
    border-radius: 30px;
    border: 2px solid rgba(29, 161, 242, 0.2);
    position: relative;
    overflow: hidden;
}

.vision-closing::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
    animation: shimmer 3s infinite;
}

@keyframes shimmer {
    0% { left: -100%; }
    100% { left: 100%; }
}

.vision-closing-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #1DA1F2, #7856ff);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 36px;
    color: #ffffff;
    margin: 0 auto 30px;
    box-shadow: 0 10px 40px rgba(29, 161, 242, 0.4);
    animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
        box-shadow: 0 10px 40px rgba(29, 161, 242, 0.4);
    }
    50% {
        transform: scale(1.05);
        box-shadow: 0 15px 50px rgba(29, 161, 242, 0.6);
    }
}

.vision-closing p {
    font-size: 24px;
    line-height: 1.8;
    color: #ffffff;
    margin: 0 0 20px 0;
    position: relative;
    z-index: 1;
}

.vision-closing strong {
    background: linear-gradient(135deg, #1DA1F2, #7856ff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-size: 28px;
}

.vision-closing-sub {
    font-size: 16px !important;
    color: #8b8b8b !important;
    font-style: italic;
    margin-top: 15px !important;
}

.vision-closing {
    text-align: center;
    padding: 40px;
    background: rgba(29, 161, 242, 0.1);
    border-radius: 20px;
    max-width: 800px;
    margin: 0 auto;
}

.vision-closing p {
    font-size: 20px;
    line-height: 1.8;
    color: #ffffff;
    margin: 0;
}

.vision-closing strong {
    background: linear-gradient(135deg, #1DA1F2, #7856ff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Responsive Portfolio Styles */
@media (max-width: 968px) {
    .applications-grid,
    .collaboration-grid {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    }

    .purpose-layout {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .ai-head-container {
        max-width: 300px;
    }

    .ai-head-face {
        width: 220px;
        height: 220px;
        max-width: 90%;
    }

    .ai-eye {
        width: 40px;
        height: 40px;
        top: 35%;
    }

    .ai-eye.left-eye {
        left: calc(50% - 30px);
        transform: translateX(-50%) translateY(-50%);
    }

    .ai-eye.right-eye {
        left: calc(50% + 30px);
        transform: translateX(-50%) translateY(-50%);
    }
    
    .ai-head-face {
        aspect-ratio: 1;
    }

    .ai-mouth {
        bottom: 30%;
        width: 60px;
        height: 30px;
    }
}

@media (max-width: 768px) {
    .portfolio-section {
        padding: 80px 20px;
    }

    .section-header {
        margin-bottom: 50px;
    }

    .applications-grid,
    .collaboration-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .purpose-layout {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .ai-head-container {
        max-width: 250px;
    }

    .ai-head-face {
        width: 180px;
        height: 180px;
        max-width: 85%;
    }

    .ai-eye {
        width: 35px;
        height: 35px;
        top: 35%;
    }

    .ai-eye.left-eye {
        left: calc(50% - 27.5px);
        transform: translateX(-50%) translateY(-50%);
    }

    .ai-eye.right-eye {
        left: calc(50% + 27.5px);
        transform: translateX(-50%) translateY(-50%);
    }
    
    .ai-head-face {
        aspect-ratio: 1;
    }

    .ai-mouth {
        bottom: 20%;
        width: 50px;
        height: 25px;
    }

    .purpose-list-item {
        padding: 20px 25px;
        gap: 15px;
    }

    .purpose-list-icon {
        width: 50px;
        height: 50px;
        font-size: 20px;
    }

    .application-card,
    .collaboration-item {
        padding: 30px 25px;
    }

    .shwenyan-intro {
        padding: 35px 25px;
    }

    .shwenyan-list {
        grid-template-columns: 1fr;
    }

    .shwenyan-intro {
        position: relative;
        top: 0;
        margin-bottom: 30px;
    }

    .shwenyan-list-items,
    .principles-list,
    .vision-list {
        grid-template-columns: 1fr;
    }

    .shwenyan-list-item,
    .principles-list-item {
        padding: 25px 20px;
        gap: 20px;
    }

    .shwenyan-list-number,
    .principles-list-number {
        min-width: 35px;
        font-size: 20px;
    }

    .shwenyan-list-icon,
    .principles-list-icon {
        width: 50px;
        height: 50px;
        font-size: 20px;
    }

    .vision-section {
        padding: 80px 20px;
    }

    .vision-text-block {
        padding: 40px 0;
    }

    .vision-icon-large {
        width: 80px;
        height: 80px;
        font-size: 36px;
    }

    .vision-text-block h3 {
        font-size: 22px;
    }

    .vision-text-block p {
        font-size: 16px;
    }

    .vision-connector {
        height: 40px;
    }

    .vision-closing {
        padding: 40px 25px;
    }

    .vision-closing-icon {
        width: 60px;
        height: 60px;
        font-size: 28px;
    }

    .vision-closing p {
        font-size: 20px;
    }

    .vision-closing strong {
        font-size: 22px;
    }

    .governance-card {
        padding: 40px 30px;
    }

    .application-note {
        flex-direction: column;
        text-align: center;
    }

    .projects-section {
        padding: 60px 20px;
    }

    .project-card {
        padding: 40px 30px;
    }

    .programs-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }

    .how-it-works-layout {
        grid-template-columns: 1fr;
        gap: 50px;
    }

    .ai-visual-container {
        max-width: 400px;
    }

    .stats-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .how-it-works-section {
        padding: 80px 20px;
    }

    .how-it-works-layout {
        grid-template-columns: 1fr;
        gap: 50px;
    }

    .ai-visual-container {
        max-width: 350px;
    }

    .network-core {
        width: 100px;
        height: 100px;
        font-size: 40px;
    }

    .node-icon {
        width: 60px;
        height: 60px;
        font-size: 24px;
    }

    .how-it-works-step {
        padding: 25px 20px;
        gap: 20px;
    }

    .step-number {
        font-size: 36px;
        min-width: 50px;
    }

    .step-content h3 {
        font-size: 20px;
    }

    .step-content p {
        font-size: 15px;
    }

    .section-header-left {
        text-align: center;
    }

    .section-header-left .section-title,
    .section-header-left .section-intro,
    .section-header-left .section-subtitle {
        text-align: center;
    }
}