@charset "UTF-8";
/* CSS Document */
        :root {
            --primary-color: #374151;
            --secondary-color: #6366f1;
            --accent-color: #6366f1;
            --text-dark: #1f2937;
            --text-light: #6b7280;
            --bg-light: #f8fafc;
            --border-color: #d1d5db;
        }
        
        body {
              font-family: "Inter", sans-serif;
  font-optical-sizing: auto;
  font-style: normal;
            line-height: 1.6;
            color: var(--text-dark);
        }
        
        h1, h2, h3, h4, h5, h6 {
            font-family: "Inter", sans-serif;
  font-optical-sizing: auto;
  font-style: normal;
            font-weight: 700;
        }
        
        .hero-section {
            background: linear-gradient(135deg, rgba(55, 65, 81, 0.9), rgba(99, 102, 241, 0.6)), 
                        url('/assets/img/hb-hero.webp') center/cover;
            min-height: 100vh;
            display: flex;
            align-items: center;
            color: white;
        }
        
        .btn-primary {
            background-color: var(--primary-color);
            border-color: var(--primary-color);
            padding: 12px 30px;
            font-weight: 600;
            border-radius: 8px;
            transition: all 0.3s ease;
        }
        
        .btn-primary:hover {
            background-color: var(--secondary-color);
            border-color: var(--secondary-color);
            transform: translateY(-2px);
        }
        
        .btn-outline-primary {
            color: var(--secondary-color);
            border-color: var(--secondary-color);
            padding: 12px 30px;
            font-weight: 600;
            border-radius: 8px;
            transition: all 0.3s ease;
        }
        
        .btn-outline-primary:hover {
            background-color: var(--secondary-color);
            border-color: var(--secondary-color);
            transform: translateY(-2px);
        }
        
        .portfolio-card {
            transition: transform 0.3s ease, box-shadow 0.3s ease;
            border: 1px solid var(--border-color);
            border-radius: 12px;
            overflow: hidden;
            background: white;
        }
        
        .portfolio-card:hover {
            transform: translateY(-8px);
            box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
        }
        
        .portfolio-card img {
            transition: transform 0.3s ease;
        }
        
        .portfolio-card:hover img {
            transform: scale(1.05);
        }
        
        .section-padding {
            padding: 80px 0;
        }
        
        .bg-light-custom {
            background-color: var(--bg-light);
        }
        
        .text-accent {
            color: var(--secondary-color);
        }
        
        .testimonial-card {
            background: white;
            border: 1px solid var(--border-color);
            border-radius: 12px;
            padding: 30px;
            margin: 15px;
            box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
        }
        
        .navbar-brand {
            font-family: "Inter", sans-serif;
  font-optical-sizing: auto;
  font-style: normal;
            font-weight: 700;
            font-size: 1.5rem;
        }
        
        .navbar {
            background-color: rgba(255, 255, 255, 0.95);
            backdrop-filter: blur(10px);
            transition: all 0.3s ease;
        }
        
        .navbar.scrolled {
            box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
        }
        
        .form-control:focus {
            border-color: var(--secondary-color);
            box-shadow: 0 0 0 0.2rem rgba(99, 102, 241, 0.25);
        }
        
        .skill-item {
            background: white;
            border: 1px solid var(--border-color);
            border-radius: 8px;
            padding: 20px;
            text-align: center;
            transition: all 0.3s ease;
        }
        
        .skill-item:hover {
            transform: translateY(-4px);
            box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
        }
        
        .skill-item i {
            font-size: 2.5rem;
            color: var(--secondary-color);
            margin-bottom: 15px;
        }
        
        @media (prefers-reduced-motion: reduce) {
            .portfolio-card,
            .btn-primary,
            .btn-outline-primary,
            .skill-item {
                transition: none;
            }
            
            .portfolio-card:hover,
            .skill-item:hover {
                transform: none;
            }
            
            .btn-primary:hover,
            .btn-outline-primary:hover {
                transform: none;
            }
        }
        
        /* Focus styles for accessibility */
        .btn:focus,
        .form-control:focus,
        .navbar-nav .nav-link:focus {
            outline: 2px solid var(--secondary-color);
            outline-offset: 2px;
        }
        
        /* Skip to main content link */
        .skip-link {
            position: absolute;
            top: -40px;
            left: 6px;
            background: var(--primary-color);
            color: white;
            padding: 8px;
            text-decoration: none;
            border-radius: 4px;
            z-index: 1000;
        }
        
        .skip-link:focus {
            top: 6px;
        }
   