
        * { box-sizing: border-box; }
        
        /* Main Layout */
        .ecosystem-wrapper {
            display: grid;
            grid-template-columns: 280px 1fr;
            gap: 0;
            min-height: 100vh;
        }

        @media (max-width: 1024px) {
            .ecosystem-wrapper {
                grid-template-columns: 1fr;
            }
        }

        /* Sidebar */
        .ecosystem-sidebar {
            background: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
            padding: 30px 20px;
            overflow-y: auto;
            max-height: 100vh;
            position: sticky;
            top: 0;
            border-right: 1px solid #e2e8f0;
        }

        .sidebar-title {
            font-size: 20px;
            font-weight: 700;
            color: white;
            margin-bottom: 32px;
            display: flex;
            align-items: center;
            gap: 10px;
        }

        .filter-section {
            margin-bottom: 28px;
        }

        .filter-label {
            font-size: 12px;
            font-weight: 700;
            color: #cbd5e1;
            text-transform: uppercase;
            letter-spacing: 0.5px;
            margin-bottom: 12px;
            display: block;
        }

        .category-selector {
            display: flex;
            flex-direction: column;
            gap: 8px;
        }

        .category-option {
            padding: 12px 14px;
            background: rgba(255, 255, 255, 0.05);
            border: 2px solid rgba(255, 255, 255, 0.1);
            border-radius: 8px;
            color: #cbd5e1;
            cursor: pointer;
            transition: all 0.3s ease;
            font-weight: 500;
            font-size: 13px;
            display: flex;
            align-items: center;
            gap: 10px;
        }

        .category-option:hover {
            background: rgba(255, 255, 255, 0.1);
            border-color: #0ea5e9;
            color: #0ea5e9;
        }

        .category-option.active {
            background: linear-gradient(135deg, #0ea5e9, #0284c7);
            border-color: #0ea5e9;
            color: white;
            box-shadow: 0 6px 20px rgba(14, 165, 233, 0.3);
        }

        .category-option i {
            font-size: 14px;
        }

        .filter-divider {
            height: 1px;
            background: rgba(255, 255, 255, 0.1);
            margin: 24px 0;
        }

        .view-toggle {
            display: flex;
            gap: 8px;
            background: rgba(255, 255, 255, 0.05);
            padding: 6px;
            border-radius: 8px;
        }

        .view-btn {
            flex: 1;
            padding: 8px 12px;
            background: transparent;
            border: none;
            color: #cbd5e1;
            cursor: pointer;
            border-radius: 6px;
            font-size: 12px;
            transition: all 0.3s ease;
            font-weight: 600;
        }

        .view-btn.active {
            background: #0ea5e9;
            color: white;
        }

        /* Main Content */
        .ecosystem-content {
            overflow-y: auto;
            padding: 40px;
        }

        /* Header */
        .ecosystem-header {
            margin-bottom: 40px;
        }

        .header-top {
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin-bottom: 24px;
        }

        .header-title {
            font-size: 32px;
            font-weight: 800;
            color: #0f172a;
            margin: 0;
            display: flex;
            align-items: center;
            gap: 12px;
        }

        .header-icon {
            width: 48px;
            height: 48px;
            background: linear-gradient(135deg, #0ea5e9, #0284c7);
            border-radius: 12px;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-size: 24px;
        }

        /* Stats Cards */
        .stats-overview {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 16px;
            margin-bottom: 40px;
        }

        .stat-card {
            background: white;
            border-radius: 12px;
            padding: 24px;
            border: 2px solid;
            transition: all 0.3s ease;
        }

        .stat-card:hover {
            transform: translateY(-4px);
            box-shadow: 0 12px 24px rgba(0,0,0,0.1);
        }

        .stat-card.blue { border-color: #0ea5e9; background: linear-gradient(135deg, #f0f7ff, #f8fbff); }
        .stat-card.green { border-color: #10b981; background: linear-gradient(135deg, #f0fdf4, #f8fdf5); }
        .stat-card.orange { border-color: #f59e0b; background: linear-gradient(135deg, #fffbeb, #fef3f0); }
        .stat-card.purple { border-color: #8b5cf6; background: linear-gradient(135deg, #f3e8ff, #faf5ff); }

        .stat-icon {
            width: 48px;
            height: 48px;
            border-radius: 10px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 24px;
            margin-bottom: 12px;
            color: white;
        }

        .stat-card.blue .stat-icon { background: linear-gradient(135deg, #0ea5e9, #0284c7); }
        .stat-card.green .stat-icon { background: linear-gradient(135deg, #10b981, #059669); }
        .stat-card.orange .stat-icon { background: linear-gradient(135deg, #f59e0b, #d97706); }
        .stat-card.purple .stat-icon { background: linear-gradient(135deg, #8b5cf6, #7c3aed); }

        .stat-number {
            font-size: 28px;
            font-weight: 800;
            margin: 0 0 4px 0;
        }

        .stat-card.blue .stat-number { color: #0ea5e9; }
        .stat-card.green .stat-number { color: #10b981; }
        .stat-card.orange .stat-number { color: #f59e0b; }
        .stat-card.purple .stat-number { color: #8b5cf6; }

        .stat-label {
            font-size: 12px;
            color: #64748b;
            margin: 0;
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 0.5px;
        }

        /* Search Bar */
        .search-bar-container {
            margin-bottom: 32px;
        }

        .search-bar {
            position: relative;
            display: flex;
            gap: 12px;
            align-items: stretch;
        }

        .search-input {
            flex: 1;
            padding: 14px 18px 14px 45px;
            border: 2px solid #e2e8f0;
            border-radius: 10px;
            font-size: 14px;
            font-family: 'Inter', sans-serif;
            transition: all 0.3s ease;
        }

        .search-input:focus {
            outline: none;
            border-color: #0ea5e9;
            box-shadow: 0 0 0 3px rgba(14, 165, 233, 0.1);
        }

        .search-icon {
            position: absolute;
            left: 16px;
            top: 50%;
            transform: translateY(-50%);
            color: #0ea5e9;
            font-size: 16px;
            pointer-events: none;
        }

        .filter-btn {
            padding: 12px 20px;
            background: #0ea5e9;
            border: 2px solid #0ea5e9;
            border-radius: 10px;
            color: white;
            font-weight: 600;
            display: flex;
            align-items: center;
            gap: 8px;
            white-space: nowrap;
            cursor: pointer;
            transition: all 0.3s ease;
            font-size: 14px;
        }

        .filter-btn:hover {
            background: #0284c7;
            border-color: #0284c7;
            transform: translateY(-2px);
            box-shadow: 0 8px 16px rgba(14, 165, 233, 0.3);
        }

        .filter-btn:hover {
            border-color: #0ea5e9;
            color: #0ea5e9;
        }

        /* Grid View */
        .partners-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(380px, 1fr));
            gap: 20px;
        }

        /* Partner Card */
        .partner-card {
            background: white;
            border-radius: 12px;
            padding: 20px;
            border: 2px solid #e2e8f0;
            transition: all 0.3s ease;
            cursor: pointer;
            position: relative;
            overflow: hidden;
        }

        .partner-card:hover {
            box-shadow: 0 16px 32px rgba(0,0,0,0.12);
            transform: translateY(-6px);
            border-color: #0ea5e9;
        }

        .partner-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 4px;
            background: linear-gradient(90deg, #0ea5e9, #0284c7);
        }

        .card-badge {
            position: absolute;
            top: 16px;
            right: 16px;
            padding: 6px 12px;
            border-radius: 6px;
            font-size: 11px;
            font-weight: 700;
            text-transform: uppercase;
        }

        .badge-institutes { background: #e0f2fe; color: #0ea5e9; }
        .badge-colleges { background: #d1f1e3; color: #10b981; }
        .badge-universities { background: #fef3c0; color: #f59e0b; }

        .card-title {
            font-size: 16px;
            font-weight: 700;
            color: #0f172a;
            margin: 0 0 12px 0;
            line-height: 1.4;
            padding-right: 80px;
        }

        .card-meta {
            display: flex;
            flex-direction: column;
            gap: 10px;
            margin-top: 16px;
            padding-top: 16px;
            border-top: 1px solid #f1f5f9;
        }

        .meta-item {
            display: flex;
            align-items: center;
            gap: 8px;
            font-size: 13px;
            color: #64748b;
        }

        .meta-item i {
            color: #0ea5e9;
            width: 16px;
            text-align: center;
        }

        .meta-value {
            font-weight: 600;
            color: #0f172a;
        }

        /* Map View */
        #ecosystem-map {
            height: 600px;
            border-radius: 12px;
            box-shadow: 0 10px 30px rgba(0,0,0,0.15);
            border: 1px solid #e2e8f0;
            margin-top: 20px;
        }

        /* List View */
        .partners-table {
            width: 100%;
            border-collapse: collapse;
            background: white;
            border-radius: 12px;
            overflow: hidden;
            box-shadow: 0 4px 12px rgba(0,0,0,0.08);
        }

        .partners-table thead {
            background: linear-gradient(135deg, #0f172a, #1e293b);
            color: white;
        }

        .partners-table th {
            padding: 16px;
            text-align: left;
            font-weight: 700;
            font-size: 12px;
            text-transform: uppercase;
            letter-spacing: 0.5px;
        }

        .partners-table td {
            padding: 16px;
            border-bottom: 1px solid #f1f5f9;
            font-size: 13px;
        }

        .partners-table tbody tr:hover {
            background: #f8fafc;
        }

        .table-name {
            font-weight: 600;
            color: #0f172a;
        }

        .table-meta {
            color: #64748b;
            font-size: 12px;
        }

        /* Featured Section */
        .featured-section {
            background: linear-gradient(135deg, #0ea5e9, #0284c7);
            border-radius: 16px;
            padding: 32px;
            color: white;
            margin-bottom: 40px;
            text-align: center;
        }

        .featured-title {
            font-size: 24px;
            font-weight: 700;
            margin-bottom: 12px;
        }

        .featured-desc {
            margin-bottom: 20px;
            opacity: 0.9;
        }

        /* Empty State */
        .empty-state {
            text-align: center;
            padding: 60px 40px;
        }

        .empty-icon {
            font-size: 64px;
            color: #cbd5e1;
            margin-bottom: 16px;
        }

        /* Responsive */
        @media (max-width: 1024px) {
            .ecosystem-sidebar {
                max-height: auto;
                position: relative;
                padding: 20px;
            }
            
            .ecosystem-content {
                padding: 24px;
            }
        }

        @media (max-width: 768px) {
            .partners-grid {
                grid-template-columns: 1fr;
            }

            .stats-overview {
                grid-template-columns: repeat(2, 1fr);
            }

            .header-title {
                font-size: 24px;
            }
        }


        /* Map Container */
        #map { 
            height: 600px; 
            border-radius: 12px; 
            box-shadow: 0 10px 30px rgba(0,0,0,0.15);
            border: 1px solid #e2e8f0;
        }

        /* State Filter Buttons */
        .state-filter-btn { 
            margin: 6px; 
            padding: 10px 18px; 
            border: 2px solid #e2e8f0; 
            background: white; 
            border-radius: 25px; 
            cursor: pointer; 
            transition: all 0.3s ease;
            font-weight: 500;
            font-size: 13px;
            box-shadow: 0 2px 4px rgba(0,0,0,0.05);
        }
        .state-filter-btn:hover { 
            border-color: #0ea5e9; 
            color: #0ea5e9;
            box-shadow: 0 4px 12px rgba(14, 165, 233, 0.2);
            transform: translateY(-2px);
        }
        .state-filter-btn.active { 
            background: linear-gradient(135deg, #0ea5e9, #0284c7);
            color: white; 
            border-color: #0ea5e9;
            box-shadow: 0 6px 20px rgba(14, 165, 233, 0.3);
        }

        /* District Card Styles */
        .district-card {
            background: white;
            border-radius: 12px;
            padding: 24px;
            margin-bottom: 16px;
            box-shadow: 0 4px 12px rgba(0,0,0,0.08);
            border-left: 5px solid #0ea5e9;
            transition: all 0.3s ease;
            cursor: pointer;
            overflow: hidden;
            position: relative;
        }

        .district-card:hover {
            box-shadow: 0 12px 28px rgba(0,0,0,0.15);
            transform: translateY(-4px);
            border-left-color: #0284c7;
        }

        .district-card::before {
            content: '';
            position: absolute;
            top: 0;
            right: 0;
            width: 100px;
            height: 100px;
            background: radial-gradient(circle at right, rgba(14, 165, 233, 0.1), transparent);
            border-radius: 50%;
        }

        .district-header {
            display: flex;
            align-items: center;
            justify-content: space-between;
            margin-bottom: 16px;
            position: relative;
            z-index: 1;
        }

        .district-name {
            font-size: 20px;
            font-weight: 700;
            color: #0f172a;
            margin: 0;
            display: flex;
            align-items: center;
        }

        .district-name i {
            color: #0ea5e9;
            margin-right: 10px;
            font-size: 18px;
        }

        .centers-badge {
            background: linear-gradient(135deg, #0ea5e9, #0284c7);
            color: white;
            padding: 8px 16px;
            border-radius: 20px;
            font-weight: 600;
            font-size: 13px;
            box-shadow: 0 4px 10px rgba(14, 165, 233, 0.3);
        }

        /* Training Center List */
        .training-centers-list {
            margin-top: 16px;
            padding-top: 16px;
            border-top: 1px solid #e2e8f0;
        }

        .training-center-item {
            padding: 12px 0;
            border-bottom: 1px solid #f1f5f9;
            display: flex;
            align-items: flex-start;
            gap: 12px;
        }

        .training-center-item:last-child {
            border-bottom: none;
        }

        .center-icon {
            width: 40px;
            height: 40px;
            background: linear-gradient(135deg, #0ea5e9, #0284c7);
            border-radius: 8px;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            flex-shrink: 0;
            font-size: 18px;
        }

        .center-details {
            flex: 1;
        }

        .center-name {
            font-size: 13px;
            font-weight: 600;
            color: #0f172a;
            margin-bottom: 4px;
            line-height: 1.3;
        }

        .center-email {
            font-size: 12px;
            color: #0ea5e9;
            text-decoration: none;
            word-break: break-all;
        }

        .center-email:hover {
            text-decoration: underline;
        }

        /* Contact Button */
        .contact-btn {
            background: linear-gradient(135deg, #0ea5e9, #0284c7);
            color: white;
            padding: 8px 14px;
            border: none;
            border-radius: 6px;
            cursor: pointer;
            font-size: 12px;
            font-weight: 600;
            transition: all 0.3s ease;
            box-shadow: 0 4px 10px rgba(14, 165, 233, 0.2);
            margin-top: 8px;
        }

        .contact-btn:hover {
            box-shadow: 0 6px 16px rgba(14, 165, 233, 0.35);
            transform: scale(1.05);
        }

        .contact-btn:active {
            transform: scale(0.98);
        }

        /* Stats Container */
        .stats-container {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 16px;
            margin-bottom: 32px;
        }

        .stat-card {
            background: linear-gradient(135deg, #f0f7ff, #f8fbff);
            padding: 24px;
            border-radius: 12px;
            border: 2px solid #e0f2fe;
            text-align: center;
        }

        .stat-number {
            font-size: 32px;
            font-weight: 700;
            color: #0ea5e9;
            margin: 0;
        }

        .stat-label {
            font-size: 14px;
            color: #64748b;
            margin-top: 8px;
            margin-bottom: 0;
        }

        /* Search Container */
        .search-container {
            position: relative;
            margin-bottom: 32px;
        }

        .search-container i {
            position: absolute;
            left: 16px;
            top: 14px;
            color: #0ea5e9;
            font-size: 16px;
        }

        .search-input {
            width: 100%;
            padding: 12px 16px 12px 45px;
            border: 2px solid #e2e8f0;
            border-radius: 10px;
            font-size: 14px;
            outline: none;
            transition: all 0.3s ease;
            font-family: 'Arial', sans-serif;
        }

        .search-input:focus {
            border-color: #0ea5e9;
            box-shadow: 0 0 0 3px rgba(14, 165, 233, 0.1);
        }

        /* Expansion Arrow */
        .expand-icon {
            color: #0ea5e9;
            transition: transform 0.3s ease;
            font-size: 14px;
        }

        .district-card.expanded .expand-icon {
            transform: rotate(180deg);
        }

        /* Empty State */
        .empty-state {
            text-align: center;
            padding: 48px 24px;
            color: #64748b;
        }

        .empty-state i {
            font-size: 48px;
            color: #cbd5e1;
            margin-bottom: 16px;
        }

        .empty-state p {
            font-size: 16px;
            margin-bottom: 0;
        }

        /* Responsive */
        @media (max-width: 768px) {
            #map {
                height: 400px;
            }
            
            .district-card {
                padding: 16px;
            }

            .district-name {
                font-size: 16px;
            }

            .centers-badge {
                font-size: 12px;
                padding: 6px 12px;
            }
        }
    

    html, body { overflow-x: hidden; }
    body { background: var(--gray-50); font-family: Arial, sans-serif; }

    /* Page-scoped (professional, low-noise) */
    .tp-hero {
      background: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
      color: #fff;
      padding: clamp(34px, 5vw, 64px) 0;
    }
    .tp-hero .container-custom { position: relative; }
    .tp-breadcrumb {
      display: inline-flex;
      align-items: center;
      gap: 10px;
      padding: 8px 12px;
      border-radius: 999px;
      background: rgba(255,255,255,0.06);
      border: 1px solid rgba(255,255,255,0.12);
      font-size: 12px;
      font-weight: 600;
      margin-bottom: 14px;
      width: fit-content;
    }
    .tp-title {
      margin: 0 0 10px 0;
      font-size: clamp(24px, 3.2vw, 40px);
      line-height: 1.15;
      letter-spacing: -0.01em;
      color: #fff;
      font-weight: 700;
      font-family: Arial, sans-serif;
    }
    .tp-subtitle {
      margin: 0;
      max-width: 85ch;
      color: rgba(255,255,255,0.78);
      font-size: clamp(14px, 1.35vw, 17px);
      line-height: 1.7;
    }

    .tp-cta { margin-top: 18px; display: flex; flex-wrap: wrap; gap: 10px; }
    .tp-btn {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      gap: 10px;
      padding: 11px 14px;
      border-radius: 12px;
      font-weight: 700;
      font-size: 14px;
      border: 1px solid transparent;
      cursor: pointer;
      white-space: nowrap;
      transition: background .15s ease, border-color .15s ease, color .15s ease;
    }
    .tp-btn-primary { background: var(--accent); color: #fff; }
    .tp-btn-primary:hover { background: var(--accent-dark); }
    .tp-btn-secondary { background: rgba(255,255,255,0.08); color: #fff; border-color: rgba(255,255,255,0.22); }
    .tp-btn-secondary:hover { background: rgba(255,255,255,0.14); }

    .tp-main { padding: clamp(22px, 3.2vw, 44px) 0 clamp(42px, 6vw, 78px); }
    .tp-grid { display: grid; grid-template-columns: 1.1fr 0.9fr; gap: 24px; align-items: start; }

    .tp-card {
      background: #fff;
      border: 1px solid #e5e7eb;
      border-radius: 16px;
      box-shadow: 0 2px 10px rgba(2,6,23,0.05);
      overflow: hidden;
    }
    .tp-card-header {
      padding: 18px 20px;
      border-bottom: 1px solid #eef2f7;
      background: #f8fafc;
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 12px;
    }
    .tp-card-title {
      margin: 0;
      font-size: 16px;
      font-weight: 700;
      color: var(--primary);
      letter-spacing: 0;
    }
    .tp-pill {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      padding: 6px 10px;
      border-radius: 999px;
      background: #fff;
      color: var(--gray-500);
      border: 1px solid #e5e7eb;
      font-size: 12px;
      font-weight: 600;
      white-space: nowrap;
    }
    .tp-pill i { opacity: 0.55; }
    .tp-card-body { padding: 18px 20px; }
    .tp-text { margin: 0; color: var(--gray-500); line-height: 1.75; font-size: 14px; }

    .tp-list { list-style: none; padding: 0; margin: 0; display: grid; gap: 10px; }
    .tp-item {
      display: flex;
      gap: 12px;
      align-items: flex-start;
      padding: 10px 12px;
      border-radius: 12px;
      border: 1px solid #eef2f7;
      background: #fff;
    }
    .tp-ico {
      width: 34px;
      height: 34px;
      border-radius: 12px;
      display: flex;
      align-items: center;
      justify-content: center;
      flex: 0 0 auto;
      background: #f1f5f9;
      color: #334155;
      border: 1px solid #e2e8f0;
    }
    .tp-ico i { font-size: 14px; opacity: 0.85; }
    .tp-item-text { font-weight: 600; color: var(--primary); font-size: 14px; line-height: 1.35; margin-top: 4px; }

    .tp-note {
      margin-top: 14px;
      padding: 12px 14px;
      border-radius: 14px;
      border: 1px solid #e2e8f0;
      background: #f8fafc;
      color: var(--gray-600);
      font-size: 13px;
      line-height: 1.65;
    }

    .tp-side { display: grid; gap: 16px; }
    .tp-mini { padding: 16px 18px; }
    .tp-mini h4 { margin: 0 0 8px 0; font-size: 14px; font-weight: 700; color: var(--primary); }
    .tp-mini p { margin: 0; font-size: 13px; color: var(--gray-500); line-height: 1.7; }
    .tp-mini-icon {
      width: 44px; height: 44px; border-radius: 14px;
      display: flex; align-items: center; justify-content: center;
      background: #f1f5f9; border: 1px solid #e2e8f0; color: #334155;
      margin-bottom: 10px; font-size: 16px;
    }
    .tp-cta-panel {
      background: #fff;
      border: 1px solid #e5e7eb;
      border-radius: 16px;
      padding: 18px;
      display: grid;
      gap: 12px;
    }
    .tp-cta-panel strong { color: var(--primary); font-weight: 700; }
    .tp-cta-panel .tp-btn { width: 100%; justify-content: center; }

    @media (max-width: 992px) {
      .tp-grid { grid-template-columns: 1fr; }
      .tp-cta-panel .tp-btn { width: fit-content; }
    }
    @media (max-width: 480px) {
      .tp-cta .tp-btn { width: 100%; }
      .tp-card-header { flex-direction: column; align-items: flex-start; }
    }
 
 
      body, html {
  overflow-x: hidden;
}
        * { margin: 0; padding: 0; box-sizing: border-box; }
        html { scroll-behavior: smooth; }
        body { font-family: "Arial", sans-serif; color: var(--primary); background: var(--gray-50); }
        .hero { background: linear-gradient(135deg, var(--primary) 0%, #1a3a52 100%); color: var(--white); padding: 100px 24px 80px; position: relative; overflow: hidden; }
        .hero::before { content: ""; position: absolute; top: -50%; right: -10%; width: 500px; height: 500px; background: radial-gradient(circle, rgba(14, 165, 233, 0.1) 0%, transparent 70%); border-radius: 50%; pointer-events: none; }
        .hero-content { max-width: 1400px; margin: 0 auto; text-align: center; position: relative; z-index: 1; }
        .hero h1 { font-family: "Arial", sans-serif; font-size: 3.2rem; font-weight: 700; margin-bottom: 20px; line-height: 1.3; color: #ffffff; }
        .hero p { font-size: 1.1rem; color: #ffffff; margin-bottom: 40px; max-width: 700px; margin-left: auto; margin-right: auto; line-height: 1.6; }
        .search-container { max-width: 600px; margin: 0 auto; display: flex; gap: 12px; }
        .search-input { flex: 1; padding: 14px 20px; border: none; border-radius: 8px; font-size: 14px; background: rgba(255, 255, 255, 0.95); }
        .search-btn { padding: 14px 32px; background: var(--accent); color: var(--white); border: none; border-radius: 8px; font-weight: 600; cursor: pointer; transition: all 0.3s ease; }
        .search-btn:hover { background: var(--accent-dark); }
        .filters-section { background: var(--white); padding: 40px 24px; border-bottom: 1px solid #e5e7eb; }
        .filters-container { max-width: 1400px; margin: 0 auto; display: flex; gap: 12px; flex-wrap: wrap; justify-content: center; }
        .filter-btn { padding: 10px 24px; border: 1.5px solid #e5e7eb; background: var(--white); color: #4b5563; border-radius: 8px; font-weight: 600; font-size: 14px; cursor: pointer; transition: all 0.3s ease; }
        .filter-btn:hover, .filter-btn.active { border-color: var(--accent); color: var(--accent); background: rgba(14, 165, 233, 0.05); }
        .main-content { max-width: 1400px; margin: 0 auto; padding: 60px 24px; }
        .featured-article { background: var(--white); border-radius: 16px; overflow: hidden; box-shadow: 0 12px 32px rgba(0, 0, 0, 0.1); margin-bottom: 80px; display: grid; grid-template-columns: 1fr 1fr; gap: 0; transition: all 0.3s ease; }
        .featured-article:hover { box-shadow: 0 20px 48px rgba(14, 165, 233, 0.15); }
        .featured-image { height: 450px; background: linear-gradient(135deg, var(--accent) 0%, var(--accent-dark) 100%); display: flex; align-items: center; justify-content: center; font-size: 5rem; color: rgba(255, 255, 255, 0.15); position: relative; overflow: hidden; }
        .featured-image::before { content: ""; position: absolute; top: -50%; right: -50%; width: 600px; height: 600px; background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 70%); border-radius: 50%; }
        .featured-content { padding: 60px; display: flex; flex-direction: column; justify-content: center; }
        .featured-badge { display: inline-block; background: linear-gradient(135deg, rgba(14, 165, 233, 0.15) 0%, rgba(14, 165, 233, 0.05) 100%); color: var(--accent); padding: 8px 16px; border-radius: 6px; font-weight: 700; font-size: 11px; text-transform: uppercase; letter-spacing: 1px; width: fit-content; margin-bottom: 20px; border-left: 3px solid var(--accent); }
        .featured-title { font-family: "Arial", sans-serif; font-size: 2.6rem; font-weight: 700; color: var(--primary); margin-bottom: 20px; line-height: 1.3; }
        .featured-meta { display: flex; gap: 24px; margin-bottom: 24px; font-size: 14px; color: #6b7280; }      
        .featured-excerpt { font-size: 1.05rem; color: #4b5563; line-height: 1.8; margin-bottom: 30px; }
        .read-more-btn { display: inline-flex; align-items: center; gap: 10px; padding: 14px 32px; background: var(--accent); color: var(--white); border: none; border-radius: 8px; font-weight: 600; cursor: pointer; text-decoration: none; width: fit-content; transition: all 0.3s ease; }
        .read-more-btn:hover { background: var(--accent-dark); transform: translateX(4px); gap: 16px; }
        .gallery-section { margin-top: 80px; margin-bottom: 80px; }
        .section-header { margin-bottom: 50px; }
        .section-title { font-family: "Arial", sans-serif; font-size: 2rem; font-weight: 700; color: var(--primary); margin-bottom: 8px; }
        .section-subtitle { font-size: 0.95rem; color: #4b5563; line-height: 1.5; }
        .gallery-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(280px, 1fr)); gap: 24px; }
        .gallery-item { position: relative; height: 280px; border-radius: 12px; overflow: hidden; background: linear-gradient(135deg, var(--accent) 0%, var(--accent-dark) 100%); cursor: pointer; transition: all 0.3s ease; display: flex; align-items: center; justify-content: center; font-size: 2.5rem; color: rgba(255, 255, 255, 0.15); box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08); border: 1px solid rgba(14, 165, 233, 0.2); }
        .gallery-item:hover { transform: scale(1.05); box-shadow: 0 16px 40px rgba(14, 165, 233, 0.15); }
        .gallery-overlay { position: absolute; bottom: 0; left: 0; right: 0; background: linear-gradient(to top, rgba(15, 23, 42, 0.95), transparent); padding: 24px; transform: translateY(50px); opacity: 0; transition: all 0.3s ease; }
        .gallery-item:hover .gallery-overlay { transform: translateY(0); opacity: 1; }
        .gallery-title { font-weight: 700; color: var(--white); font-size: 14px; margin-bottom: 6px; }
        .gallery-date { font-size: 12px; color: var(--accent-light); font-weight: 500; }
        .news-section { margin: 80px 0; }
        .news-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(350px, 1fr)); gap: 24px; }
        .news-card { background: var(--white); border-radius: 12px; overflow: hidden; box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08); transition: all 0.3s ease; border: 1px solid #e5e7eb; }
        .news-card:hover { transform: translateY(-4px); box-shadow: 0 12px 24px rgba(14, 165, 233, 0.15); }
        .news-image { height: 200px; background: linear-gradient(135deg, #e5e7eb 0%, #f3f4f6 100%); display: flex; align-items: center; justify-content: center; font-size: 3rem; color: #d1d5db; }
        .news-content { padding: 24px; }
        .news-category { display: inline-block; background: rgba(14, 165, 233, 0.1); color: var(--accent); padding: 6px 12px; border-radius: 4px; font-size: 11px; font-weight: 600; text-transform: uppercase; letter-spacing: 0.5px; margin-bottom: 12px; }
        .news-title { font-family: "Arial", sans-serif; font-size: 1.4rem; font-weight: 700; color: var(--primary); margin-bottom: 12px; line-height: 1.4; }
        .news-excerpt { font-size: 0.95rem; color: #6b7280; line-height: 1.6; margin-bottom: 16px; }
        .news-meta { display: flex; gap: 16px; font-size: 12px; color: #9ca3af; }
        /* ===== MEDIA COVERAGE STYLES ===== */
        .media-coverage-section { margin: 0; padding: 12px 24px 20px; background: transparent; border-top: none; border-bottom: none; }
        .media-coverage-header { margin-bottom: 12px; text-align: center; }
        .media-coverage-badge { display: inline-block; background: linear-gradient(135deg, rgba(14, 165, 233, 0.15) 0%, rgba(14, 165, 233, 0.05) 100%); color: var(--accent); padding: 8px 16px; border-radius: 6px; font-weight: 700; font-size: 11px; text-transform: uppercase; letter-spacing: 1px; margin-bottom: 12px; border-left: 3px solid var(--accent); }
        .media-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
        .media-channel { background: linear-gradient(135deg, #ffffff 0%, #f9fafb 100%); border-radius: 14px; padding: 24px 20px; text-align: center; box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08), 0 1px 3px rgba(14, 165, 233, 0.1); border: 1px solid #e5e7eb; transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1); cursor: pointer; display: flex; flex-direction: column; align-items: center; justify-content: space-between; position: relative; overflow: hidden; min-height: 320px; }
        .media-channel::before { content: ""; position: absolute; top: 0; left: 0; right: 0; height: 3px; background: linear-gradient(90deg, var(--accent) 0%, transparent 100%); opacity: 0; transition: opacity 0.3s ease; }
        .media-channel:hover { transform: translateY(-8px); box-shadow: 0 16px 32px rgba(14, 165, 233, 0.18), 0 4px 12px rgba(14, 165, 233, 0.1); border-color: rgba(14, 165, 233, 0.3); background: linear-gradient(135deg, #ffffff 0%, #f0f7ff 100%); }
        .media-channel:hover::before { opacity: 1; }
        .media-logo { width: 120px; height: 90px; display: flex; align-items: center; justify-content: center; margin-bottom: 16px; background: linear-gradient(135deg, #f3f4f6 0%, #e5e7eb 100%); border-radius: 10px; overflow: hidden; border: 1px solid rgba(14, 165, 233, 0.1); transition: all 0.3s ease; position: relative; }
        .media-logo::after { content: ""; position: absolute; inset: 0; background: radial-gradient(circle at 30% 30%, rgba(14, 165, 233, 0.05), transparent 70%); opacity: 0; transition: opacity 0.3s ease; }
        .media-channel:hover .media-logo { background: linear-gradient(135deg, #e5e7eb 0%, #d1d5db 100%); border-color: var(--accent); }
        .media-channel:hover .media-logo::after { opacity: 1; }
        .media-logo img { max-width: 95%; max-height: 95%; object-fit: contain; position: relative; z-index: 1; }
        .media-name { font-family: "Arial", sans-serif; font-size: 1.1rem; font-weight: 700; color: var(--primary); margin-bottom: 12px; transition: color 0.3s ease; letter-spacing: 0.3px; }
        .media-channel:hover .media-name { color: var(--accent); }
        .media-description { font-size: 0.85rem; color: #6b7280; line-height: 1.6; margin-bottom: 16px; transition: color 0.3s ease; flex: 1; }
        .media-channel:hover .media-description { color: #4b5563; }
        .media-link { display: inline-flex; align-items: center; gap: 8px; padding: 10px 18px; background: linear-gradient(135deg, rgba(14, 165, 233, 0.1) 0%, rgba(14, 165, 233, 0.05) 100%); color: var(--accent); border: 1.5px solid rgba(14, 165, 233, 0.2); border-radius: 8px; font-weight: 600; font-size: 12px; cursor: pointer; text-decoration: none; transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1); position: relative; overflow: hidden; }
        .media-link:hover { background: var(--accent); color: var(--white); border-color: var(--accent-dark); box-shadow: 0 4px 12px rgba(14, 165, 233, 0.3); transform: translateX(2px); }
        .media-link i { transition: transform 0.3s ease; }
        .media-link:hover i { transform: translateX(3px); }
        .trust-indicators { display: flex; gap: 16px; justify-content: center; margin-top: 30px; padding-top: 30px; border-top: 1px solid #e5e7eb; flex-wrap: wrap; }
        .trust-item { display: flex; align-items: center; gap: 12px; }
        .trust-icon { width: 40px; height: 40px; background: rgba(14, 165, 233, 0.1); border-radius: 50%; display: flex; align-items: center; justify-content: center; color: var(--accent); font-size: 18px; }
        /* ===== NEWS SECTION STYLES ===== */
        .news-featured-section { margin-top: 20px; padding: 40px 24px; background: linear-gradient(135deg, rgba(14, 165, 233, 0.08) 0%, rgba(14, 165, 233, 0.02) 100%); border-radius: 0; width: 100vw; position: relative; left: 50%; right: 50%; margin-left: -50vw; margin-right: -50vw; }
        .news-header { margin-bottom: 24px; display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 16px; }
        .news-header-content h3 { font-family: "Arial", sans-serif; font-size: 1.6rem; font-weight: 700; color: var(--primary); margin-bottom: 4px; }
        .news-header-content p { font-size: 0.9rem; color: #6b7280; }
        .news-category-tabs { display: flex; gap: 8px; flex-wrap: wrap; }
        .news-tab-btn { padding: 8px 14px; background: var(--white); border: 1.5px solid #e5e7eb; color: #4b5563; border-radius: 8px; font-size: 12px; font-weight: 600; cursor: pointer; transition: all 0.3s ease; }
        .news-tab-btn:hover, .news-tab-btn.active { background: var(--accent); color: var(--white); border-color: var(--accent); }
        .news-items-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(280px, 1fr)); gap: 20px; }
        .news-item-card { background: var(--white); border-radius: 12px; overflow: hidden; border: 1px solid #e5e7eb; transition: all 0.3s ease; display: flex; flex-direction: column; }
        .news-item-card:hover { transform: translateY(-6px); box-shadow: 0 12px 28px rgba(14, 165, 233, 0.15); border-color: rgba(14, 165, 233, 0.2); }
        .news-item-image { width: 100%; height: 160px; background: linear-gradient(135deg, #e5e7eb 0%, #d1d5db 100%); display: flex; align-items: center; justify-content: center; font-size: 2rem; color: #9ca3af; overflow: hidden; position: relative; }
        .news-item-image img { width: 100%; height: 100%; object-fit: cover; }
        .news-item-image::before { content: ""; position: absolute; inset: 0; background: linear-gradient(to bottom, transparent, rgba(15, 23, 42, 0.1)); }
        .news-item-content { padding: 18px; display: flex; flex-direction: column; flex: 1; }
        .news-item-meta { display: flex; gap: 12px; margin-bottom: 10px; font-size: 11px; color: #9ca3af; align-items: center; }
        .news-item-badge { display: inline-block; background: linear-gradient(135deg, rgba(14, 165, 233, 0.15) 0%, rgba(14, 165, 233, 0.05) 100%); color: var(--accent); padding: 6px 10px; border-radius: 6px; font-weight: 600; font-size: 10px; text-transform: uppercase; letter-spacing: 0.5px; width: fit-content; }
        .news-item-title { font-family: "Arial", sans-serif; font-size: 1.15rem; font-weight: 700; color: var(--primary); margin-bottom: 10px; line-height: 1.4; transition: color 0.3s ease; }
        .news-item-card:hover .news-item-title { color: var(--accent); }
        .news-item-excerpt { font-size: 0.85rem; color: #6b7280; line-height: 1.5; flex: 1; margin-bottom: 12px; }
        .news-item-footer { display: flex; justify-content: space-between; align-items: center; padding-top: 12px; border-top: 1px solid #e5e7eb; }
        .news-item-date { font-size: 11px; color: #9ca3af; display: flex; align-items: center; gap: 6px; }
        .news-item-read { display: inline-flex; align-items: center; gap: 6px; padding: 6px 12px; background: rgba(14, 165, 233, 0.1); color: var(--accent); border: none; border-radius: 6px; font-weight: 600; font-size: 11px; cursor: pointer; text-decoration: none; transition: all 0.3s ease; }
        .news-item-read:hover { background: var(--accent); color: var(--white); }
        @media (max-width: 768px) { .news-header { flex-direction: column; align-items: flex-start; } .news-items-grid { grid-template-columns: repeat(auto-fill, minmax(240px, 1fr)); gap: 16px; } .news-item-image { height: 140px; } }
        @media (max-width: 480px) { .news-items-grid { grid-template-columns: 1fr; } .news-header-content h3 { font-size: 1.3rem; } }
        /* CALENDAR SECTION */

.calendar-section{
padding:80px 24px;
background:#f9fafb;
}

.calendar-container{
max-width:1200px;
margin:auto;
}

.calendar-header{
text-align:center;
margin-bottom:50px;
}

.calendar-header h2{
font-weight:700;
color:var(--primary);
}

.calendar-tabs{
display:grid;
grid-template-columns:repeat(auto-fit,minmax(280px,1fr));
gap:24px;
}

.calendar-tab{
background:white;
border-radius:14px;
padding:30px;
border:1px solid #e5e7eb;
text-decoration:none;
transition:.3s;
}

.calendar-tab:hover{
transform:translateY(-6px);
box-shadow:0 12px 28px rgba(14,165,233,.15);
border-color:var(--accent);
}

.calendar-icon{
width:55px;
height:55px;
background:rgba(14,165,233,.1);
border-radius:10px;
display:flex;
align-items:center;
justify-content:center;
font-size:22px;
color:var(--accent);
margin-bottom:15px;
}

.calendar-link{
font-size:13px;
font-weight:600;
color:var(--accent);
}

  
    html, body { overflow-x: hidden; }
    body { background: var(--gray-50); font-family: Arial, sans-serif; }

    .bp-hero {
      background: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
      color: #fff;
      padding: clamp(28px, 4.8vw, 54px) 0;
    }
    .bp-title {
      margin: 0 0 10px 0;
      font-size: clamp(22px, 3vw, 36px);
      line-height: 1.15;
      letter-spacing: -0.01em;
      color: #fff;
      font-weight: 700;
    }
    .bp-subtitle {
      margin: 0;
      max-width: 85ch;
      color: rgba(255,255,255,0.78);
      font-size: 14px;
      line-height: 1.7;
    }

    .bp-main { padding: clamp(20px, 3vw, 40px) 0 clamp(42px, 6vw, 78px); }

    .bp-card {
      background: #fff;
      border: 1px solid #e5e7eb;
      border-radius: 16px;
      box-shadow: 0 2px 10px rgba(2,6,23,0.05);
      overflow: hidden;
    }
    .bp-card-header {
      padding: 18px 20px;
      border-bottom: 1px solid #eef2f7;
      background: #f8fafc;
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 12px;
    }
    .bp-card-title { margin: 0; font-size: 16px; font-weight: 700; color: var(--primary); }
    .bp-card-body { padding: 18px 20px; }

    .bp-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
    .bp-field { display: grid; gap: 6px; }
    .bp-label { font-size: 12px; font-weight: 600; color: var(--gray-600); }
    .bp-input, .bp-select, .bp-textarea {
      width: 100%;
      padding: 11px 12px;
      border: 1px solid #e2e8f0;
      border-radius: 12px;
      font-size: 14px;
      color: var(--primary);
      background: #fff;
      outline: none;
      transition: border-color .15s ease, box-shadow .15s ease;
    }
    .bp-textarea { min-height: 120px; resize: vertical; }
    .bp-input:focus, .bp-select:focus, .bp-textarea:focus {
      border-color: #0ea5e9;
      box-shadow: 0 0 0 3px rgba(14,165,233,0.18);
    }

    .bp-actions { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 14px; }
    .bp-btn {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      gap: 10px;
      padding: 11px 14px;
      border-radius: 12px;
      font-weight: 700;
      font-size: 14px;
      border: 1px solid transparent;
      cursor: pointer;
      white-space: nowrap;
      transition: background .15s ease, border-color .15s ease, color .15s ease;
    }
    .bp-btn-primary { background: var(--accent); color: #fff; }
    .bp-btn-primary:hover { background: var(--accent-dark); }
    .bp-btn-secondary { background: #fff; color: var(--primary); border-color: #e2e8f0; }
    .bp-btn-secondary:hover { border-color: #cbd5e1; }

    .bp-note {
      margin-top: 14px;
      padding: 12px 14px;
      border-radius: 14px;
      border: 1px solid #e2e8f0;
      background: #f8fafc;
      color: var(--gray-600);
      font-size: 13px;
      line-height: 1.65;
    }
    .bp-note.bg-success { background: #0f172a  !important; border-color: #86efac; color: #166534; }
    .bp-note.bg-danger { background: #fee2e2 !important; border-color: #fca5a5; color: #991b1b; }

    @media (max-width: 768px) {
      .bp-grid { grid-template-columns: 1fr; }
    }
  
      body, html {
  overflow-x: hidden;
}
        * { margin: 0; padding: 0; box-sizing: border-box; }
        html { scroll-behavior: smooth; }
        body { font-family: "Arial", sans-serif; color: var(--primary); background: var(--gray-50); }
        .hero { background: linear-gradient(135deg, var(--primary) 0%, #1a3a52 100%); color: var(--white); padding: 100px 24px 80px; position: relative; overflow: hidden; }
        .hero::before { content: ""; position: absolute; top: -50%; right: -10%; width: 500px; height: 500px; background: radial-gradient(circle, rgba(14, 165, 233, 0.1) 0%, transparent 70%); border-radius: 50%; pointer-events: none; }
        .hero-content { max-width: 1400px; margin: 0 auto; text-align: center; position: relative; z-index: 1; }
        .hero h1 { font-family: "Arial", sans-serif; font-size: 3.2rem; font-weight: 700; margin-bottom: 20px; line-height: 1.3; color: #ffffff; }
        .hero p { font-size: 1.1rem; color: #ffffff; margin-bottom: 40px; max-width: 700px; margin-left: auto; margin-right: auto; line-height: 1.6; }
        .search-container { max-width: 600px; margin: 0 auto; display: flex; gap: 12px; }
        .search-input { flex: 1; padding: 14px 20px; border: none; border-radius: 8px; font-size: 14px; background: rgba(255, 255, 255, 0.95); }
        .search-btn { padding: 14px 32px; background: var(--accent); color: var(--white); border: none; border-radius: 8px; font-weight: 600; cursor: pointer; transition: all 0.3s ease; }
        .search-btn:hover { background: var(--accent-dark); }
        .filters-section { background: var(--white); padding: 40px 24px; border-bottom: 1px solid #e5e7eb; }
        .filters-container { max-width: 1400px; margin: 0 auto; display: flex; gap: 12px; flex-wrap: wrap; justify-content: center; }
        .filter-btn { padding: 10px 24px; border: 1.5px solid #e5e7eb; background: var(--white); color: #4b5563; border-radius: 8px; font-weight: 600; font-size: 14px; cursor: pointer; transition: all 0.3s ease; }
        .filter-btn:hover, .filter-btn.active { border-color: var(--accent); color: var(--accent); background: rgba(14, 165, 233, 0.05); }
        .main-content { max-width: 1400px; margin: 0 auto; padding: 60px 24px; }
        .featured-article { background: var(--white); border-radius: 16px; overflow: hidden; box-shadow: 0 12px 32px rgba(0, 0, 0, 0.1); margin-bottom: 80px; display: grid; grid-template-columns: 1fr 1fr; gap: 0; transition: all 0.3s ease; }
        .featured-article:hover { box-shadow: 0 20px 48px rgba(14, 165, 233, 0.15); }
        .featured-image { height: 450px; background: linear-gradient(135deg, var(--accent) 0%, var(--accent-dark) 100%); display: flex; align-items: center; justify-content: center; font-size: 5rem; color: rgba(255, 255, 255, 0.15); position: relative; overflow: hidden; }
        .featured-image::before { content: ""; position: absolute; top: -50%; right: -50%; width: 600px; height: 600px; background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 70%); border-radius: 50%; }
        .featured-content { padding: 60px; display: flex; flex-direction: column; justify-content: center; }
        .featured-badge { display: inline-block; background: linear-gradient(135deg, rgba(14, 165, 233, 0.15) 0%, rgba(14, 165, 233, 0.05) 100%); color: var(--accent); padding: 8px 16px; border-radius: 6px; font-weight: 700; font-size: 11px; text-transform: uppercase; letter-spacing: 1px; width: fit-content; margin-bottom: 20px; border-left: 3px solid var(--accent); }
        .featured-title { font-family: "Arial", sans-serif; font-size: 2.6rem; font-weight: 700; color: var(--primary); margin-bottom: 20px; line-height: 1.3; }
        .featured-meta { display: flex; gap: 24px; margin-bottom: 24px; font-size: 14px; color: #6b7280; }      
        .featured-excerpt { font-size: 1.05rem; color: #4b5563; line-height: 1.8; margin-bottom: 30px; }
        .read-more-btn { display: inline-flex; align-items: center; gap: 10px; padding: 14px 32px; background: var(--accent); color: var(--white); border: none; border-radius: 8px; font-weight: 600; cursor: pointer; text-decoration: none; width: fit-content; transition: all 0.3s ease; }
        .read-more-btn:hover { background: var(--accent-dark); transform: translateX(4px); gap: 16px; }
        .gallery-section { margin-top: 80px; margin-bottom: 80px; }
        .section-header { margin-bottom: 50px; }
        .section-title { font-family: "Arial", sans-serif; font-size: 2rem; font-weight: 700; color: var(--primary); margin-bottom: 8px; }
        .section-subtitle { font-size: 0.95rem; color: #4b5563; line-height: 1.5; }
        .gallery-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(280px, 1fr)); gap: 24px; }
        .gallery-item { position: relative; height: 280px; border-radius: 12px; overflow: hidden; background: linear-gradient(135deg, var(--accent) 0%, var(--accent-dark) 100%); cursor: pointer; transition: all 0.3s ease; display: flex; align-items: center; justify-content: center; font-size: 2.5rem; color: rgba(255, 255, 255, 0.15); box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08); border: 1px solid rgba(14, 165, 233, 0.2); }
        .gallery-item:hover { transform: scale(1.05); box-shadow: 0 16px 40px rgba(14, 165, 233, 0.15); }
        .gallery-overlay { position: absolute; bottom: 0; left: 0; right: 0; background: linear-gradient(to top, rgba(15, 23, 42, 0.95), transparent); padding: 24px; transform: translateY(50px); opacity: 0; transition: all 0.3s ease; }
        .gallery-item:hover .gallery-overlay { transform: translateY(0); opacity: 1; }
        .gallery-title { font-weight: 700; color: var(--white); font-size: 14px; margin-bottom: 6px; }
        .gallery-date { font-size: 12px; color: var(--accent-light); font-weight: 500; }
        .news-section { margin: 80px 0; }
        .news-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(350px, 1fr)); gap: 24px; }
        .news-card { background: var(--white); border-radius: 12px; overflow: hidden; box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08); transition: all 0.3s ease; border: 1px solid #e5e7eb; }
        .news-card:hover { transform: translateY(-4px); box-shadow: 0 12px 24px rgba(14, 165, 233, 0.15); }
        .news-image { height: 200px; background: linear-gradient(135deg, #e5e7eb 0%, #f3f4f6 100%); display: flex; align-items: center; justify-content: center; font-size: 3rem; color: #d1d5db; }
        .news-content { padding: 24px; }
        .news-category { display: inline-block; background: rgba(14, 165, 233, 0.1); color: var(--accent); padding: 6px 12px; border-radius: 4px; font-size: 11px; font-weight: 600; text-transform: uppercase; letter-spacing: 0.5px; margin-bottom: 12px; }
        .news-title { font-family: "Arial", sans-serif; font-size: 1.4rem; font-weight: 700; color: var(--primary); margin-bottom: 12px; line-height: 1.4; }
        .news-excerpt { font-size: 0.95rem; color: #6b7280; line-height: 1.6; margin-bottom: 16px; }
        .news-meta { display: flex; gap: 16px; font-size: 12px; color: #9ca3af; }
        /* ===== MEDIA COVERAGE STYLES ===== */
        .media-coverage-section { margin: 0; padding: 12px 24px 20px; background: transparent; border-top: none; border-bottom: none; }
        .media-coverage-header { margin-bottom: 12px; text-align: center; }
        .media-coverage-badge { display: inline-block; background: linear-gradient(135deg, rgba(14, 165, 233, 0.15) 0%, rgba(14, 165, 233, 0.05) 100%); color: var(--accent); padding: 8px 16px; border-radius: 6px; font-weight: 700; font-size: 11px; text-transform: uppercase; letter-spacing: 1px; margin-bottom: 12px; border-left: 3px solid var(--accent); }
        .media-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
        .media-channel { background: linear-gradient(135deg, #ffffff 0%, #f9fafb 100%); border-radius: 14px; padding: 24px 20px; text-align: center; box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08), 0 1px 3px rgba(14, 165, 233, 0.1); border: 1px solid #e5e7eb; transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1); cursor: pointer; display: flex; flex-direction: column; align-items: center; justify-content: space-between; position: relative; overflow: hidden; min-height: 320px; }
        .media-channel::before { content: ""; position: absolute; top: 0; left: 0; right: 0; height: 3px; background: linear-gradient(90deg, var(--accent) 0%, transparent 100%); opacity: 0; transition: opacity 0.3s ease; }
        .media-channel:hover { transform: translateY(-8px); box-shadow: 0 16px 32px rgba(14, 165, 233, 0.18), 0 4px 12px rgba(14, 165, 233, 0.1); border-color: rgba(14, 165, 233, 0.3); background: linear-gradient(135deg, #ffffff 0%, #f0f7ff 100%); }
        .media-channel:hover::before { opacity: 1; }
        .media-logo { width: 120px; height: 90px; display: flex; align-items: center; justify-content: center; margin-bottom: 16px; background: linear-gradient(135deg, #f3f4f6 0%, #e5e7eb 100%); border-radius: 10px; overflow: hidden; border: 1px solid rgba(14, 165, 233, 0.1); transition: all 0.3s ease; position: relative; }
        .media-logo::after { content: ""; position: absolute; inset: 0; background: radial-gradient(circle at 30% 30%, rgba(14, 165, 233, 0.05), transparent 70%); opacity: 0; transition: opacity 0.3s ease; }
        .media-channel:hover .media-logo { background: linear-gradient(135deg, #e5e7eb 0%, #d1d5db 100%); border-color: var(--accent); }
        .media-channel:hover .media-logo::after { opacity: 1; }
        .media-logo img { max-width: 95%; max-height: 95%; object-fit: contain; position: relative; z-index: 1; }
        .media-name { font-family: "Arial", sans-serif; font-size: 1.1rem; font-weight: 700; color: var(--primary); margin-bottom: 12px; transition: color 0.3s ease; letter-spacing: 0.3px; }
        .media-channel:hover .media-name { color: var(--accent); }
        .media-description { font-size: 0.85rem; color: #6b7280; line-height: 1.6; margin-bottom: 16px; transition: color 0.3s ease; flex: 1; }
        .media-channel:hover .media-description { color: #4b5563; }
        .media-link { display: inline-flex; align-items: center; gap: 8px; padding: 10px 18px; background: linear-gradient(135deg, rgba(14, 165, 233, 0.1) 0%, rgba(14, 165, 233, 0.05) 100%); color: var(--accent); border: 1.5px solid rgba(14, 165, 233, 0.2); border-radius: 8px; font-weight: 600; font-size: 12px; cursor: pointer; text-decoration: none; transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1); position: relative; overflow: hidden; }
        .media-link:hover { background: var(--accent); color: var(--white); border-color: var(--accent-dark); box-shadow: 0 4px 12px rgba(14, 165, 233, 0.3); transform: translateX(2px); }
        .media-link i { transition: transform 0.3s ease; }
        .media-link:hover i { transform: translateX(3px); }
        .trust-indicators { display: flex; gap: 16px; justify-content: center; margin-top: 30px; padding-top: 30px; border-top: 1px solid #e5e7eb; flex-wrap: wrap; }
        .trust-item { display: flex; align-items: center; gap: 12px; }
        .trust-icon { width: 40px; height: 40px; background: rgba(14, 165, 233, 0.1); border-radius: 50%; display: flex; align-items: center; justify-content: center; color: var(--accent); font-size: 18px; }
        /* ===== NEWS SECTION STYLES ===== */
        .news-featured-section { margin-top: 20px; padding: 40px 24px; background: linear-gradient(135deg, rgba(14, 165, 233, 0.08) 0%, rgba(14, 165, 233, 0.02) 100%); border-radius: 0; width: 100vw; position: relative; left: 50%; right: 50%; margin-left: -50vw; margin-right: -50vw; }
        .news-header { margin-bottom: 24px; display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 16px; }
        .news-header-content h3 { font-family: "Arial", sans-serif; font-size: 1.6rem; font-weight: 700; color: var(--primary); margin-bottom: 4px; }
        .news-header-content p { font-size: 0.9rem; color: #6b7280; }
        .news-category-tabs { display: flex; gap: 8px; flex-wrap: wrap; }
        .news-tab-btn { padding: 8px 14px; background: var(--white); border: 1.5px solid #e5e7eb; color: #4b5563; border-radius: 8px; font-size: 12px; font-weight: 600; cursor: pointer; transition: all 0.3s ease; }
        .news-tab-btn:hover, .news-tab-btn.active { background: var(--accent); color: var(--white); border-color: var(--accent); }
        .news-items-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(280px, 1fr)); gap: 20px; }
        .news-item-card { background: var(--white); border-radius: 12px; overflow: hidden; border: 1px solid #e5e7eb; transition: all 0.3s ease; display: flex; flex-direction: column; }
        .news-item-card:hover { transform: translateY(-6px); box-shadow: 0 12px 28px rgba(14, 165, 233, 0.15); border-color: rgba(14, 165, 233, 0.2); }
        .news-item-image { width: 100%; height: 160px; background: linear-gradient(135deg, #e5e7eb 0%, #d1d5db 100%); display: flex; align-items: center; justify-content: center; font-size: 2rem; color: #9ca3af; overflow: hidden; position: relative; }
        .news-item-image img { width: 100%; height: 100%; object-fit: cover; }
        .news-item-image::before { content: ""; position: absolute; inset: 0; background: linear-gradient(to bottom, transparent, rgba(15, 23, 42, 0.1)); }
        .news-item-content { padding: 18px; display: flex; flex-direction: column; flex: 1; }
        .news-item-meta { display: flex; gap: 12px; margin-bottom: 10px; font-size: 11px; color: #9ca3af; align-items: center; }
        .news-item-badge { display: inline-block; background: linear-gradient(135deg, rgba(14, 165, 233, 0.15) 0%, rgba(14, 165, 233, 0.05) 100%); color: var(--accent); padding: 6px 10px; border-radius: 6px; font-weight: 600; font-size: 10px; text-transform: uppercase; letter-spacing: 0.5px; width: fit-content; }
        .news-item-title { font-family: "Arial", sans-serif; font-size: 1.15rem; font-weight: 700; color: var(--primary); margin-bottom: 10px; line-height: 1.4; transition: color 0.3s ease; }
        .news-item-card:hover .news-item-title { color: var(--accent); }
        .news-item-excerpt { font-size: 0.85rem; color: #6b7280; line-height: 1.5; flex: 1; margin-bottom: 12px; }
        .news-item-footer { display: flex; justify-content: space-between; align-items: center; padding-top: 12px; border-top: 1px solid #e5e7eb; }
        .news-item-date { font-size: 11px; color: #9ca3af; display: flex; align-items: center; gap: 6px; }
        .news-item-read { display: inline-flex; align-items: center; gap: 6px; padding: 6px 12px; background: rgba(14, 165, 233, 0.1); color: var(--accent); border: none; border-radius: 6px; font-weight: 600; font-size: 11px; cursor: pointer; text-decoration: none; transition: all 0.3s ease; }
        .news-item-read:hover { background: var(--accent); color: var(--white); }
        @media (max-width: 768px) { .news-header { flex-direction: column; align-items: flex-start; } .news-items-grid { grid-template-columns: repeat(auto-fill, minmax(240px, 1fr)); gap: 16px; } .news-item-image { height: 140px; } }
        @media (max-width: 480px) { .news-items-grid { grid-template-columns: 1fr; } .news-header-content h3 { font-size: 1.3rem; } }


    html, body { overflow-x: hidden; }
    body { background: var(--gray-50); font-family: Arial, sans-serif; }

    .icp-hero {
      background: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
      color: #fff;
      padding: clamp(34px, 5vw, 64px) 0;
    }
    .icp-breadcrumb {
      display: inline-flex;
      align-items: center;
      gap: 10px;
      padding: 8px 12px;
      border-radius: 999px;
      background: rgba(255,255,255,0.06);
      border: 1px solid rgba(255,255,255,0.12);
      font-size: 12px;
      font-weight: 600;
      margin-bottom: 14px;
      width: fit-content;
    }
    .icp-title {
      margin: 0 0 10px 0;
      font-size: clamp(24px, 3.2vw, 40px);
      line-height: 1.15;
      letter-spacing: -0.01em;
      color: #fff;
      font-weight: 700;
    }
    .icp-subtitle {
      margin: 0;
      max-width: 92ch;
      color: rgba(255,255,255,0.78);
      font-size: clamp(14px, 1.35vw, 17px);
      line-height: 1.7;
    }
    .icp-cta { margin-top: 18px; display: flex; flex-wrap: wrap; gap: 10px; }
    .icp-btn {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      gap: 10px;
      padding: 11px 14px;
      border-radius: 12px;
      font-weight: 700;
      font-size: 14px;
      border: 1px solid transparent;
      cursor: pointer;
      white-space: nowrap;
      transition: background .15s ease, border-color .15s ease, color .15s ease;
    }
    .icp-btn-primary { background: var(--accent); color: #fff; }
    .icp-btn-primary:hover { background: var(--accent-dark); }
    .icp-btn-secondary { background: rgba(255,255,255,0.08); color: #fff; border-color: rgba(255,255,255,0.22); }
    .icp-btn-secondary:hover { background: rgba(255,255,255,0.14); }

    .icp-main { padding: clamp(22px, 3.2vw, 44px) 0 clamp(42px, 6vw, 78px); }
    .icp-grid { display: grid; grid-template-columns: 1.1fr 0.9fr; gap: 24px; align-items: start; }

    .icp-card {
      background: #fff;
      border: 1px solid #e5e7eb;
      border-radius: 16px;
      box-shadow: 0 2px 10px rgba(2,6,23,0.05);
      overflow: hidden;
    }
    .icp-card-header {
      padding: 18px 20px;
      border-bottom: 1px solid #eef2f7;
      background: #f8fafc;
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 12px;
    }
    .icp-card-title {
      margin: 0;
      font-size: 16px;
      font-weight: 700;
      color: var(--primary);
    }
    .icp-pill {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      padding: 6px 10px;
      border-radius: 999px;
      background: #fff;
      color: var(--gray-500);
      border: 1px solid #e5e7eb;
      font-size: 12px;
      font-weight: 600;
      white-space: nowrap;
    }
    .icp-pill i { opacity: 0.55; }
    .icp-card-body { padding: 18px 20px; }
    .icp-text { margin: 0; color: var(--gray-500); line-height: 1.75; font-size: 14px; }

    .icp-list { list-style: none; padding: 0; margin: 0; display: grid; gap: 10px; }
    .icp-item {
      display: flex;
      gap: 12px;
      align-items: flex-start;
      padding: 10px 12px;
      border-radius: 12px;
      border: 1px solid #eef2f7;
      background: #fff;
    }
    .icp-ico {
      width: 34px; height: 34px; border-radius: 12px;
      display: flex; align-items: center; justify-content: center;
      flex: 0 0 auto;
      background: #f1f5f9;
      color: #334155;
      border: 1px solid #e2e8f0;
    }
    .icp-ico i { font-size: 14px; opacity: 0.85; }
    .icp-item-text { font-weight: 600; color: var(--primary); font-size: 14px; line-height: 1.35; margin-top: 4px; }

    .icp-note {
      margin-top: 14px;
      padding: 12px 14px;
      border-radius: 14px;
      border: 1px solid #e2e8f0;
      background: #f8fafc;
      color: var(--gray-600);
      font-size: 13px;
      line-height: 1.65;
    }

    .icp-side { display: grid; gap: 16px; }
    .icp-mini { padding: 16px 18px; }
    .icp-mini h4 { margin: 0 0 8px 0; font-size: 14px; font-weight: 700; color: var(--primary); }
    .icp-mini p { margin: 0; font-size: 13px; color: var(--gray-500); line-height: 1.7; }
    .icp-mini-icon {
      width: 44px; height: 44px; border-radius: 14px;
      display: flex; align-items: center; justify-content: center;
      background: #f1f5f9; border: 1px solid #e2e8f0; color: #334155;
      margin-bottom: 10px; font-size: 16px;
    }

    /* Logo Marquee Styles */
.logo-marquee {
  width: 100%;
  overflow: hidden;
  position: relative;
}

.logo-marquee-track {
  display: flex;
  animation: scroll 25s linear infinite;
  width: fit-content;
}

.logo-marquee-track:hover {
  animation-play-state: paused;
}

.logo-marquee-item {
  flex: 0 0 auto;
  width: 180px;
  margin: 0 15px;
  background: #fff;
  border: 1px solid #e5e7eb;
  border-radius: 14px;
  padding: 14px;
  display: grid;
  place-items: center;
  min-height: 78px;
}

@keyframes scroll {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}

@media (max-width: 768px) {
  .logo-marquee-item {
    width: 140px;
    margin: 0 10px;
    padding: 10px;
  }
}

@media (max-width: 480px) {
  .logo-marquee-item {
    width: 120px;
    margin: 0 8px;
    padding: 8px;
  }
}
    .icp-logo {
      background: #fff;
      border: 1px solid #e5e7eb;
      border-radius: 14px;
      padding: 14px;
      display: grid;
      place-items: center;
      min-height: 78px;
    }
    .icp-logo img { max-width: 100%; max-height: 40px; object-fit: contain; }
    .icp-logo-fallback {
      display: inline-flex;
      align-items: center;
      gap: 10px;
      color: var(--gray-500);
      font-size: 13px;
      font-weight: 600;
    }
    .icp-logo-fallback i { opacity: 0.6; }

    @media (max-width: 992px) {
      .icp-grid { grid-template-columns: 1fr; }
      .icp-logos { grid-template-columns: repeat(3, 1fr); }
    }
    @media (max-width: 600px) {
      .icp-logos { grid-template-columns: repeat(2, 1fr); }
    }
    @media (max-width: 480px) {
      .icp-cta .icp-btn { width: 100%; }
      .icp-card-header { flex-direction: column; align-items: flex-start; }
    }
  