        :root {
            --primary-blue: #0d6efd;
            --primary-red: #dc3545;
            --light-blue: #e3f2fd;
            --light-red: #f8d7da;
        }
        
        body {
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            background-color: #f8f9fa;
        }
        
        .navbar-brand {
            font-weight: 700;
            font-size: 1.8rem;
        }
        
        .text-blue {
            color: var(--primary-blue);
        }
        
        .text-red {
            color: var(--primary-red);
        }
        
        .bg-blue {
            background-color: var(--primary-blue);
        }
        
        .bg-red {
            background-color: var(--primary-red);
        }
        
        .bg-light-blue {
            background-color: var(--light-blue);
        }
        
        .bg-light-red {
            background-color: var(--light-red);
        }
        
        .hero {
            background: linear-gradient(rgba(255,255,255,0.9), rgba(255,255,255,0.9)), 
                        url('/upload/dev2fun.imagecompress/webp/iblock/3b4/96ppe3wm4bwh2q93wcbhihxr9l7zm450.webp') no-repeat center center;
            background-size: cover;
            padding: 120px 0 80px;
        }
        
        .section-title {
            position: relative;
            margin-bottom: 2rem;
            font-weight: 700;
        }
        
        .section-title:after {
            content: '';
            position: absolute;
            bottom: -10px;
            left: 0;
            width: 60px;
            height: 4px;
            background: var(--primary-red);
        }
        
        .btn-blue {
            background-color: var(--primary-blue);
            color: white;
            border-radius: 30px;
            padding: 10px 25px;
            font-weight: 600;
        }
        
        .btn-blue:hover {
            background-color: #0b5ed7;
            color: white;
        }
        
        .btn-red {
            background-color: var(--primary-red);
            color: white;
            border-radius: 30px;
            padding: 10px 25px;
            font-weight: 600;
        }
        
        .btn-red:hover {
            background-color: #bb2d3b;
            color: white;
        }
        
        .service-card {
            transition: transform 0.3s;
            border-radius: 15px;
            overflow: hidden;
            border: none;
            box-shadow: 0 5px 15px rgba(0,0,0,0.05);
        }
        
        .service-card:hover {
            transform: translateY(-10px);
        }
        
        .portfolio-item {
            border-radius: 15px;
            overflow: hidden;
            position: relative;
            height: 300px;
            margin-bottom: 30px;
        }
        
        .portfolio-img {
            height: 100%;
            width: 100%;
            object-fit: cover;
            transition: transform 0.5s;
        }
        
        .portfolio-overlay {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(13, 110, 253, 0.85);
            display: flex;
            flex-direction: column;
            justify-content: center;
            align-items: center;
            color: white;
            opacity: 0;
            transition: opacity 0.3s;
            padding: 20px;
            text-align: center;
        }
        
        .portfolio-item:hover .portfolio-overlay {
            opacity: 1;
        }
        
        .portfolio-item:hover .portfolio-img {
            transform: scale(1.1);
        }
        
        .blog-card {
            border-radius: 15px;
            overflow: hidden;
            border: none;
            box-shadow: 0 5px 15px rgba(0,0,0,0.05);
            transition: transform 0.3s;
            height: 100%;
        }
        
        .blog-card:hover {
            transform: translateY(-5px);
        }
        
        .testimonial-card {
            border-radius: 15px;
            border: none;
            box-shadow: 0 5px 15px rgba(0,0,0,0.05);
            padding: 25px;
        }
        
        .footer {
            background-color: #212529;
            color: #fff;
            padding: 60px 0 20px;
        }
        
        .footer a {
            color: #dee2e6;
            text-decoration: none;
            transition: color 0.3s;
        }
        
        .footer a:hover {
            color: white;
        }
        
        .social-icons a {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            width: 40px;
            height: 40px;
            background: rgba(255,255,255,0.1);
            border-radius: 50%;
            margin-right: 10px;
            transition: background 0.3s;
        }
        
        .social-icons a:hover {
            background: var(--primary-blue);
        }
        
        .dashboard-card {
            border-radius: 15px;
            border: none;
            box-shadow: 0 5px 15px rgba(0,0,0,0.05);
            padding: 25px;
            height: 100%;
            transition: transform 0.3s;
        }
        
        .dashboard-card:hover {
            transform: translateY(-5px);
        }
        
        .project-status {
            padding: 5px 15px;
            border-radius: 20px;
            font-size: 0.85rem;
            font-weight: 500;
        }
        
        .status-new {
            background-color: #e3f2fd;
            color: var(--primary-blue);
        }
        
        .status-in-progress {
            background-color: #fff3cd;
            color: #856404;
        }
        
        .status-completed {
            background-color: #d4edda;
            color: #155724;
        }
        
        .page-content {
            /*min-height: calc(100vh - 140px);*/
        }
        @media (max-width: 768px){
            .hero{
                padding: 2rem 0 1rem;
            }
        }