:root {
            --primary-color: #1a56db;
            --secondary-color: #046c4e;
            --accent-color: #f59e0b;
            --light-color: #f8fafc;
            --dark-color: #1e293b;
            --gray-color: #64748b;
        }
        body {
            font-family: 'Noto Sans SC', 'Inter', sans-serif;
            color: var(--dark-color);
            line-height: 1.7;
            overflow-x: hidden;
        }
        h1, h2, h3, h4, h5, h6 {
            font-weight: 700;
            margin-bottom: 1rem;
        }
        .section-header {
            text-align: center;
            margin-bottom: 4rem;
        }
        .section-header h2 {
            font-size: 2.5rem;
            color: var(--primary-color);
            position: relative;
            display: inline-block;
            padding-bottom: 1rem;
        }
        .section-header h2:after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 50%;
            transform: translateX(-50%);
            width: 80px;
            height: 4px;
            background: var(--accent-color);
            border-radius: 2px;
        }
        .section-header p {
            color: var(--gray-color);
            max-width: 700px;
            margin: 0 auto;
            font-size: 1.1rem;
        }
        .navbar-brand {
            font-weight: 700;
            font-size: 1.5rem;
            color: var(--primary-color) !important;
        }
        .navbar-nav .nav-link {
            font-weight: 500;
            margin: 0 0.5rem;
            transition: color 0.3s;
        }
        .navbar-nav .nav-link:hover, .navbar-nav .nav-link.active {
            color: var(--primary-color) !important;
        }
        .hero-section {
            background: linear-gradient(135deg, rgba(26, 86, 219, 0.9) 0%, rgba(4, 108, 78, 0.85) 100%), url('https://images.unsplash.com/photo-1552664730-d307ca884978?ixlib=rb-4.0.3&auto=format&fit=crop&w=2070&q=80');
            background-size: cover;
            background-position: center;
            color: white;
            padding: 8rem 0;
            position: relative;
        }
        .hero-content h1 {
            font-size: 3.5rem;
            margin-bottom: 1.5rem;
            text-shadow: 0 2px 10px rgba(0,0,0,0.2);
        }
        .hero-content p {
            font-size: 1.3rem;
            max-width: 800px;
            margin: 0 auto 2.5rem;
            opacity: 0.95;
        }
        .btn-primary-custom {
            background-color: var(--accent-color);
            border-color: var(--accent-color);
            padding: 0.8rem 2rem;
            font-weight: 600;
            border-radius: 50px;
            transition: all 0.3s;
        }
        .btn-primary-custom:hover {
            background-color: #d97706;
            border-color: #d97706;
            transform: translateY(-3px);
            box-shadow: 0 10px 20px rgba(0,0,0,0.1);
        }
        .service-card {
            background: white;
            border-radius: 12px;
            padding: 2.5rem 2rem;
            height: 100%;
            box-shadow: 0 10px 30px rgba(0,0,0,0.05);
            transition: all 0.4s;
            border: 1px solid #e2e8f0;
        }
        .service-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 20px 40px rgba(0,0,0,0.1);
            border-color: var(--primary-color);
        }
        .service-icon {
            width: 80px;
            height: 80px;
            background: linear-gradient(135deg, var(--primary-color), #3b82f6);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 1.5rem;
            color: white;
            font-size: 2rem;
        }
        .feature-box {
            padding: 2rem;
            border-radius: 10px;
            background: var(--light-color);
            margin-bottom: 2rem;
            transition: transform 0.3s;
        }
        .feature-box:hover {
            transform: translateY(-5px);
        }
        .stats-counter {
            background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
            color: white;
            padding: 4rem 0;
            border-radius: 20px;
            margin: 5rem 0;
        }
        .counter-item h3 {
            font-size: 3rem;
            font-weight: 700;
            margin-bottom: 0.5rem;
        }
        .team-member {
            text-align: center;
            margin-bottom: 2rem;
        }
        .team-img {
            width: 200px;
            height: 200px;
            border-radius: 50%;
            object-fit: cover;
            margin: 0 auto 1.5rem;
            border: 5px solid #e2e8f0;
            transition: all 0.3s;
        }
        .team-member:hover .team-img {
            border-color: var(--primary-color);
            transform: scale(1.05);
        }
        .contact-info-box {
            background: var(--light-color);
            padding: 2rem;
            border-radius: 12px;
            height: 100%;
            border-left: 5px solid var(--primary-color);
        }
        .contact-icon {
            width: 60px;
            height: 60px;
            background: var(--primary-color);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-size: 1.5rem;
            margin-bottom: 1rem;
        }
        footer {
            background: var(--dark-color);
            color: #cbd5e1;
            padding-top: 4rem;
        }
        footer a {
            color: #cbd5e1;
            text-decoration: none;
            transition: color 0.3s;
        }
        footer a:hover {
            color: white;
        }
        .footer-bottom {
            border-top: 1px solid #334155;
            padding: 1.5rem 0;
            margin-top: 3rem;
            font-size: 0.9rem;
        }
        .flink {
            display: inline-block;
            background: #2d3748;
            color: #cbd5e1;
            padding: 0.5rem 1.5rem;
            border-radius: 50px;
            margin: 0.5rem;
            transition: all 0.3s;
            text-decoration: none !important;
        }
        .flink:hover {
            background: var(--primary-color);
            color: white;
            transform: translateY(-3px);
        }
        .friendlink-section {
            background: #f8fafc;
            padding: 4rem 0;
        }
        .case-study-card {
            border-radius: 15px;
            overflow: hidden;
            box-shadow: 0 15px 30px rgba(0,0,0,0.08);
            height: 100%;
            transition: transform 0.4s;
        }
        .case-study-card:hover {
            transform: translateY(-10px);
        }
        .case-img {
            height: 220px;
            object-fit: cover;
            width: 100%;
        }
        .case-content {
            padding: 1.5rem;
        }
        .blog-card {
            border-radius: 12px;
            overflow: hidden;
            box-shadow: 0 10px 20px rgba(0,0,0,0.05);
            height: 100%;
            transition: transform 0.3s;
            background: white;
        }
        .blog-card:hover {
            transform: translateY(-8px);
        }
        .blog-img {
            height: 200px;
            object-fit: cover;
            width: 100%;
        }
        .blog-content {
            padding: 1.5rem;
        }
        .form-control-custom {
            border-radius: 8px;
            padding: 0.8rem 1rem;
            border: 1px solid #cbd5e1;
            transition: all 0.3s;
        }
        .form-control-custom:focus {
            border-color: var(--primary-color);
            box-shadow: 0 0 0 3px rgba(26, 86, 219, 0.1);
        }
        @media (max-width: 768px) {
            .hero-content h1 {
                font-size: 2.5rem;
            }
            .section-header h2 {
                font-size: 2rem;
            }
            .stats-counter {
                padding: 3rem 1rem;
            }
            .counter-item h3 {
                font-size: 2.5rem;
            }
        }
