 :root {
    --primary-blue: #2c2f79;
    --secondary-blue: #242c7d;
    --dark-blue: #252c7c;
    --accent-orange: #f5821f;
    --pure-white: #ffffff;
}
 .hero-section {
            background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), url('https://images.unsplash.com/photo-1450101499163-c8848c66ca85?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=1470&q=80');
            background-size: cover;
            background-position: center;
            color: white;
            padding: 100px 0;
        }
        .service-card {
            transition: transform 0.3s;
            margin-bottom: 20px;
            height: 100%;
        }
        .service-card:hover {
            transform: translateY(-10px);
        }
        .navbar {
            box-shadow: 0 2px 10px rgba(0,0,0,0.1);
        }
        footer {
            background-color: #343a40;
            color: white;
            padding: 30px 0;
        }
        .team-member {
            text-align: center;
            margin-bottom: 30px;
        }
        .team-member img {
            width: 150px;
            height: 150px;
            border-radius: 50%;
            object-fit: cover;
            margin-bottom: 15px;
            border: 5px solid #f8f9fa;
        }
        .navbar-brand-with-logo {
        display: flex;
        align-items: center;
    }
    .navbar-logo {
        height: 60px;
        margin-right: 10px;
    }
    .footer-logo {
        height: 50px;
        margin-bottom: 15px;
    }
    .service-card {
    border-top: 4px solid var(--accent-orange);
    background-color: var(--pure-white);
}

.service-card:hover {
    box-shadow: 0 5px 15px rgba(37, 44, 124, 0.2);
}