        /* ----- MAIN SITE STYLES ----- */
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
            color: #1e293b;
            line-height: 1.5;
            background: #ffffff;
            overflow-x: hidden;
        }

        :root {
            --primary-blue: #0a3d7a;
            --accent-blue: #1e5a9e;
            --light-blue: #e6f0fa;
            --dark-bg: #13294b;
            --text-dark: #1e293b;
            --text-light: #f8fafc;
            --border-light: #e2e8f0;
        }

        h1, h2, h3, h4 {
            font-weight: 600;
            line-height: 1.2;
        }

        .section-title {
            font-size: 2.5rem;
            color: var(--primary-blue);
            margin-bottom: 2rem;
            position: relative;
            display: inline-block;
        }

        .section-title:after {
            content: '';
            position: absolute;
            bottom: -10px;
            left: 0;
            width: 80px;
            height: 4px;
            background: var(--primary-blue);
            border-radius: 2px;
        }

        .hero {
                position: relative;
    min-height: 80vh;
    background: #0b0f1a;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
        }

        .hero::before {
            content: '';
            position: absolute;
            top: 0;
            right: 0;
            width: 40%;
            height: 100%;
            background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100" opacity="0.03"><path d="M20 20 L80 20 L80 80 L20 80 Z" fill="none" stroke="white" stroke-width="2"/><circle cx="50" cy="50" r="15" fill="none" stroke="white" stroke-width="2"/></svg>');
            background-size: 120px;
        }

        .hero-content {
    position: relative;
    z-index: 2;
    color: white;
    max-width: 800px;
    text-align: center;
        }

        .hero h1 {
            font-size: 4.5rem;
            font-weight: 700;
            letter-spacing: -0.02em;
            margin-bottom: 1.5rem;
            line-height: 1.1;
        }

        .hero h1 span {
            color: #ffd966;
            display: block;
            font-size: 3rem;
            font-weight: 400;
            letter-spacing: 0.05em;
            margin-top: 0.5rem;
        }

        .hero p {
            font-size: 1.4rem;
            max-width: 700px;
            opacity: 0.95;
            font-weight: 300;
            line-height: 1.5;
            margin-bottom: 2rem;
        }

        .btn {
            display: inline-block;
            padding: 0.9rem 2.2rem;
            background: white;
            color: var(--primary-blue);
            text-decoration: none;
            font-weight: 600;
            border-radius: 50px;
            transition: all 0.3s ease;
            border: 2px solid transparent;
            box-shadow: 0 10px 20px -5px rgba(0,20,40,0.3);
            font-size: 1.1rem;
            cursor: pointer;
        }

        .btn-outline {
            background: transparent;
            color: white;
            border: 2px solid white;
            box-shadow: none;
            margin-left: 1rem;
        }

        .btn:hover {
            transform: translateY(-3px);
            background: #f0f7ff;
        }

        .btn-outline:hover {
            background: white;
            color: var(--primary-blue);
        }

        .section {
            padding: 5rem 5%;
        }

        .section-light {
            background: #ffffff;
        }

        .section-gray {
            background: #f8fafc;
        }

        .container {
            max-width: 1300px;
            margin: 0 auto;
        }

        .grid-2 {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 4rem;
            align-items: center;
        }

        .grid-3 {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 2.5rem;
        }

        .grid-4 {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 2rem;
        }

        .service-card {
            background: white;
            padding: 2.5rem 2rem;
            border-radius: 20px;
            box-shadow: 0 15px 30px -10px rgba(0,30,60,0.1);
            border: 1px solid var(--border-light);
            transition: all 0.3s ease;
            height: 100%;
            text-decoration: none;
            color: inherit;
            display: block;
        }

        .service-card:hover {
            transform: translateY(-8px);
            box-shadow: 0 25px 40px -12px var(--primary-blue);
            border-color: var(--primary-blue);
        }

        .service-card i {
            font-size: 2.8rem;
            color: var(--primary-blue);
            margin-bottom: 1.5rem;
        }

        .service-card h3 {
            font-size: 1.6rem;
            margin-bottom: 1rem;
            color: var(--primary-blue);
        }

        .service-card p {
            color: #475569;
            font-size: 1rem;
        }

        .project-card {
            background: white;
            border-radius: 20px;
            overflow: hidden;
            box-shadow: 0 10px 25px -8px rgba(0,0,0,0.1);
            border: 1px solid var(--border-light);
            transition: all 0.3s;
            height: 100%;
            text-decoration: none;
            color: inherit;
            display: block;
        }

        .project-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 20px 35px -10px var(--primary-blue);
        }

        .project-img {
            height: 220px;
            background: var(--light-blue);
            position: relative;
            overflow: hidden;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .project-content {
            padding: 1.8rem;
        }

        .project-content h3 {
            font-size: 1.4rem;
            color: var(--primary-blue);
            margin-bottom: 0.8rem;
        }

        .project-content p {
            color: #475569;
            margin-bottom: 1.2rem;
            font-size: 0.95rem;
        }

        .read-more {
            color: var(--primary-blue);
            font-weight: 600;
            text-decoration: none;
            display: inline-flex;
            align-items: center;
            gap: 0.5rem;
        }

        .read-more i {
            font-size: 0.8rem;
            transition: transform 0.2s;
        }

        .read-more:hover i {
            transform: translateX(5px);
        }

        .testimonial-card {
            background: white;
            padding: 2.5rem;
            border-radius: 30px;
            box-shadow: 0 20px 40px -12px rgba(0,30,60,0.15);
            border: 1px solid #e9edf2;
            height: 100%;
            position: relative;
        }

        .testimonial-card::before {
            content: '"';
            font-size: 8rem;
            color: var(--primary-blue);
            opacity: 0.1;
            font-family: serif;
            position: absolute;
            top: -10px;
            left: 15px;
        }

        .testimonial-card p {
            font-size: 1.1rem;
            font-style: italic;
            color: #2c3e50;
            margin-bottom: 1.5rem;
            position: relative;
            z-index: 1;
        }

        .testimonial-author {
            display: flex;
            align-items: center;
            gap: 1rem;
        }

        .author-img {
            width: 60px;
            height: 60px;
            border-radius: 50%;
            background: var(--primary-blue);
            border: 3px solid var(--primary-blue);
        }

        .author-info h4 {
            font-size: 1.2rem;
            color: var(--primary-blue);
        }

        .stat-box {
            text-align: center;
            padding: 2rem;
            background: white;
            border-radius: 20px;
            box-shadow: 0 10px 30px -8px rgba(0,0,0,0.05);
        }

        .stat-number {
            font-size: 3.5rem;
            font-weight: 700;
            color: var(--primary-blue);
            line-height: 1;
            margin-bottom: 0.5rem;
        }

        .stat-label {
            font-size: 1.1rem;
            color: #475569;
            text-transform: uppercase;
            letter-spacing: 1px;
        }

        .news-item {
            display: flex;
            gap: 1.5rem;
            padding: 1.5rem 0;
            border-bottom: 1px solid var(--border-light);
        }

        .news-item:last-child {
            border-bottom: none;
        }

        .news-date {
            min-width: 100px;
            background: var(--primary-blue);
            color: white;
            padding: 0.8rem;
            border-radius: 12px;
            text-align: center;
            font-weight: 600;
            height: fit-content;
        }

        .news-date .day {
            font-size: 1.8rem;
            line-height: 1;
        }

        .news-date .month-year {
            font-size: 0.9rem;
            opacity: 0.9;
        }

        .news-content h3 {
            font-size: 1.3rem;
            margin-bottom: 0.5rem;
        }

        .footprint-grid {
            display: flex;
            flex-wrap: wrap;
            gap: 1rem 2rem;
            justify-content: center;
            margin: 3rem 0;
        }

        .footprint-item {
            background: white;
            padding: 0.8rem 1.8rem;
            border-radius: 40px;
            border: 1px solid var(--primary-blue);
            color: var(--primary-blue);
            font-weight: 500;
            box-shadow: 0 5px 10px rgba(0,0,0,0.02);
            transition: all 0.2s;
            text-decoration: none;
            display: inline-block;
        }

        .footprint-item:hover {
            background: var(--primary-blue);
            color: white;
            transform: scale(1.05);
        }

        .map-container {
            background: #e2e8f0;
            border-radius: 30px;
            padding: 2rem;
            text-align: center;
            position: relative;
            overflow: hidden;
            min-height: 400px;
            background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 800 400" fill="%230a3d7a" opacity="0.1"><circle cx="200" cy="150" r="20"/><circle cx="400" cy="200" r="25"/><circle cx="600" cy="120" r="18"/><circle cx="300" cy="300" r="22"/><circle cx="550" cy="280" r="15"/><path d="M200 150 L400 200 L600 120 L300 300 L550 280" stroke="%230a3d7a" stroke-width="2" fill="none" stroke-dasharray="5 5"/></svg>');
            background-size: cover;
            background-position: center;
            border: 2px solid var(--primary-blue);
        }

        .map-placeholder-text {
            background: rgba(255,255,255,0.9);
            padding: 2rem;
            border-radius: 20px;
            display: inline-block;
            font-size: 1.5rem;
            color: var(--primary-blue);
            font-weight: 600;
        }

        .contact-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 3rem;
            background: white;
            border-radius: 30px;
            padding: 3rem;
            box-shadow: 0 25px 50px -12px rgba(0,0,0,0.15);
        }

        .contact-info h3 {
            font-size: 2rem;
            color: var(--primary-blue);
            margin-bottom: 1.5rem;
        }

        .contact-detail {
            display: flex;
            align-items: center;
            gap: 1rem;
            margin-bottom: 1.2rem;
        }

        .contact-detail i {
            width: 40px;
            height: 40px;
            background: var(--light-blue);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--primary-blue);
            font-size: 1.2rem;
        }

        .office-hours {
            margin-top: 2rem;
            padding-top: 2rem;
            border-top: 1px solid var(--border-light);
        }

        .social-links {
            margin-top: 2rem;
            display: flex;
            gap: 1rem;
        }

        .social-links a {
            width: 45px;
            height: 45px;
            background: var(--light-blue);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--primary-blue);
            font-size: 1.3rem;
            transition: all 0.2s;
            text-decoration: none;
        }

        .social-links a:hover {
            background: var(--primary-blue);
            color: white;
            transform: translateY(-3px);
        }

        footer {
            background: var(--dark-bg);
            color: white;
            padding: 3rem 5% 1.5rem;
        }

        .footer-grid {
            display: grid;
            grid-template-columns: 2fr 1fr 1fr 1fr;
            gap: 3rem;
            margin-bottom: 3rem;
        }

        .footer-logo {
            font-size: 2rem;
            font-weight: 700;
            margin-bottom: 1rem;
        }

        .footer-links h4 {
            margin-bottom: 1.2rem;
            font-size: 1.2rem;
        }

        .footer-links ul {
            list-style: none;
        }

        .footer-links li {
            margin-bottom: 0.7rem;
        }

        .footer-links a {
            color: #cbd5e1;
            text-decoration: none;
            transition: color 0.2s;
        }

        .footer-links a:hover {
            color: white;
        }

        .copyright {
            text-align: center;
            padding-top: 2rem;
            border-top: 1px solid #2d3f5e;
            color: #94a3b8;
            font-size: 0.9rem;
        }

        nav {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 1.5rem 5%;
            background: white;
            box-shadow: 0 4px 20px rgba(0,0,0,0.02);
            position: sticky;
            top: 0;
            z-index: 100;
        }

        .logo {
            font-size: 1.8rem;
            font-weight: 700;
            color: var(--primary-blue);
            text-decoration: none;
        }

        .nav-links {
            display: flex;
            gap: 2.5rem;
        }

        .nav-links a {
            text-decoration: none;
            color: var(--text-dark);
            font-weight: 500;
            transition: color 0.2s;
        }

        .nav-links a:hover {
            color: var(--primary-blue);
        }

        .mobile-menu-btn {
            display: none;
            font-size: 1.5rem;
            color: var(--primary-blue);
            cursor: pointer;
        }

        .page-header {
            background: var(--light-blue);
            padding: 3rem 5%;
            text-align: center;
        }

        .page-header h1 {
            font-size: 3rem;
            color: var(--primary-blue);
        }

        .breadcrumb {
            margin-top: 1rem;
            color: #64748b;
        }

        .breadcrumb a {
            color: var(--primary-blue);
            text-decoration: none;
        }

        .modal {
            display: none;
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(0,0,0,0.9);
            z-index: 1000;
            justify-content: center;
            align-items: center;
        }

        .modal.active {
            display: flex;
        }

        .modal-content {
            max-width: 90%;
            max-height: 90%;
        }

        .modal-close {
            position: absolute;
            top: 20px;
            right: 30px;
            color: white;
            font-size: 2rem;
            cursor: pointer;
        }

        /* ----- HEALTHCARE SERVICE ARTICLE STYLES ----- */
        .article-container {
            max-width: 1300px;
            margin: 2rem auto;
            background: white;
            border-radius: 48px 48px 30px 30px;
            box-shadow: 0 30px 60px -20px #0a3d7a80;
            overflow: hidden;
        }

        .hero-health {
            background: linear-gradient(135deg, #0a2e55 0%, #1d5180 100%);
            padding: 3rem 3rem 4rem 3rem;
            color: white;
            position: relative;
            overflow: hidden;
        }

        .hero-health::before {
            content: "⚡⚡⚡";
            font-size: 12rem;
            position: absolute;
            bottom: -40px;
            right: 20px;
            opacity: 0.06;
            color: white;
            transform: rotate(10deg);
            white-space: nowrap;
        }

        .hero-grid {
            display: grid;
            grid-template-columns: 1.2fr 0.8fr;
            gap: 2.5rem;
            align-items: center;
        }

        .hero-title {
            font-size: clamp(2.2rem, 5vw, 3.5rem);
            font-weight: 700;
            line-height: 1.1;
            margin-bottom: 1.5rem;
        }

        .hero-title span {
            background: linear-gradient(145deg, #ffd966, #ffb347);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            display: inline-block;
        }

        .hero-text {
            font-size: 1.2rem;
            opacity: 0.95;
            margin-bottom: 2rem;
            max-width: 550px;
        }

        .hero-stats {
            display: flex;
            gap: 2rem;
        }

        .stat-bubble {
            background: rgba(255,255,255,0.12);
            backdrop-filter: blur(4px);
            border-radius: 50px;
            padding: 0.8rem 1.8rem;
            border: 1px solid rgba(255,255,255,0.3);
        }

        .hero-image {
            background: rgba(255,255,255,0.05);
            border-radius: 40px;
            padding: 2rem;
            display: flex;
            justify-content: center;
            align-items: center;
            border: 1px solid rgba(255,255,255,0.2);
            backdrop-filter: blur(8px);
        }

        .hero-image i {
            font-size: 10rem;
            color: #ffd966;
            filter: drop-shadow(0 20px 15px #00000040);
        }

        .content-section {
            padding: 3.5rem 3rem;
            border-bottom: 1px solid #dae6f5;
        }

        .section-header {
            display: flex;
            align-items: center;
            gap: 1rem;
            margin-bottom: 2rem;
        }

        .section-header i {
            font-size: 2.5rem;
            color: #0a3d7a;
            background: #e6f0ff;
            padding: 1rem;
            border-radius: 30px;
        }

        .section-header h2 {
            font-size: 2rem;
            color: #0a3d7a;
            font-weight: 700;
        }

        .lead-text {
            font-size: 1.2rem;
            color: #1f4465;
            margin-bottom: 2rem;
            font-weight: 500;
            border-left: 6px solid #0a3d7a;
            padding-left: 1.5rem;
        }

        .feature-card {
            background: #f5faff;
            border-radius: 30px;
            padding: 2rem 1.8rem;
            border: 1px solid #cbddf2;
            transition: all 0.2s;
        }

        .feature-card:hover {
            transform: translateY(-6px);
            box-shadow: 0 20px 25px -10px #0a3d7a80;
        }

        .card-icon {
            font-size: 3rem;
            color: #0a3d7a;
            margin-bottom: 1.5rem;
            background: white;
            width: 70px;
            height: 70px;
            border-radius: 30px;
            display: flex;
            align-items: center;
            justify-content: center;
            box-shadow: 0 8px 0 #0a3d7a20;
        }

        .quote-block {
            background: #0a3d7a;
            color: white;
            border-radius: 40px;
            padding: 2.5rem;
            margin: 2rem 0;
        }

        .quote-block i {
            font-size: 3rem;
            opacity: 0.5;
            margin-right: 1rem;
        }

        .stat-highlight {
            display: flex;
            align-items: center;
            gap: 2rem;
            flex-wrap: wrap;
            background: #eef4fd;
            border-radius: 40px;
            padding: 2rem;
        }

        .big-number {
            font-size: 4rem;
            font-weight: 800;
            color: #0a3d7a;
            line-height: 1;
        }

        .ai-icon-grid {
            display: flex;
            flex-wrap: wrap;
            gap: 1.5rem;
            justify-content: center;
            margin: 2.5rem 0;
        }

        .ai-icon-item {
            background: linear-gradient(145deg, #d4e4ff, #ecf3ff);
            width: 100px;
            height: 100px;
            border-radius: 40px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 3rem;
            color: #0a3d7a;
            border: 2px solid white;
            box-shadow: 0 10px 0 #0a3d7a30;
            transition: 0.2s;
        }

        .ai-icon-item:hover { transform: scale(1.05); }

        .footer-note {
            background: #0f263b;
            color: white;
            padding: 2rem 3rem;
            display: flex;
            justify-content: space-between;
            align-items: center;
            flex-wrap: wrap;
        }

        .footer-note .footer-logo {
            font-weight: 700;
            font-size: 1.8rem;
            color: white;
        }

        .footer-logo span { color: #ffd966; }

        .btn-article {
            background: #ffd966;
            color: #0a3d7a;
            padding: 1rem 2.2rem;
            border-radius: 60px;
            font-weight: 700;
            text-decoration: none;
            display: inline-flex;
            align-items: center;
            gap: 0.6rem;
            border: 2px solid #b67f1a;
            cursor: pointer;
        }

        /* ----- FARMING SERVICE ARTICLE STYLES ----- */
        .article-wrapper-farm {
            max-width: 1400px;
            margin: 2rem auto;
            background: white;
            border-radius: 56px 56px 40px 40px;
            box-shadow: 0 40px 70px -25px #1e4a2f;
            overflow: hidden;
        }

        .hero-farm {
            background: linear-gradient(145deg, #1d5433, #2f7a4c);
            padding: 3rem 3rem 4rem 3rem;
            color: white;
            position: relative;
            overflow: hidden;
        }

        .hero-farm::before {
            content: "🌱🌿🌾";
            font-size: 12rem;
            position: absolute;
            bottom: -30px;
            right: 20px;
            opacity: 0.12;
            transform: rotate(5deg);
        }

        .hero-farm .hero-grid {
            display: grid;
            grid-template-columns: 1.3fr 0.9fr;
            gap: 2.5rem;
            align-items: center;
        }

        .hero-farm .hero-title {
            font-size: clamp(2.2rem, 5vw, 3.8rem);
            font-weight: 800;
            line-height: 1.2;
            margin-bottom: 1.5rem;
            word-wrap: break-word;
            overflow-wrap: break-word;
            hyphens: auto;
        }

        .hero-farm .hero-title .line-break {
            display: block;
            margin-top: 0.3rem;
        }

        .hero-farm .hero-title span {
            color: #e6f0b2;
            background: rgba(0,0,0,0.);
            display: inline-block;
            padding: 0 0.5rem;
            margin-right: 0.3rem;
            word-break: break-word;
        }

        .hero-farm .hero-text {
            font-size: 1.25rem;
            opacity: 0.95;
            margin-bottom: 2rem;
            max-width: 600px;
        }

        .hero-farm .hero-stats {
            display: flex;
            gap: 2rem;
            flex-wrap: wrap;
        }

        .stat-pill {
            background: rgba(255,255,255,0.2);
            backdrop-filter: blur(4px);
            padding: 0.7rem 1.8rem;
            border-radius: 60px;
            font-weight: 600;
            border: 1px solid rgba(255,255,255,0.4);
        }

        .hero-farm .hero-image {
            background: rgba(255,255,255,0.1);
            border-radius: 50px;
            padding: 2rem;
            display: flex;
            justify-content: center;
            border: 2px solid #c0e0b0;
        }

        .hero-farm .hero-image i {
            font-size: 10rem;
            color: #f9f3b0;
            filter: drop-shadow(0 15px 10px #1d4a2e);
        }

        .section-farm {
            padding: 3.5rem 3rem;
            border-bottom: 1px solid #c0ddc0;
        }

        .section-header-farm {
            display: flex;
            align-items: center;
            gap: 1rem;
            margin-bottom: 2rem;
        }

        .section-header-farm i {
            font-size: 2.5rem;
            color: #1f6e3f;
            background: #e4f4e0;
            padding: 1rem;
            border-radius: 30px;
        }

        .section-header-farm h2 {
            font-size: 2rem;
            color: #1a5731;
            font-weight: 700;
        }

        .lead-farm {
            font-size: 1.2rem;
            color: #1f5436;
            border-left: 6px solid #2e7d4e;
            padding-left: 1.8rem;
            margin-bottom: 2rem;
            font-weight: 500;
        }

        .graph-row {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 2rem;
            margin: 2.5rem 0;
        }

        .graph-card {
            background: #ffffff;
            border-radius: 32px;
            padding: 1.8rem;
            border: 2px solid #bad4b0;
            box-shadow: 0 12px 20px -12px #1d5433;
        }

        .graph-card h4 {
            color: #1f6e3f;
            font-size: 1.4rem;
            margin-bottom: 1rem;
            display: flex;
            align-items: center;
            gap: 8px;
        }

        .chart-container {
            height: 240px;
            position: relative;
        }

        .metal-badge-row {
            display: flex;
            flex-wrap: wrap;
            gap: 0.8rem;
            margin: 1.5rem 0;
        }

        .metal-badge {
            background: #ececec;
            padding: 0.5rem 1.8rem;
            border-radius: 40px;
            font-weight: 600;
            border: 1px solid #1f6e3f;
            color: #1d5433;
        }

        .data-table {
            background: #edf7ea;
            border-radius: 30px;
            padding: 1.5rem;
            margin: 2rem 0;
        }

        .table-grid {
            display: grid;
            grid-template-columns: repeat(4,1fr);
            gap: 1rem;
            font-weight: 600;
            text-align: center;
        }

        .table-header {
            background: #1a5731;
            color: white;
            padding: 0.8rem;
            border-radius: 30px 30px 0 0;
        }

        .footnote {
            background: #dcf0d5;
            border-radius: 40px;
            padding: 1.8rem 2.5rem;
            display: flex;
            align-items: center;
            gap: 2rem;
            flex-wrap: wrap;
            margin-top: 2rem;
        }

        .btn-farm {
            background: #1f6e3f;
            color: white;
            padding: 1rem 2.5rem;
            border-radius: 60px;
            text-decoration: none;
            font-weight: 700;
            display: inline-flex;
            align-items: center;
            gap: 0.8rem;
            border: 2px solid #40875c;
            cursor: pointer;
        }

        .footer-farm {
            background: #143b23;
            color: white;
            padding: 2rem 3rem;
            display: flex;
            justify-content: space-between;
            align-items: center;
            flex-wrap: wrap;
        }

        /* ----- SOLAR SERVICE ARTICLE STYLES ----- */
        .article-wrapper-solar {
            max-width: 1400px;
            margin: 2rem auto;
            background: white;
            border-radius: 56px 56px 40px 40px;
            box-shadow: 0 40px 70px -25px #1e3a2f;
            overflow: hidden;
        }

        .hero-solar {
            background: linear-gradient(145deg, #1b4b3b, #2a6e4f);
            padding: 3.5rem 3rem 4rem 3rem;
            color: white;
            position: relative;
            overflow: hidden;
        }

        .hero-solar::before {
            content: "☀️⚡🌍";
            font-size: 12rem;
            position: absolute;
            bottom: -30px;
            right: 20px;
            opacity: 0.12;
            transform: rotate(5deg);
        }

        .hero-solar .hero-grid {
            display: grid;
            grid-template-columns: 1.4fr 0.8fr;
            gap: 2.5rem;
            align-items: center;
        }

        .hero-solar .hero-title {
            font-size: clamp(2.2rem, 5vw, 3.8rem);
            font-weight: 800;
            line-height: 1.1;
            margin-bottom: 1.5rem;
        }

        .hero-solar .hero-title span {
            color: #ffdb9f;
            background: rgba(0,0,0,0.);
            display: inline-block;
            padding: 0 0.5rem;
        }

        .hero-solar .hero-text {
            font-size: 1.25rem;
            opacity: 0.95;
            margin-bottom: 2rem;
            max-width: 650px;
        }

        .hero-solar .hero-stats {
            display: flex;
            gap: 2rem;
            flex-wrap: wrap;
        }

        .hero-solar .stat-pill {
            background: rgba(255,255,255,0.2);
            backdrop-filter: blur(4px);
            padding: 0.7rem 1.8rem;
            border-radius: 60px;
            font-weight: 600;
            border: 1px solid rgba(255,255,255,0.4);
        }

        .hero-solar .hero-image {
            background: rgba(255,255,255,0.1);
            border-radius: 50px;
            padding: 2rem;
            display: flex;
            justify-content: center;
            border: 2px solid #ffdb9f;
        }

        .hero-solar .hero-image i {
            font-size: 10rem;
            color: #ffdb9f;
            filter: drop-shadow(0 15px 10px #1d4a2e);
        }

        .section-solar {
            padding: 3.5rem 3rem;
            border-bottom: 1px solid #d0dcd0;
        }

        .section-header-solar {
            display: flex;
            align-items: center;
            gap: 1rem;
            margin-bottom: 2rem;
        }

        .section-header-solar i {
            font-size: 2.5rem;
            color: #2a6e4f;
            background: #e0f0e0;
            padding: 1rem;
            border-radius: 30px;
        }

        .section-header-solar h2 {
            font-size: 2rem;
            color: #1b4b3b;
            font-weight: 700;
        }

        .lead-solar {
            font-size: 1.2rem;
            color: #2a5a3a;
            border-left: 6px solid #2a6e4f;
            padding-left: 1.8rem;
            margin-bottom: 2rem;
            font-weight: 500;
        }

        .stats-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 1.5rem;
            margin: 2rem 0;
        }

        .stat-block {
            background: #f0f8f0;
            border-radius: 24px;
            padding: 1.5rem;
            text-align: center;
        }

        .stat-number-solar {
            font-size: 2.4rem;
            font-weight: 800;
            color: #1b4b3b;
        }

        .region-tag {
            background: #e0eee0;
            border-radius: 40px;
            padding: 0.5rem 1.8rem;
            display: inline-block;
            margin: 0.3rem;
            font-weight: 600;
            border: 1px solid #2a6e4f;
        }

        .chart-row {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 2rem;
            margin: 2.5rem 0;
        }

        .data-card {
            background: #ffffff;
            border-radius: 32px;
            padding: 2rem;
            border: 2px solid #bad4b0;
            box-shadow: 0 12px 20px -12px #1d5433;
            margin: 2rem 0;
        }

        .data-card h4 {
            color: #1f6e3f;
            font-size: 1.5rem;
            margin-bottom: 1.5rem;
            display: flex;
            align-items: center;
            gap: 8px;
        }

        .market-table {
            width: 100%;
            border-collapse: collapse;
            background: #f4faf4;
            border-radius: 24px;
            overflow: hidden;
        }

        .market-table th {
            background: #1b4b3b;
            color: white;
            padding: 1rem;
            text-align: left;
        }

        .market-table td {
            padding: 1rem;
            border-bottom: 1px solid #b8dcb8;
        }

        .market-table tr:last-child td {
            border-bottom: none;
        }

        .btn-solar {
            background: #2a6e4f;
            color: white;
            padding: 1rem 2.5rem;
            border-radius: 60px;
            text-decoration: none;
            font-weight: 700;
            display: inline-flex;
            align-items: center;
            gap: 0.8rem;
            border: 2px solid #40875c;
            cursor: pointer;
        }

        .footer-solar {
            background: #143b23;
            color: white;
            padding: 2rem 3rem;
            display: flex;
            justify-content: space-between;
            align-items: center;
            flex-wrap: wrap;
        }

        .source-note {
            font-size: 0.9rem;
            color: #6a8f7a;
            margin-top: 1rem;
            text-align: right;
        }

        /* ----- TECHNOLOGY TRANSFER SERVICE ARTICLE STYLES ----- */
        .article-wrapper-tt {
            max-width: 1400px;
            margin: 2rem auto;
            background: white;
            border-radius: 56px 56px 40px 40px;
            box-shadow: 0 40px 70px -25px #1a3a5e;
            overflow: hidden;
        }

        .hero-tt {
            background: linear-gradient(145deg, #1a3a5e, #2b4f7a);
            padding: 3.5rem 3rem 4rem 3rem;
            color: white;
            position: relative;
            overflow: hidden;
        }

        .hero-tt::before {
            content: "🌍🤝⚙️";
            font-size: 12rem;
            position: absolute;
            bottom: -30px;
            right: 20px;
            opacity: 0.12;
            transform: rotate(5deg);
        }

        .hero-tt .hero-grid {
            display: grid;
            grid-template-columns: 1.4fr 0.8fr;
            gap: 2.5rem;
            align-items: center;
        }

        .hero-tt .hero-title {
            font-size: clamp(2.2rem, 5vw, 3.8rem);
            font-weight: 800;
            line-height: 1.1;
            margin-bottom: 1.5rem;
        }

        .hero-tt .hero-title span {
            color: #ffdb9f;
            background: rgba(0,0,0,0.);
            display: inline-block;
            padding: 0 0.5rem;
        }

        .hero-tt .hero-text {
            font-size: 1.25rem;
            opacity: 0.95;
            margin-bottom: 2rem;
            max-width: 650px;
        }

        .hero-tt .hero-stats {
            display: flex;
            gap: 2rem;
            flex-wrap: wrap;
        }

        .hero-tt .stat-pill {
            background: rgba(255,255,255,0.2);
            backdrop-filter: blur(4px);
            padding: 0.7rem 1.8rem;
            border-radius: 60px;
            font-weight: 600;
            border: 1px solid rgba(255,255,255,0.4);
        }

        .hero-tt .hero-image {
            background: rgba(255,255,255,0.1);
            border-radius: 50px;
            padding: 2rem;
            display: flex;
            justify-content: center;
            border: 2px solid #ffdb9f;
        }

        .hero-tt .hero-image i {
            font-size: 10rem;
            color: #ffdb9f;
            filter: drop-shadow(0 15px 10px #1d3a5a);
        }

        .section-tt {
            padding: 3.5rem 3rem;
            border-bottom: 1px solid #d0dce8;
        }

        .section-header-tt {
            display: flex;
            align-items: center;
            gap: 1rem;
            margin-bottom: 2rem;
        }

        .section-header-tt i {
            font-size: 2.5rem;
            color: #1a3a5e;
            background: #e0ebf8;
            padding: 1rem;
            border-radius: 30px;
        }

        .section-header-tt h2 {
            font-size: 2rem;
            color: #1a3a5e;
            font-weight: 700;
        }

        .lead-tt {
            font-size: 1.2rem;
            color: #2a4a6e;
            border-left: 6px solid #1a3a5e;
            padding-left: 1.8rem;
            margin-bottom: 2rem;
            font-weight: 500;
        }

        .timeline-table {
            width: 100%;
            border-collapse: collapse;
            background: #f0f7ff;
            border-radius: 24px;
            overflow: hidden;
        }

        .timeline-table th {
            background: #1a3a5e;
            color: white;
            padding: 1rem;
            text-align: left;
        }

        .timeline-table td {
            padding: 1rem;
            border-bottom: 1px solid #b8d0e8;
        }

        .timeline-table tr:last-child td {
            border-bottom: none;
        }

        .btn-tt {
            background: #1a3a5e;
            color: white;
            padding: 1rem 2.5rem;
            border-radius: 60px;
            text-decoration: none;
            font-weight: 700;
            display: inline-flex;
            align-items: center;
            gap: 0.8rem;
            border: 2px solid #3a5a7e;
            cursor: pointer;
        }

        .footer-tt {
            background: #0f263b;
            color: white;
            padding: 2rem 3rem;
            display: flex;
            justify-content: space-between;
            align-items: center;
            flex-wrap: wrap;
        }

        /* ----- MINT PROJECT ARTICLE STYLES ----- */
        .article-wrapper-mint {
            max-width: 1400px;
            margin: 2rem auto;
            background: white;
            border-radius: 56px 56px 40px 40px;
            box-shadow: 0 40px 70px -25px #1e4a2f;
            overflow: hidden;
        }

        .hero-mint {
            background: linear-gradient(145deg, #1d5433, #2f7a4c);
            padding: 3.5rem 3rem 4rem 3rem;
            color: white;
            position: relative;
            overflow: hidden;
        }

        .hero-mint::before {
            content: "🌱🌿🍃";
            font-size: 12rem;
            position: absolute;
            bottom: -30px;
            right: 20px;
            opacity: 0.12;
            transform: rotate(5deg);
        }

        .hero-mint .hero-grid {
            display: grid;
            grid-template-columns: 1.4fr 0.8fr;
            gap: 2.5rem;
            align-items: center;
        }

        .hero-mint .hero-title {
            font-size: clamp(2.2rem, 5vw, 3.8rem);
            font-weight: 800;
            line-height: 1.1;
            margin-bottom: 1.5rem;
        }

        .hero-mint .hero-title span {
            color: #e6f0b2;
            background: rgba(0,0,0,0.);
            display: inline-block;
            padding: 0 0.5rem;
        }

        .hero-mint .hero-text {
            font-size: 1.25rem;
            opacity: 0.95;
            margin-bottom: 2rem;
            max-width: 650px;
        }

        .hero-mint .hero-stats {
            display: flex;
            gap: 2rem;
            flex-wrap: wrap;
        }

        .hero-mint .stat-pill {
            background: rgba(255,255,255,0.2);
            backdrop-filter: blur(4px);
            padding: 0.7rem 1.8rem;
            border-radius: 60px;
            font-weight: 600;
            border: 1px solid rgba(255,255,255,0.4);
        }

        .hero-mint .hero-image {
            background: rgba(255,255,255,0.1);
            border-radius: 50px;
            padding: 2rem;
            display: flex;
            justify-content: center;
            border: 2px solid #e6f0b2;
        }

        .hero-mint .hero-image i {
            font-size: 10rem;
            color: #e6f0b2;
            filter: drop-shadow(0 15px 10px #1d4a2e);
        }

        .section-mint {
            padding: 3.5rem 3rem;
            border-bottom: 1px solid #c0ddc0;
        }

        .section-header-mint {
            display: flex;
            align-items: center;
            gap: 1rem;
            margin-bottom: 2rem;
        }

        .section-header-mint i {
            font-size: 2.5rem;
            color: #1f6e3f;
            background: #e4f4e0;
            padding: 1rem;
            border-radius: 30px;
        }

        .section-header-mint h2 {
            font-size: 2rem;
            color: #1a5731;
            font-weight: 700;
        }

        .lead-mint {
            font-size: 1.2rem;
            color: #1f5436;
            border-left: 6px solid #2e7d4e;
            padding-left: 1.8rem;
            margin-bottom: 2rem;
            font-weight: 500;
        }

        .project-details {
            background: #e8f5e8;
            border-radius: 40px;
            padding: 2.5rem;
            margin: 2.5rem 0;
            border: 2px solid #2e7d4e;
            box-shadow: 0 15px 25px -10px #1a5731;
        }

        .details-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 1.5rem;
            margin: 2rem 0;
        }

        .detail-item {
            text-align: center;
            padding: 1.5rem;
            background: white;
            border-radius: 28px;
            border: 1px solid #b8dcb8;
        }

        .detail-item i {
            font-size: 2.5rem;
            color: #1f6e3f;
            margin-bottom: 1rem;
        }

        .detail-item .label {
            font-weight: 700;
            color: #1a5731;
        }

        .detail-item .value {
            font-size: 1.3rem;
            font-weight: 600;
            margin-top: 0.5rem;
        }

        .benefits-list {
            list-style: none;
            margin: 1.5rem 0;
        }

        .benefits-list li {
            padding: 0.8rem 0;
            border-bottom: 1px dashed #b8dcb8;
            display: flex;
            align-items: center;
            gap: 1rem;
        }

        .benefits-list li i {
            color: #1f6e3f;
            font-size: 1.3rem;
        }

        .testimonial-block {
            background: #1a5731;
            color: white;
            border-radius: 40px;
            padding: 2.5rem;
            margin: 2rem 0;
        }

        .testimonial-block i {
            font-size: 3rem;
            opacity: 0.3;
            margin-bottom: 1rem;
        }

        .btn-mint {
            background: #1f6e3f;
            color: white;
            padding: 1rem 2.5rem;
            border-radius: 60px;
            text-decoration: none;
            font-weight: 700;
            display: inline-flex;
            align-items: center;
            gap: 0.8rem;
            border: 2px solid #40875c;
            transition: all 0.2s;
            cursor: pointer;
        }

        .btn-mint:hover {
            background: #2a8a4a;
            transform: translateY(-3px);
            box-shadow: 0 15px 25px -10px #1a5731;
        }

        .footer-mint {
            background: #143b23;
            color: white;
            padding: 2rem 3rem;
            display: flex;
            justify-content: space-between;
            align-items: center;
            flex-wrap: wrap;
        }

        /* ----- AI HEALTH PROJECT ARTICLE STYLES ----- */
        .article-wrapper-ai-health {
            max-width: 1400px;
            margin: 2rem auto;
            background: white;
            border-radius: 56px 56px 40px 40px;
            box-shadow: 0 40px 70px -25px #1a3a6e;
            overflow: hidden;
        }

        .hero-ai-health {
            background: linear-gradient(145deg, #1a3a6e, #2b5a8c);
            padding: 3.5rem 3rem 4rem 3rem;
            color: white;
            position: relative;
            overflow: hidden;
        }

        .hero-ai-health::before {
            content: "🤖❤️‍🩹📊";
            font-size: 12rem;
            position: absolute;
            bottom: -30px;
            right: 20px;
            opacity: 0.12;
            transform: rotate(5deg);
        }

        .hero-ai-health .hero-grid {
            display: grid;
            grid-template-columns: 1.4fr 0.8fr;
            gap: 2.5rem;
            align-items: center;
        }

        .hero-ai-health .hero-title {
            font-size: clamp(2.2rem, 5vw, 3.8rem);
            font-weight: 800;
            line-height: 1.1;
            margin-bottom: 1.5rem;
        }

        .hero-ai-health .hero-title span {
            color: #b0d8ff;
            background: rgba(0,0,0,0.);
            display: inline-block;
            padding: 0 0.5rem;
        }

        .hero-ai-health .hero-text {
            font-size: 1.25rem;
            opacity: 0.95;
            margin-bottom: 2rem;
            max-width: 650px;
        }

        .hero-ai-health .hero-stats {
            display: flex;
            gap: 2rem;
            flex-wrap: wrap;
        }

        .hero-ai-health .stat-pill {
            background: rgba(255,255,255,0.2);
            backdrop-filter: blur(4px);
            padding: 0.7rem 1.8rem;
            border-radius: 60px;
            font-weight: 600;
            border: 1px solid rgba(255,255,255,0.4);
        }

        .hero-ai-health .hero-image {
            background: rgba(255,255,255,0.1);
            border-radius: 50px;
            padding: 2rem;
            display: flex;
            justify-content: center;
            border: 2px solid #b0d8ff;
        }

        .hero-ai-health .hero-image i {
            font-size: 10rem;
            color: #b0d8ff;
            filter: drop-shadow(0 15px 10px #1a3a6e);
        }

        .section-ai-health {
            padding: 3.5rem 3rem;
            border-bottom: 1px solid #d0dce8;
        }

        .section-header-ai-health {
            display: flex;
            align-items: center;
            gap: 1rem;
            margin-bottom: 2rem;
        }

        .section-header-ai-health i {
            font-size: 2.5rem;
            color: #1a6e9a;
            background: #e0f0fa;
            padding: 1rem;
            border-radius: 30px;
        }

        .section-header-ai-health h2 {
            font-size: 2rem;
            color: #1a3a6e;
            font-weight: 700;
        }

        .lead-ai-health {
            font-size: 1.2rem;
            color: #1f5e8f;
            border-left: 6px solid #1a6e9a;
            padding-left: 1.8rem;
            margin-bottom: 2rem;
            font-weight: 500;
        }

        .timeline {
            display: flex;
            justify-content: space-between;
            margin: 2.5rem 0;
            position: relative;
        }

        .timeline::before {
            content: '';
            position: absolute;
            top: 40px;
            left: 0;
            width: 100%;
            height: 4px;
            background: #b8d8f0;
            z-index: 1;
        }

        .timeline-step {
            position: relative;
            z-index: 2;
            background: white;
            width: 120px;
            text-align: center;
        }

        .timeline-step .step-icon {
            width: 60px;
            height: 60px;
            background: #1a6e9a;
            color: white;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 1rem;
            font-size: 1.5rem;
            border: 4px solid white;
            box-shadow: 0 5px 15px rgba(0,0,0,0.2);
        }

        .feature-list {
            list-style: none;
            margin: 1.5rem 0;
        }

        .feature-list li {
            padding: 0.8rem 0;
            border-bottom: 1px dashed #b8d8f0;
            display: flex;
            align-items: center;
            gap: 1rem;
        }

        .feature-list li i {
            color: #1a6e9a;
            font-size: 1.3rem;
        }

        .partner-badge {
            display: inline-block;
            background: #1a3a6e;
            color: white;
            padding: 0.5rem 2rem;
            border-radius: 40px;
            font-weight: 600;
            margin: 0.5rem;
            border: 2px solid #b0d8ff;
        }

        .btn-ai-health {
            background: #1a6e9a;
            color: white;
            padding: 1rem 2.5rem;
            border-radius: 60px;
            text-decoration: none;
            font-weight: 700;
            display: inline-flex;
            align-items: center;
            gap: 0.8rem;
            border: 2px solid #4088ac;
            transition: all 0.2s;
            cursor: pointer;
        }

        .btn-ai-health:hover {
            background: #2a8aba;
            transform: translateY(-3px);
            box-shadow: 0 15px 25px -10px #1a3a6e;
        }

        .footer-ai-health {
            background: #0f2a4a;
            color: white;
            padding: 2rem 3rem;
            display: flex;
            justify-content: space-between;
            align-items: center;
            flex-wrap: wrap;
        }

        /* ----- UOS PROJECT ARTICLE STYLES ----- */
        .article-wrapper-uos {
            max-width: 1400px;
            margin: 2rem auto;
            background: white;
            border-radius: 56px 56px 40px 40px;
            box-shadow: 0 40px 70px -25px #1a3a6e;
            overflow: hidden;
        }

        .hero-uos {
            background: linear-gradient(145deg, #1a4a6e, #2b6a8c);
            padding: 3.5rem 3rem 4rem 3rem;
            color: white;
            position: relative;
            overflow: hidden;
        }

        .hero-uos::before {
            content: "🔬⚗️🌿";
            font-size: 12rem;
            position: absolute;
            bottom: -30px;
            right: 20px;
            opacity: 0.12;
            transform: rotate(5deg);
        }

        .hero-uos .hero-grid {
            display: grid;
            grid-template-columns: 1.4fr 0.8fr;
            gap: 2.5rem;
            align-items: center;
        }

        .hero-uos .hero-title {
            font-size: clamp(2.2rem, 5vw, 3.8rem);
            font-weight: 800;
            line-height: 1.1;
            margin-bottom: 1.5rem;
        }

        .hero-uos .hero-title span {
            color: #b0e0ff;
            background: rgba(0,0,0,0.);
            display: inline-block;
            padding: 0 0.5rem;
        }

        .hero-uos .hero-text {
            font-size: 1.25rem;
            opacity: 0.95;
            margin-bottom: 2rem;
            max-width: 650px;
        }

        .hero-uos .hero-stats {
            display: flex;
            gap: 2rem;
            flex-wrap: wrap;
        }

        .hero-uos .stat-pill {
            background: rgba(255,255,255,0.2);
            backdrop-filter: blur(4px);
            padding: 0.7rem 1.8rem;
            border-radius: 60px;
            font-weight: 600;
            border: 1px solid rgba(255,255,255,0.4);
        }

        .hero-uos .hero-image {
            background: rgba(255,255,255,0.1);
            border-radius: 50px;
            padding: 2rem;
            display: flex;
            justify-content: center;
            border: 2px solid #b0e0ff;
        }

        .hero-uos .hero-image i {
            font-size: 10rem;
            color: #b0e0ff;
            filter: drop-shadow(0 15px 10px #1a4a6e);
        }

        .section-uos {
            padding: 3.5rem 3rem;
            border-bottom: 1px solid #d0e0e8;
        }

        .section-header-uos {
            display: flex;
            align-items: center;
            gap: 1rem;
            margin-bottom: 2rem;
        }

        .section-header-uos i {
            font-size: 2.5rem;
            color: #1a6e9a;
            background: #e0f0fa;
            padding: 1rem;
            border-radius: 30px;
        }

        .section-header-uos h2 {
            font-size: 2rem;
            color: #1a4a6e;
            font-weight: 700;
        }

        .lead-uos {
            font-size: 1.2rem;
            color: #1f5e8f;
            border-left: 6px solid #1a6e9a;
            padding-left: 1.8rem;
            margin-bottom: 2rem;
            font-weight: 500;
        }

        .uos-details {
            background: #e8f0fa;
            border-radius: 40px;
            padding: 2.5rem;
            margin: 2.5rem 0;
            border: 2px solid #1a6e9a;
            box-shadow: 0 15px 25px -10px #1a4a6e;
        }

        .uos-details .details-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 1.5rem;
            margin: 2rem 0;
        }

        .uos-details .detail-item {
            text-align: center;
            padding: 1.5rem;
            background: white;
            border-radius: 28px;
            border: 1px solid #b8d8f0;
        }

        .uos-details .detail-item i {
            font-size: 2.5rem;
            color: #1a6e9a;
            margin-bottom: 1rem;
        }

        .uos-details .detail-item .label {
            font-weight: 700;
            color: #1a4a6e;
        }

        .uos-details .detail-item .value {
            font-size: 1.3rem;
            font-weight: 600;
            margin-top: 0.5rem;
        }

        .btn-uos {
            background: #1a6e9a;
            color: white;
            padding: 1rem 2.5rem;
            border-radius: 60px;
            text-decoration: none;
            font-weight: 700;
            display: inline-flex;
            align-items: center;
            gap: 0.8rem;
            border: 2px solid #3a8eb0;
            transition: all 0.2s;
            cursor: pointer;
        }

        .btn-uos:hover {
            background: #2a8eb0;
            transform: translateY(-3px);
            box-shadow: 0 15px 25px -10px #1a4a6e;
        }

        .footer-uos {
            background: #0f2a3a;
            color: white;
            padding: 2rem 3rem;
            display: flex;
            justify-content: space-between;
            align-items: center;
            flex-wrap: wrap;
        }

        .extraction-benefits {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 1.5rem;
            margin: 2rem 0;
        }

        .benefit-card {
            background: #f0f7ff;
            border-radius: 32px;
            padding: 2rem;
            border: 1px solid #b8d8f0;
            text-align: center;
        }

        .benefit-card i {
            font-size: 3rem;
            color: #1a6e9a;
            margin-bottom: 1rem;
        }

        .benefit-card h4 {
            color: #1a4a6e;
            margin-bottom: 0.8rem;
        }

        /* ----- PARB VISIT ARTICLE STYLES ----- */
        .article-wrapper-parb {
            max-width: 1400px;
            margin: 2rem auto;
            background: white;
            border-radius: 56px 56px 40px 40px;
            box-shadow: 0 40px 70px -25px #1a4b2a;
            overflow: hidden;
        }

        .hero-parb {
            background: linear-gradient(145deg, #1a4b2a, #2d6e42);
            padding: 3.5rem 3rem 4rem 3rem;
            color: white;
            position: relative;
            overflow: hidden;
        }

        .hero-parb::before {
            content: "🌱🌿🌾🤝";
            font-size: 12rem;
            position: absolute;
            bottom: -30px;
            right: 20px;
            opacity: 0.12;
            transform: rotate(5deg);
        }

        .hero-parb .hero-grid {
            display: grid;
            grid-template-columns: 1.4fr 0.8fr;
            gap: 2.5rem;
            align-items: center;
        }

        .hero-parb .hero-title {
            font-size: clamp(2.2rem, 5vw, 3.8rem);
            font-weight: 800;
            line-height: 1.1;
            margin-bottom: 1.5rem;
        }

        .hero-parb .hero-title span {
            color: #e6f0b2;
            background: rgba(0,0,0,0.);
            display: inline-block;
            padding: 0 0.5rem;
        }

        .hero-parb .hero-text {
            font-size: 1.25rem;
            opacity: 0.95;
            margin-bottom: 2rem;
            max-width: 650px;
        }

        .hero-parb .hero-stats {
            display: flex;
            gap: 2rem;
            flex-wrap: wrap;
        }

        .hero-parb .stat-pill {
            background: rgba(255,255,255,0.2);
            backdrop-filter: blur(4px);
            padding: 0.7rem 1.8rem;
            border-radius: 60px;
            font-weight: 600;
            border: 1px solid rgba(255,255,255,0.4);
        }

        .hero-parb .hero-image {
            background: rgba(255,255,255,0.1);
            border-radius: 50px;
            padding: 2rem;
            display: flex;
            justify-content: center;
            border: 2px solid #e6f0b2;
        }

        .hero-parb .hero-image i {
            font-size: 10rem;
            color: #e6f0b2;
            filter: drop-shadow(0 15px 10px #1a4b2a);
        }

        .section-parb {
            padding: 3.5rem 3rem;
            border-bottom: 1px solid #c0ddc0;
        }

        .section-header-parb {
            display: flex;
            align-items: center;
            gap: 1rem;
            margin-bottom: 2rem;
        }

        .section-header-parb i {
            font-size: 2.5rem;
            color: #1f6e3f;
            background: #e4f4e0;
            padding: 1rem;
            border-radius: 30px;
        }

        .section-header-parb h2 {
            font-size: 2rem;
            color: #1a5731;
            font-weight: 700;
        }

        .lead-parb {
            font-size: 1.2rem;
            color: #1f5436;
            border-left: 6px solid #2e7d4e;
            padding-left: 1.8rem;
            margin-bottom: 2rem;
            font-weight: 500;
        }

        .parb-details {
            background: #e8f5e8;
            border-radius: 40px;
            padding: 2.5rem;
            margin: 2.5rem 0;
            border: 2px solid #2e7d4e;
            box-shadow: 0 15px 25px -10px #1a5731;
        }

        .parb-details .details-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 1.5rem;
            margin: 2rem 0;
        }

        .parb-details .detail-item {
            text-align: center;
            padding: 1.5rem;
            background: white;
            border-radius: 28px;
            border: 1px solid #b8dcb8;
        }

        .parb-details .detail-item i {
            font-size: 2.5rem;
            color: #1f6e3f;
            margin-bottom: 1rem;
        }

        .parb-details .detail-item .label {
            font-weight: 700;
            color: #1a5731;
        }

        .parb-details .detail-item .value {
            font-size: 1.3rem;
            font-weight: 600;
            margin-top: 0.5rem;
        }

        .stats-grid-parb {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 1.5rem;
            margin: 2rem 0;
        }

        .stat-block-parb {
            background: #e0f0e0;
            border-radius: 24px;
            padding: 1.5rem;
            text-align: center;
        }

        .stat-number-parb {
            font-size: 2.4rem;
            font-weight: 800;
            color: #1a5731;
        }

        .btn-parb {
            background: #1f6e3f;
            color: white;
            padding: 1rem 2.5rem;
            border-radius: 60px;
            text-decoration: none;
            font-weight: 700;
            display: inline-flex;
            align-items: center;
            gap: 0.8rem;
            border: 2px solid #40875c;
            transition: all 0.2s;
            cursor: pointer;
        }

        .btn-parb:hover {
            background: #2a8a4a;
            transform: translateY(-3px);
            box-shadow: 0 15px 25px -10px #1a5731;
        }

        .footer-parb {
            background: #143b23;
            color: white;
            padding: 2rem 3rem;
            display: flex;
            justify-content: space-between;
            align-items: center;
            flex-wrap: wrap;
        }

        /* ----- MOU SIGNING ARTICLE STYLES ----- */
        .article-wrapper-mou {
            max-width: 1400px;
            margin: 2rem auto;
            background: white;
            border-radius: 56px 56px 40px 40px;
            box-shadow: 0 40px 70px -25px #1a3a5e;
            overflow: hidden;
        }

        .hero-mou {
            background: linear-gradient(145deg, #1a3a5e, #2b4f7a);
            padding: 3.5rem 3rem 4rem 3rem;
            color: white;
            position: relative;
            overflow: hidden;
        }

        .hero-mou::before {
            content: "📜🤝🔬🌿";
            font-size: 12rem;
            position: absolute;
            bottom: -30px;
            right: 20px;
            opacity: 0.12;
            transform: rotate(5deg);
        }

        .hero-mou .hero-grid {
            display: grid;
            grid-template-columns: 1.4fr 0.8fr;
            gap: 2.5rem;
            align-items: center;
        }

        .hero-mou .hero-title {
            font-size: clamp(2.2rem, 5vw, 3.8rem);
            font-weight: 800;
            line-height: 1.1;
            margin-bottom: 1.5rem;
        }

        .hero-mou .hero-title span {
            color: #b0d8ff;
            background: rgba(0,0,0,0.);
            display: inline-block;
            padding: 0 0.5rem;
        }

        .hero-mou .hero-text {
            font-size: 1.25rem;
            opacity: 0.95;
            margin-bottom: 2rem;
            max-width: 650px;
        }

        .hero-mou .hero-stats {
            display: flex;
            gap: 2rem;
            flex-wrap: wrap;
        }

        .hero-mou .stat-pill {
            background: rgba(255,255,255,0.2);
            backdrop-filter: blur(4px);
            padding: 0.7rem 1.8rem;
            border-radius: 60px;
            font-weight: 600;
            border: 1px solid rgba(255,255,255,0.4);
        }

        .hero-mou .hero-image {
            background: rgba(255,255,255,0.1);
            border-radius: 50px;
            padding: 2rem;
            display: flex;
            justify-content: center;
            border: 2px solid #b0d8ff;
        }

        .hero-mou .hero-image i {
            font-size: 10rem;
            color: #b0d8ff;
            filter: drop-shadow(0 15px 10px #1a3a5e);
        }

        .section-mou {
            padding: 3.5rem 3rem;
            border-bottom: 1px solid #d0dce8;
        }

        .section-header-mou {
            display: flex;
            align-items: center;
            gap: 1rem;
            margin-bottom: 2rem;
        }

        .section-header-mou i {
            font-size: 2.5rem;
            color: #1a6e9a;
            background: #e0f0fa;
            padding: 1rem;
            border-radius: 30px;
        }

        .section-header-mou h2 {
            font-size: 2rem;
            color: #1a3a5e;
            font-weight: 700;
        }

        .lead-mou {
            font-size: 1.2rem;
            color: #1f5e8f;
            border-left: 6px solid #1a6e9a;
            padding-left: 1.8rem;
            margin-bottom: 2rem;
            font-weight: 500;
        }

        .dignitaries-card {
            background: #e0f0fa;
            border-radius: 40px;
            padding: 2.5rem;
            margin: 2.5rem 0;
            border: 2px solid #1a6e9a;
            box-shadow: 0 15px 25px -10px #1a3a5e;
        }

        .dignitaries-card h3 {
            color: #1a3a5e;
            font-size: 1.8rem;
            margin-bottom: 1.5rem;
            text-align: center;
        }

        .dignitaries-grid {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 1.5rem;
            margin: 2rem auto;
            max-width: 800px;
        }

        .dignitary-item {
            text-align: center;
            padding: 1.5rem;
            background: white;
            border-radius: 28px;
            border: 1px solid #b8d8f0;
        }

        .dignitary-item i {
            font-size: 2.5rem;
            color: #1a6e9a;
            margin-bottom: 1rem;
        }

        .dignitary-item .name {
            font-weight: 700;
            color: #1a3a5e;
            font-size: 1.1rem;
        }

        .dignitary-item .title {
            color: #2b4a6e;
            font-size: 0.9rem;
            margin-top: 0.3rem;
        }

        .stats-grid-mou {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 1.5rem;
            margin: 2rem 0;
        }

        .stat-block-mou {
            background: #e0f0fa;
            border-radius: 24px;
            padding: 1.5rem;
            text-align: center;
        }

        .stat-number-mou {
            font-size: 2.4rem;
            font-weight: 800;
            color: #1a3a5e;
        }

        .btn-mou {
            background: #1a6e9a;
            color: white;
            padding: 1rem 2.5rem;
            border-radius: 60px;
            text-decoration: none;
            font-weight: 700;
            display: inline-flex;
            align-items: center;
            gap: 0.8rem;
            border: 2px solid #4088ac;
            transition: all 0.2s;
            cursor: pointer;
        }

        .btn-mou:hover {
            background: #2a8aba;
            transform: translateY(-3px);
            box-shadow: 0 15px 25px -10px #1a3a5e;
        }

        .footer-mou {
            background: #0f2a4a;
            color: white;
            padding: 2rem 3rem;
            display: flex;
            justify-content: space-between;
            align-items: center;
            flex-wrap: wrap;
        }

        /* ----- ANHUI SUMMIT ARTICLE STYLES ----- */
        .article-wrapper-anhui {
            max-width: 1400px;
            margin: 2rem auto;
            background: white;
            border-radius: 56px 56px 40px 40px;
            box-shadow: 0 40px 70px -25px #1a4b2a;
            overflow: hidden;
        }

        .hero-anhui {
            background: linear-gradient(145deg, #1a4b2a, #2d6e42, #1a3a5e);
            padding: 3.5rem 3rem 4rem 3rem;
            color: white;
            position: relative;
            overflow: hidden;
        }

        .hero-anhui::before {
            content: "🇵🇰🤝🇨🇳🌾";
            font-size: 12rem;
            position: absolute;
            bottom: -30px;
            right: 20px;
            opacity: 0.12;
            transform: rotate(5deg);
        }

        .hero-anhui .hero-grid {
            display: grid;
            grid-template-columns: 1.4fr 0.8fr;
            gap: 2.5rem;
            align-items: center;
        }

        .hero-anhui .hero-title {
            font-size: clamp(2.2rem, 5vw, 3.8rem);
            font-weight: 800;
            line-height: 1.1;
            margin-bottom: 1.5rem;
        }

        .hero-anhui .hero-title span {
            color: #e6f0b2;
            background: rgba(0,0,0,0.);
            display: inline-block;
            padding: 0 0.5rem;
        }

        .hero-anhui .hero-text {
            font-size: 1.25rem;
            opacity: 0.95;
            margin-bottom: 2rem;
            max-width: 650px;
        }

        .hero-anhui .hero-stats {
            display: flex;
            gap: 2rem;
            flex-wrap: wrap;
        }

        .hero-anhui .stat-pill {
            background: rgba(255,255,255,0.2);
            backdrop-filter: blur(4px);
            padding: 0.7rem 1.8rem;
            border-radius: 60px;
            font-weight: 600;
            border: 1px solid rgba(255,255,255,0.4);
        }

        .hero-anhui .hero-image {
            background: rgba(255,255,255,0.1);
            border-radius: 50px;
            padding: 2rem;
            display: flex;
            justify-content: center;
            border: 2px solid #e6f0b2;
        }

        .hero-anhui .hero-image i {
            font-size: 10rem;
            color: #e6f0b2;
            filter: drop-shadow(0 15px 10px #1a4b2a);
        }

        .section-anhui {
            padding: 3.5rem 3rem;
            border-bottom: 1px solid #c0ddc0;
        }

        .section-header-anhui {
            display: flex;
            align-items: center;
            gap: 1rem;
            margin-bottom: 2rem;
        }

        .section-header-anhui i {
            font-size: 2.5rem;
            color: #1f6e3f;
            background: #e4f4e0;
            padding: 1rem;
            border-radius: 30px;
        }

        .section-header-anhui h2 {
            font-size: 2rem;
            color: #1a5731;
            font-weight: 700;
        }

        .lead-anhui {
            font-size: 1.2rem;
            color: #1f5436;
            border-left: 6px solid #2e7d4e;
            padding-left: 1.8rem;
            margin-bottom: 2rem;
            font-weight: 500;
        }

        .delegation-card {
            background: #e8f5e8;
            border-radius: 40px;
            padding: 2.5rem;
            margin: 2.5rem 0;
            border: 2px solid #2e7d4e;
            box-shadow: 0 15px 25px -10px #1a5731;
        }

        .delegation-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 1.5rem;
            margin: 2rem 0;
        }

        .delegation-item {
            text-align: center;
            padding: 1.5rem;
            background: white;
            border-radius: 28px;
            border: 1px solid #b8dcb8;
        }

        .delegation-item i {
            font-size: 2.5rem;
            color: #1f6e3f;
            margin-bottom: 1rem;
        }

        .delegation-item .name {
            font-weight: 700;
            color: #1a5731;
            font-size: 1.1rem;
        }

        .delegation-item .title {
            color: #2b5737;
            font-size: 0.9rem;
            margin-top: 0.3rem;
        }

        .stats-grid-anhui {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 1.5rem;
            margin: 2rem 0;
        }

        .stat-block-anhui {
            background: #e0f0e0;
            border-radius: 24px;
            padding: 1.5rem;
            text-align: center;
        }

        .stat-number-anhui {
            font-size: 2.4rem;
            font-weight: 800;
            color: #1a5731;
        }

        .btn-anhui {
            background: #1f6e3f;
            color: white;
            padding: 1rem 2.5rem;
            border-radius: 60px;
            text-decoration: none;
            font-weight: 700;
            display: inline-flex;
            align-items: center;
            gap: 0.8rem;
            border: 2px solid #40875c;
            transition: all 0.2s;
            cursor: pointer;
        }

        .btn-anhui:hover {
            background: #2a8a4a;
            transform: translateY(-3px);
            box-shadow: 0 15px 25px -10px #1a5731;
        }

        .footer-anhui {
            background: #143b23;
            color: white;
            padding: 1.5rem 3rem;
            display: flex;
            flex-direction: row;
            align-items: center;
            justify-content: space-between;
            flex-wrap: wrap;
            gap: 1rem;
        }

        .footer-logo-anhui {
            font-weight: 800;
            font-size: 1.8rem;
            white-space: nowrap;
        }

        .footer-tagline {
            font-size: 1rem;
            color: #c0e0b0;
            text-align: center;
            flex: 1;
            margin: 0 1rem;
        }

        /* ----- WMC MEETING ARTICLE STYLES (NEW) ----- */
        .article-wrapper-wmc {
            max-width: 1400px;
            margin: 2rem auto;
            background: white;
            border-radius: 56px 56px 40px 40px;
            box-shadow: 0 40px 70px -25px #1a3a5e;
            overflow: hidden;
        }

        .hero-wmc {
            background: linear-gradient(145deg, #1a3a5e, #2b4f7a, #1e5631);
            padding: 3.5rem 3rem 4rem 3rem;
            color: white;
            position: relative;
            overflow: hidden;
            text-align: center;
        }

        .hero-wmc::before {
            content: "🌏🤝⚙️🌾";
            font-size: 12rem;
            position: absolute;
            bottom: -30px;
            right: 20px;
            opacity: 0.12;
            transform: rotate(5deg);
        }

        .hero-wmc::after {
            content: "🌏🤝⚙️🌾";
            font-size: 12rem;
            position: absolute;
            top: -30px;
            left: 20px;
            opacity: 0.12;
            transform: rotate(-5deg);
        }

        .hero-wmc .hero-content {
            max-width: 900px;
            margin: 0 auto;
            position: relative;
            z-index: 2;
        }

        .hero-wmc .hero-title {
            font-size: clamp(2.2rem, 5vw, 3.8rem);
            font-weight: 800;
            line-height: 1.1;
            margin-bottom: 1.5rem;
        }

        .hero-wmc .hero-title span {
            color: #ffdb9f;
            background: rgba(0,0,0,0.);
            display: inline-block;
            padding: 0 0.5rem;
        }

        .hero-wmc .hero-text {
            font-size: 1.25rem;
            opacity: 0.95;
            margin-bottom: 2rem;
            max-width: 800px;
            margin-left: auto;
            margin-right: auto;
        }

        .hero-wmc .hero-stats {
            display: flex;
            gap: 2rem;
            flex-wrap: wrap;
            justify-content: center;
        }

        .hero-wmc .stat-pill {
            background: rgba(255,255,255,0.2);
            backdrop-filter: blur(4px);
            padding: 0.7rem 1.8rem;
            border-radius: 60px;
            font-weight: 600;
            border: 1px solid rgba(255,255,255,0.4);
        }

        .section-wmc {
            padding: 3.5rem 3rem;
            border-bottom: 1px solid #e2e8f0;
        }

        .section-header-wmc {
            display: flex;
            align-items: center;
            gap: 1rem;
            margin-bottom: 2rem;
        }

        .section-header-wmc i {
            font-size: 2.5rem;
            color: #1a6e9a;
            background: #e0f0fa;
            padding: 1rem;
            border-radius: 30px;
        }

        .section-header-wmc h2 {
            font-size: 2rem;
            color: #1a3a5e;
            font-weight: 700;
        }

        .lead-wmc {
            font-size: 1.2rem;
            color: #2c4a6e;
            border-left: 6px solid #1a6e9a;
            padding-left: 1.8rem;
            margin-bottom: 2rem;
            font-weight: 500;
        }

        .event-card {
            background: #f0f7ff;
            border-radius: 40px;
            padding: 2.5rem;
            margin: 2.5rem 0;
            border: 2px solid #1a6e9a;
            box-shadow: 0 15px 25px -10px #1a3a5e;
        }

        .event-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 1.5rem;
            margin: 2rem 0;
        }

        .event-item {
            text-align: center;
            padding: 1.5rem;
            background: white;
            border-radius: 28px;
            border: 1px solid #e2e8f0;
        }

        .event-item i {
            font-size: 2.5rem;
            color: #1a6e9a;
            margin-bottom: 1rem;
        }

        .event-item .stat {
            font-weight: 700;
            color: #1a3a5e;
            font-size: 1.8rem;
        }

        .event-item .label {
            color: #475569;
            font-size: 0.95rem;
        }

        .speaker-card {
            background: white;
            border-radius: 30px;
            padding: 2rem;
            margin: 2rem 0;
            border: 2px solid #1a6e9a;
            box-shadow: 0 15px 25px -10px #1a3a5e;
        }

        .speaker-highlight {
            display: flex;
            align-items: center;
            gap: 2rem;
            flex-wrap: wrap;
        }

        .speaker-icon {
            width: 100px;
            height: 100px;
            background: #1a3a5e;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 3rem;
            color: white;
            border: 4px solid #ffdb9f;
        }

        .stats-grid-wmc {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 1.5rem;
            margin: 2rem 0;
        }

        .stat-block-wmc {
            background: #f8fafc;
            border-radius: 24px;
            padding: 1.5rem;
            text-align: center;
            border: 1px solid #e2e8f0;
        }

        .stat-number-wmc {
            font-size: 2.4rem;
            font-weight: 800;
            color: #1a3a5e;
        }

        .stat-label-wmc {
            color: #475569;
            font-weight: 500;
        }

        .stat-desc {
            font-size: 0.9rem;
            color: #64748b;
            margin-top: 0.3rem;
        }

        .btn-wmc {
            background: #1a6e9a;
            color: white;
            padding: 1rem 2.5rem;
            border-radius: 60px;
            text-decoration: none;
            font-weight: 700;
            display: inline-flex;
            align-items: center;
            gap: 0.8rem;
            border: 2px solid #4088ac;
            transition: all 0.2s;
            cursor: pointer;
        }

        .btn-wmc:hover {
            background: #2a8aba;
            transform: translateY(-3px);
            box-shadow: 0 15px 25px -10px #1a3a5e;
        }

        .footer-wmc {
            background: #0f2a4a;
            color: white;
            padding: 2rem 3rem;
            display: flex;
            flex-direction: row;
            align-items: center;
            justify-content: space-between;
            flex-wrap: wrap;
            gap: 1rem;
        }

        .footer-logo-wmc {
            font-weight: 800;
            font-size: 1.8rem;
            white-space: nowrap;
        }

        .footer-tagline {
            font-size: 1rem;
            color: #a0c0e0;
            text-align: center;
            flex: 1;
            margin: 0 1rem;
        }

        @media (max-width: 900px) {
            .grid-3, .grid-4, .grid-2, .details-grid, .extraction-benefits, .stats-grid-parb, .stats-grid-mou, .stats-grid-anhui, .stats-grid-wmc, .event-grid, .delegation-grid, .dignitaries-grid { 
                grid-template-columns: 1fr; 
            }
            .hero-uos .hero-grid, .hero-ai-health .hero-grid, .hero-mint .hero-grid, 
            .hero-tt .hero-grid, .hero-solar .hero-grid, .hero-farm .hero-grid, 
            .hero-health .hero-grid, .hero-parb .hero-grid, .hero-mou .hero-grid,
            .hero-anhui .hero-grid, .hero-wmc .hero-grid { 
                grid-template-columns: 1fr; 
            }
            .timeline { 
                flex-direction: column; 
                align-items: center; 
                gap: 2rem; 
            }
            .timeline::before { 
                display: none; 
            }
            .footer-wmc, .footer-anhui {
                flex-direction: column;
                text-align: center;
            }
            .footer-tagline {
                margin: 0.5rem 0;
            }
            .speaker-highlight { 
                flex-direction: column; 
                text-align: center; 
            }
        }


/* Right to Left Animation (First Row) */
@keyframes scrollRightToLeft {
    0% {
        transform: translateX(0);
    }
    100% {
        /* Move exactly the width of the first set of 10 photos */
        /* 10 photos * (280px width + 20px gap) = 3000px */
        transform: translateX(calc(-3000px));
    }
}

/* Left to Right Animation (Second Row) */
@keyframes scrollLeftToRight {
    0% {
        transform: translateX(calc(-3000px));
    }
    100% {
        transform: translateX(0);
    }
}

/* Pause animation on hover */
.photo-reel-right-to-left:hover,
.photo-reel-left-to-right:hover {
    animation-play-state: paused;
}

/* Ensure full visibility on all screen sizes */
.photo-frame {
    transition: transform 0.3s ease;
}

.photo-frame:hover {
    transform: translateY(-5px);
}

/* Add spacing between rows */
.reel-container {
    margin-bottom: 10px;
}

/* Responsive adjustments */
@media (max-width: 1200px) {
    .photo-frame {
        width: 260px !important;
    }
    @keyframes scrollRightToLeft {
        100% {
            transform: translateX(calc(-2800px)); /* 10 * (260 + 20) */
        }
    }
    @keyframes scrollLeftToRight {
        0% {
            transform: translateX(calc(-2800px));
        }
        100% {
            transform: translateX(0);
        }
    }
}

@media (max-width: 992px) {
    .photo-frame {
        width: 240px !important;
    }
    .photo-frame img {
        height: 160px !important;
    }
    @keyframes scrollRightToLeft {
        100% {
            transform: translateX(calc(-2600px)); /* 10 * (240 + 20) */
        }
    }
    @keyframes scrollLeftToRight {
        0% {
            transform: translateX(calc(-2600px));
        }
        100% {
            transform: translateX(0);
        }
    }
}

@media (max-width: 768px) {
    .photo-frame {
        width: 220px !important;
    }
    .photo-frame img {
        height: 150px !important;
    }
    .photo-frame p {
        font-size: 13px !important;
    }
    /* Adjust gradient overlays for mobile */
    div[style*="position: absolute; left: 0; top: 0; width: 80px;"] {
        width: 40px !important;
    }
    div[style*="position: absolute; right: 0; top: 0; width: 80px;"] {
        width: 40px !important;
    }
    @keyframes scrollRightToLeft {
        100% {
            transform: translateX(calc(-2400px)); /* 10 * (220 + 20) */
        }
    }
    @keyframes scrollLeftToRight {
        0% {
            transform: translateX(calc(-2400px));
        }
        100% {
            transform: translateX(0);
        }
    }
}

@media (max-width: 480px) {
    .photo-frame {
        width: 200px !important;
    }
    .photo-frame img {
        height: 130px !important;
    }
    .photo-frame p {
        font-size: 12px !important;
    }
    .photo-reel-right-to-left,
    .photo-reel-left-to-right {
        gap: 15px !important;
    }
    @keyframes scrollRightToLeft {
        100% {
            transform: translateX(calc(-2150px)); /* 10 * (200 + 15) */
        }
    }
    @keyframes scrollLeftToRight {
        0% {
            transform: translateX(calc(-2150px));
        }
        100% {
            transform: translateX(0);
        }
    }
}

@keyframes scrollReel {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}

/* Pause animation on hover */
.photo-reel:hover {
    animation-play-state: paused;
}

/* Ensure full visibility on all screen sizes */
.photo-frame {
    transition: transform 0.3s ease;
}

.photo-frame:hover {
    transform: translateY(-5px);
}

/* Responsive adjustments */
@media (max-width: 1200px) {
    .photo-frame {
        width: 260px !important;
    }
}

@media (max-width: 992px) {
    .photo-frame {
        width: 240px !important;
    }
    .photo-frame img {
        height: 160px !important;
    }
}

@media (max-width: 768px) {
    .photo-frame {
        width: 220px !important;
    }
    .photo-frame img {
        height: 150px !important;
    }
    .photo-frame p {
        font-size: 13px !important;
    }
    /* Adjust gradient overlays for mobile */
    div[style*="position: absolute; left: 0; top: 0; width: 80px;"] {
        width: 40px !important;
    }
    div[style*="position: absolute; right: 0; top: 0; width: 80px;"] {
        width: 40px !important;
    }
}

@media (max-width: 480px) {
    .photo-frame {
        width: 200px !important;
    }
    .photo-frame img {
        height: 130px !important;
    }
    .photo-frame p {
        font-size: 12px !important;
    }
    .gap-20 {
        gap: 15px !important;
    }
}

/* Particle background */
#particles-js {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    z-index: 0;
}