:root {
            --primary-color: #0056b3;
            --secondary-color: #17a2b8;
            --dark-color: #343a40;
            --light-color: #f8f9fa;
            --accent-color: #28a745;
        }
        body {
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            line-height: 1.8;
            color: #333;
            overflow-x: hidden;
        }
        h1, h2, h3, h4, h5, h6 {
            font-weight: 700;
            color: var(--dark-color);
        }
        .navbar {
            background-color: rgba(255, 255, 255, 0.95);
            box-shadow: 0 4px 12px rgba(0,0,0,0.05);
            padding: 1rem 0;
            transition: all 0.3s ease;
        }
        .navbar-brand {
            font-size: 1.8rem;
            font-weight: 800;
            color: var(--primary-color);
        }
        .navbar-nav .nav-link {
            font-weight: 600;
            color: var(--dark-color);
            margin: 0 0.5rem;
            transition: color 0.3s;
        }
        .navbar-nav .nav-link:hover,
        .navbar-nav .nav-link.active {
            color: var(--primary-color);
        }
        .hero-section {
            background: linear-gradient(135deg, var(--primary-color) 0%, #007bff 100%);
            color: white;
            padding: 8rem 0;
            position: relative;
            overflow: hidden;
        }
        .hero-section h1 {
            font-size: 3.5rem;
            color: white;
            margin-bottom: 1.5rem;
        }
        .hero-section p {
            font-size: 1.3rem;
            opacity: 0.9;
        }
        .section-title {
            position: relative;
            padding-bottom: 1rem;
            margin-bottom: 3rem;
        }
        .section-title:after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 50%;
            transform: translateX(-50%);
            width: 80px;
            height: 4px;
            background-color: var(--primary-color);
        }
        .feature-card {
            border: none;
            border-radius: 12px;
            box-shadow: 0 6px 20px rgba(0,0,0,0.08);
            transition: transform 0.4s ease, box-shadow 0.4s ease;
            height: 100%;
            overflow: hidden;
        }
        .feature-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 12px 30px rgba(0,0,0,0.12);
        }
        .feature-icon {
            font-size: 3rem;
            color: var(--primary-color);
            margin-bottom: 1.5rem;
        }
        .service-item {
            background: white;
            padding: 2.5rem;
            border-radius: 12px;
            box-shadow: 0 6px 15px rgba(0,0,0,0.05);
            transition: all 0.3s ease;
            height: 100%;
        }
        .service-item:hover {
            background: var(--primary-color);
            color: white;
            transform: scale(1.03);
        }
        .service-item:hover h3,
        .service-item:hover p {
            color: white;
        }
        .case-study-card {
            border-radius: 12px;
            overflow: hidden;
            box-shadow: 0 8px 25px rgba(0,0,0,0.1);
            transition: transform 0.3s ease;
        }
        .case-study-card:hover {
            transform: scale(1.02);
        }
        .case-study-card img {
            height: 250px;
            object-fit: cover;
            transition: transform 0.5s ease;
        }
        .case-study-card:hover img {
            transform: scale(1.05);
        }
        .news-card {
            border-left: 5px solid var(--primary-color);
            padding-left: 1.5rem;
            margin-bottom: 2rem;
            transition: all 0.3s ease;
        }
        .news-card:hover {
            border-left-color: var(--accent-color);
            padding-left: 2rem;
            background-color: #f8f9fa;
        }
        .contact-form .form-control {
            border-radius: 8px;
            padding: 1rem;
            border: 1px solid #ddd;
            transition: all 0.3s;
        }
        .contact-form .form-control:focus {
            border-color: var(--primary-color);
            box-shadow: 0 0 0 0.25rem rgba(0,86,179,0.25);
        }
        .btn-primary {
            background-color: var(--primary-color);
            border-color: var(--primary-color);
            padding: 0.8rem 2.5rem;
            border-radius: 8px;
            font-weight: 600;
            transition: all 0.3s;
        }
        .btn-primary:hover {
            background-color: #004494;
            border-color: #004494;
            transform: translateY(-2px);
        }
        .friendlink {
            background-color: #f9f9f9;
            padding: 4rem 0;
        }
        .flink {
            display: inline-block;
            margin: 0.5rem 1rem;
            padding: 0.6rem 1.5rem;
            background: white;
            border-radius: 50px;
            color: var(--dark-color);
            text-decoration: none;
            font-weight: 600;
            box-shadow: 0 4px 10px rgba(0,0,0,0.05);
            transition: all 0.3s ease;
        }
        .flink:hover {
            background-color: var(--primary-color);
            color: white;
            transform: translateY(-3px);
        }
        footer {
            background-color: var(--dark-color);
            color: #ccc;
            padding: 4rem 0 2rem;
        }
        footer a {
            color: #ccc;
            text-decoration: none;
            transition: color 0.3s;
        }
        footer a:hover {
            color: white;
        }
        .social-icons a {
            display: inline-block;
            width: 40px;
            height: 40px;
            background: rgba(255,255,255,0.1);
            border-radius: 50%;
            text-align: center;
            line-height: 40px;
            margin-right: 0.8rem;
            transition: all 0.3s;
        }
        .social-icons a:hover {
            background: var(--primary-color);
            transform: rotate(360deg);
        }
        @media (max-width: 768px) {
            .hero-section h1 {
                font-size: 2.5rem;
            }
            .hero-section {
                padding: 5rem 0;
            }
            .section-title {
                font-size: 1.8rem;
            }
        }
        .content-rich {
            font-size: 1.1rem;
            line-height: 1.9;
        }
        .content-rich h4 {
            margin-top: 2rem;
            color: var(--primary-color);
        }
        .stats-number {
            font-size: 3rem;
            font-weight: 800;
            color: var(--primary-color);
        }
        .timeline-item {
            position: relative;
            padding-left: 2rem;
            margin-bottom: 2.5rem;
        }
        .timeline-item:before {
            content: '';
            position: absolute;
            left: 0;
            top: 0.5rem;
            width: 12px;
            height: 12px;
            border-radius: 50%;
            background-color: var(--primary-color);
        }
        .timeline-item:after {
            content: '';
            position: absolute;
            left: 5px;
            top: 1.5rem;
            bottom: -2.5rem;
            width: 2px;
            background-color: #e9ecef;
        }
        .timeline-item:last-child:after {
            display: none;
        }
