:root {
            --primary: #1a365d;
            --secondary: #e63946;
            --accent: #2a9d8f;
            --light: #f8f9fa;
            --dark: #212529;
            --shadow: 0 4px 12px rgba(0,0,0,0.08);
        }
        body {
            font-family: 'Helvetica Neue', 'Segoe UI', Arial, sans-serif;
            color: var(--dark);
            line-height: 1.7;
            overflow-x: hidden;
        }
        h1, h2, h3, h4, h5, h6 {
            font-weight: 700;
            color: var(--primary);
        }
        .navbar {
            background: rgba(255, 255, 255, 0.98) !important;
            backdrop-filter: blur(10px);
            box-shadow: var(--shadow);
            padding: 0.8rem 0;
            transition: all 0.3s ease;
        }
        .navbar-brand {
            font-weight: 800;
            font-size: 1.8rem;
            background: linear-gradient(to right, var(--primary), var(--accent));
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
        }
        .nav-link {
            font-weight: 600;
            margin: 0 0.5rem;
            color: var(--primary) !important;
            border-bottom: 2px solid transparent;
            transition: all 0.3s;
        }
        .nav-link:hover, .nav-link.active {
            color: var(--secondary) !important;
            border-bottom-color: var(--secondary);
        }
        .hero {
            background: linear-gradient(rgba(26, 54, 93, 0.85), rgba(42, 157, 143, 0.8)), url('https://images.unsplash.com/photo-1530103862676-de8c9debad1d?ixlib=rb-4.0.3&auto=format&fit=crop&w=1920&q=80');
            background-size: cover;
            background-position: center;
            color: white;
            padding: 8rem 0 6rem;
            position: relative;
            clip-path: polygon(0 0, 100% 0, 100% 90%, 0 100%);
        }
        .hero h1 {
            color: white;
            text-shadow: 2px 2px 8px rgba(0,0,0,0.3);
            font-size: 3.5rem;
        }
        .section-title {
            position: relative;
            padding-bottom: 1rem;
            margin-bottom: 3rem;
        }
        .section-title:after {
            content: '';
            position: absolute;
            left: 0;
            bottom: 0;
            width: 80px;
            height: 4px;
            background: linear-gradient(to right, var(--secondary), var(--accent));
            border-radius: 2px;
        }
        .section-title.text-center:after {
            left: 50%;
            transform: translateX(-50%);
        }
        .card {
            border: none;
            border-radius: 16px;
            overflow: hidden;
            transition: transform 0.4s, box-shadow 0.4s;
            height: 100%;
            box-shadow: var(--shadow);
        }
        .card:hover {
            transform: translateY(-10px);
            box-shadow: 0 12px 24px rgba(0,0,0,0.15);
        }
        .card-img-top {
            height: 220px;
            object-fit: cover;
            transition: transform 0.5s;
        }
        .card:hover .card-img-top {
            transform: scale(1.05);
        }
        .badge-custom {
            background: linear-gradient(to right, var(--secondary), #ff7b00);
            color: white;
            padding: 0.5em 1.2em;
            font-weight: 600;
        }
        .table-custom {
            border-radius: 12px;
            overflow: hidden;
            box-shadow: var(--shadow);
        }
        .table-custom thead th {
            background: var(--primary);
            color: white;
            border: none;
            padding: 1.2rem;
        }
        .table-custom tbody tr {
            transition: background 0.3s;
        }
        .table-custom tbody tr:hover {
            background: rgba(42, 157, 143, 0.08);
        }
        .btn-primary-custom {
            background: linear-gradient(to right, var(--primary), #2c5282);
            border: none;
            padding: 0.8rem 2rem;
            border-radius: 50px;
            font-weight: 600;
            color: white;
            transition: all 0.3s;
            box-shadow: 0 4px 10px rgba(26, 54, 93, 0.3);
        }
        .btn-primary-custom:hover {
            transform: translateY(-3px);
            box-shadow: 0 6px 16px rgba(26, 54, 93, 0.4);
            color: white;
        }
        .btn-secondary-custom {
            background: linear-gradient(to right, var(--accent), #1d7873);
            border: none;
            padding: 0.8rem 2rem;
            border-radius: 50px;
            font-weight: 600;
            color: white;
            transition: all 0.3s;
        }
        .btn-secondary-custom:hover {
            transform: translateY(-3px);
            box-shadow: 0 6px 16px rgba(42, 157, 143, 0.4);
            color: white;
        }
        .live-badge {
            display: inline-block;
            width: 12px;
            height: 12px;
            background-color: #ff4757;
            border-radius: 50%;
            margin-right: 8px;
            animation: pulse 1.5s infinite;
        }
        @keyframes pulse {
            0% { opacity: 1; }
            50% { opacity: 0.5; }
            100% { opacity: 1; }
        }
        .flink {
            background: var(--light);
            border: 1px solid #dee2e6;
            border-radius: 10px;
            padding: 1.2rem;
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--primary);
            font-weight: 600;
            transition: all 0.3s;
            text-decoration: none;
            height: 100%;
        }
        .flink:hover {
            background: white;
            color: var(--secondary);
            border-color: var(--secondary);
            transform: scale(1.05);
            text-decoration: none;
        }
        .flink img {
            max-height: 30px;
            margin-right: 10px;
        }
        footer {
            background: var(--primary);
            color: rgba(255,255,255,0.85);
            padding-top: 4rem;
            clip-path: polygon(0 20%, 100% 0, 100% 100%, 0 100%);
        }
        footer a {
            color: rgba(255,255,255,0.75);
            text-decoration: none;
            transition: color 0.3s;
        }
        footer a:hover {
            color: white;
            text-decoration: underline;
        }
        .footer-links li {
            margin-bottom: 0.8rem;
        }
        .scroll-top {
            position: fixed;
            bottom: 30px;
            right: 30px;
            width: 50px;
            height: 50px;
            background: var(--secondary);
            color: white;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.5rem;
            cursor: pointer;
            z-index: 1000;
            opacity: 0;
            visibility: hidden;
            transition: all 0.4s;
            box-shadow: 0 4px 12px rgba(230, 57, 70, 0.4);
        }
        .scroll-top.active {
            opacity: 1;
            visibility: visible;
        }
        .scroll-top:hover {
            background: #d32f2f;
            transform: translateY(-5px);
        }
        .stats-box {
            background: white;
            border-radius: 16px;
            padding: 2rem;
            box-shadow: var(--shadow);
            text-align: center;
            transition: transform 0.3s;
        }
        .stats-box:hover {
            transform: translateY(-8px);
        }
        .stats-number {
            font-size: 3rem;
            font-weight: 800;
            color: var(--primary);
            line-height: 1;
        }
        .stats-label {
            color: var(--accent);
            font-weight: 600;
            margin-top: 0.5rem;
        }
        .timeline {
            position: relative;
            padding-left: 30px;
            border-left: 3px solid var(--accent);
            margin-left: 15px;
        }
        .timeline-item {
            position: relative;
            margin-bottom: 2.5rem;
        }
        .timeline-item:before {
            content: '';
            position: absolute;
            left: -36px;
            top: 5px;
            width: 20px;
            height: 20px;
            border-radius: 50%;
            background: var(--secondary);
            border: 4px solid white;
            box-shadow: 0 0 0 3px var(--secondary);
        }
        .form-control-custom {
            border-radius: 10px;
            border: 1px solid #ced4da;
            padding: 0.8rem 1.2rem;
            transition: all 0.3s;
        }
        .form-control-custom:focus {
            border-color: var(--accent);
            box-shadow: 0 0 0 0.25rem rgba(42, 157, 143, 0.25);
        }
        @media (max-width: 768px) {
            .hero h1 {
                font-size: 2.5rem;
            }
            .hero {
                padding: 6rem 0 4rem;
                clip-path: polygon(0 0, 100% 0, 100% 95%, 0 100%);
            }
            .section-title {
                font-size: 1.8rem;
            }
            .stats-number {
                font-size: 2.5rem;
            }
            .flink {
                margin-bottom: 1rem;
            }
            footer {
                clip-path: polygon(0 10%, 100% 0, 100% 100%, 0 100%);
            }
        }
