:root {
            --primary: #0d6efd;
            --secondary: #6c757d;
            --success: #198754;
            --info: #0dcaf0;
            --warning: #ffc107;
            --danger: #dc3545;
            --light: #f8f9fa;
            --dark: #212529;
            --br-blue: #2a4b8c;
            --br-orange: #f85a40;
            --br-gradient: linear-gradient(135deg, var(--br-blue) 0%, var(--primary) 100%);
        }
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        body {
            font-family: 'Inter', sans-serif;
            color: #333;
            line-height: 1.7;
            overflow-x: hidden;
        }
        h1, h2, h3, h4, h5, h6 {
            font-family: 'Poppins', sans-serif;
            font-weight: 700;
            margin-bottom: 1rem;
        }
        a {
            text-decoration: none;
            color: inherit;
            transition: all 0.3s ease;
        }
        a:hover {
            color: var(--br-orange);
        }
        .btn-br-primary {
            background: var(--br-gradient);
            color: white;
            border: none;
            padding: 12px 28px;
            border-radius: 50px;
            font-weight: 600;
            transition: all 0.4s ease;
            box-shadow: 0 4px 15px rgba(42, 75, 140, 0.3);
        }
        .btn-br-primary:hover {
            transform: translateY(-3px);
            box-shadow: 0 8px 20px rgba(42, 75, 140, 0.4);
            color: white;
        }
        .btn-br-outline {
            border: 2px solid var(--br-blue);
            color: var(--br-blue);
            background: transparent;
            padding: 10px 26px;
            border-radius: 50px;
            font-weight: 600;
            transition: all 0.3s ease;
        }
        .btn-br-outline:hover {
            background: var(--br-blue);
            color: white;
        }
        .section-padding {
            padding: 80px 0;
        }
        .section-title {
            text-align: center;
            margin-bottom: 60px;
        }
        .section-title h2 {
            font-size: 2.8rem;
            position: relative;
            display: inline-block;
            padding-bottom: 15px;
        }
        .section-title h2::after {
            content: '';
            position: absolute;
            width: 70px;
            height: 4px;
            background: var(--br-orange);
            bottom: 0;
            left: 50%;
            transform: translateX(-50%);
            border-radius: 2px;
        }
        .section-title p {
            font-size: 1.1rem;
            color: #666;
            max-width: 700px;
            margin: 15px auto 0;
        }
        .navbar {
            background: rgba(255, 255, 255, 0.98);
            box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
            padding: 15px 0;
            transition: all 0.4s ease;
        }
        .navbar.scrolled {
            padding: 10px 0;
            background: white;
        }
        .navbar-brand {
            font-size: 1.8rem;
            font-weight: 800;
            color: var(--br-blue);
        }
        .navbar-brand span {
            color: var(--br-orange);
        }
        .nav-link {
            font-weight: 600;
            margin: 0 8px;
            color: #444;
        }
        .nav-link:hover, .nav-link.active {
            color: var(--br-orange);
        }
        .hero-section {
            background: var(--br-gradient), url('https://images.unsplash.com/photo-1516321318423-f06f85e504b3?ixlib=rb-4.0.3&auto=format&fit=crop&w=2070&q=80') center/cover no-repeat;
            color: white;
            padding: 150px 0 100px;
            position: relative;
        }
        .hero-section h1 {
            font-size: 3.5rem;
            margin-bottom: 25px;
            line-height: 1.2;
        }
        .hero-section p {
            font-size: 1.2rem;
            margin-bottom: 35px;
            opacity: 0.9;
        }
        .service-card {
            background: white;
            border-radius: 15px;
            padding: 40px 30px;
            text-align: center;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
            margin-bottom: 30px;
            height: 100%;
            transition: transform 0.4s ease, box-shadow 0.4s ease;
            border: 1px solid #eee;
        }
        .service-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
        }
        .service-icon {
            width: 90px;
            height: 90px;
            background: linear-gradient(135deg, #e3f2fd 0%, #bbdefb 100%);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 25px;
            font-size: 2.5rem;
            color: var(--br-blue);
        }
        .service-card h3 {
            font-size: 1.5rem;
            margin-bottom: 15px;
        }
        .stats-section {
            background: #f8f9fa;
            padding: 60px 0;
        }
        .stat-item {
            text-align: center;
            padding: 20px;
        }
        .stat-number {
            font-size: 3rem;
            font-weight: 800;
            color: var(--br-blue);
            line-height: 1;
        }
        .stat-text {
            font-size: 1.1rem;
            color: #666;
            margin-top: 10px;
        }
        .portfolio-item {
            border-radius: 15px;
            overflow: hidden;
            margin-bottom: 30px;
            box-shadow: 0 10px 20px rgba(0,0,0,0.08);
            transition: transform 0.3s ease;
        }
        .portfolio-item:hover {
            transform: scale(1.03);
        }
        .portfolio-img {
            height: 250px;
            width: 100%;
            object-fit: cover;
        }
        .portfolio-info {
            padding: 25px;
            background: white;
        }
        .testimonial-card {
            background: white;
            border-radius: 15px;
            padding: 30px;
            box-shadow: 0 10px 30px rgba(0,0,0,0.05);
            margin: 15px;
            border-left: 5px solid var(--br-orange);
        }
        .testimonial-text {
            font-style: italic;
            color: #555;
            margin-bottom: 20px;
        }
        .client-info {
            display: flex;
            align-items: center;
        }
        .client-img {
            width: 60px;
            height: 60px;
            border-radius: 50%;
            object-fit: cover;
            margin-right: 15px;
            border: 3px solid #eee;
        }
        footer {
            background: #1a1a1a;
            color: #aaa;
            padding: 80px 0 30px;
        }
        .footer-logo {
            font-size: 2rem;
            font-weight: 800;
            color: white;
            margin-bottom: 20px;
        }
        .footer-links h5 {
            color: white;
            margin-bottom: 25px;
            font-size: 1.2rem;
        }
        .footer-links ul {
            list-style: none;
            padding: 0;
        }
        .footer-links li {
            margin-bottom: 12px;
        }
        .footer-links a {
            color: #aaa;
        }
        .footer-links a:hover {
            color: white;
            padding-left: 5px;
        }
        .social-icons a {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            width: 40px;
            height: 40px;
            background: #333;
            border-radius: 50%;
            color: white;
            margin-right: 10px;
            transition: background 0.3s ease;
        }
        .social-icons a:hover {
            background: var(--br-orange);
        }
        .copyright {
            border-top: 1px solid #333;
            padding-top: 30px;
            margin-top: 50px;
            text-align: center;
            font-size: 0.9rem;
            color: #777;
        }
        friendlink {
            display: block;
            margin-top: 40px;
        }
        .flink {
            display: inline-block;
            background: #f1f1f1;
            padding: 10px 20px;
            border-radius: 8px;
            margin: 0 10px 10px 0;
            color: #444;
            border: 1px solid #ddd;
            transition: all 0.3s ease;
        }
        .flink:hover {
            background: var(--br-blue);
            color: white;
            border-color: var(--br-blue);
        }
        .contact-info-item {
            display: flex;
            align-items: flex-start;
            margin-bottom: 30px;
        }
        .contact-icon {
            width: 60px;
            height: 60px;
            background: #e3f2fd;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.5rem;
            color: var(--br-blue);
            margin-right: 20px;
            flex-shrink: 0;
        }
        .blog-card {
            border-radius: 15px;
            overflow: hidden;
            box-shadow: 0 10px 20px rgba(0,0,0,0.05);
            margin-bottom: 30px;
            background: white;
            transition: transform 0.3s ease;
        }
        .blog-card:hover {
            transform: translateY(-5px);
        }
        .blog-img {
            height: 220px;
            width: 100%;
            object-fit: cover;
        }
        .blog-content {
            padding: 25px;
        }
        .blog-meta {
            font-size: 0.9rem;
            color: #777;
            margin-bottom: 10px;
        }
        @media (max-width: 992px) {
            .hero-section h1 {
                font-size: 2.8rem;
            }
            .section-title h2 {
                font-size: 2.3rem;
            }
        }
        @media (max-width: 768px) {
            .hero-section {
                padding: 120px 0 80px;
            }
            .hero-section h1 {
                font-size: 2.3rem;
            }
            .section-padding {
                padding: 60px 0;
            }
            .section-title h2 {
                font-size: 2rem;
            }
            .navbar-nav {
                text-align: center;
                padding-top: 15px;
            }
        }
        @media (max-width: 576px) {
            .hero-section h1 {
                font-size: 2rem;
            }
            .btn-br-primary, .btn-br-outline {
                padding: 10px 22px;
                font-size: 0.95rem;
            }
        }
