:root {
    --primary-color: #0d6efd;
    --dark-bg: #1e293b;
    --light-bg: #f8f9fa;
}

body {
    font-family: 'Inter', sans-serif;
    color: #333;
    line-height: 1.7;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

/* Navigation */
.navbar {
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
    padding: 1rem 0;
}

.navbar-brand {
    font-weight: 700;
    font-size: 1.5rem;
    color: var(--primary-color) !important;
}

/* Hero Section */
.hero-section {
    background: linear-gradient(135deg, #1e293b 0%, #0f172a 100%);
    color: white;
    padding: 100px 0;
    position: relative;
    overflow: hidden;
}

    .hero-section::after {
        content: '';
        position: absolute;
        top: -50%;
        right: -10%;
        width: 600px;
        height: 600px;
        background: radial-gradient(circle, rgba(13, 110, 253, 0.15) 0%, rgba(0,0,0,0) 70%);
        border-radius: 50%;
    }

.hero-title {
    font-size: 3.5rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.hero-subtitle {
    font-size: 1.25rem;
    font-weight: 300;
    opacity: 0.9;
    margin-bottom: 2rem;
    max-width: 600px;
}

/* Cards & Services */
.service-card {
    border: none;
    border-radius: 12px;
    background: white;
    padding: 2rem;
    height: 100%;
    transition: all 0.3s ease;
    box-shadow: 0 4px 6px rgba(0,0,0,0.02);
    border: 1px solid rgba(0,0,0,0.05);
}

    .service-card:hover {
        transform: translateY(-5px);
        box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
        border-color: var(--primary-color);
    }

.icon-box {
    width: 60px;
    height: 60px;
    background-color: rgba(13, 110, 253, 0.1);
    color: var(--primary-color);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
}

/* Page Architecture Specifics */
.page-header {
    background: linear-gradient(135deg, #6a11cb 0%, #2575fc 100%);
    color: white;
    padding: 80px 0;
    margin-bottom: 3rem;
}

.feature-card {
    border: none;
    border-radius: 12px;
    padding: 2rem;
    height: 100%;
    background: white;
    box-shadow: 0 4px 6px rgba(0,0,0,0.02);
    border: 1px solid rgba(0,0,0,0.05);
    transition: transform 0.3s;
}

    .feature-card:hover {
        transform: translateY(-5px);
        box-shadow: 0 10px 20px rgba(0,0,0,0.1);
        border-color: var(--primary-color);
    }

.shared-lib-box {
    background-color: #f0f4ff;
    border-left: 5px solid #6a11cb;
    padding: 2rem;
    border-radius: 8px;
}

/* Clients Logos */
.client-logo {
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1rem;
    transition: all 0.3s ease;
    filter: grayscale(100%);
    opacity: 0.5;
}

    .client-logo:hover {
        filter: grayscale(0%);
        opacity: 1;
        transform: scale(1.05);
    }

    .client-logo img {
        max-height: 100%;
        max-width: 100%;
        object-fit: contain;
    }

/* Footer */
footer {
    background-color: var(--dark-bg);
    color: rgba(255,255,255,0.7);
    padding: 4rem 0 2rem;
    margin-top: auto;
}

    footer h5 {
        color: white;
        font-weight: 600;
        margin-bottom: 1.5rem;
    }

    footer a {
        color: rgba(255,255,255,0.7);
        text-decoration: none;
        transition: color 0.2s;
    }

        footer a:hover {
            color: white;
        }

/* Responsive */
@media (max-width: 768px) {
    .hero-title {
        font-size: 2.5rem;
    }

    .hero-section {
        padding: 60px 0;
    }
}


.my-background-div {
    background-image: url('../images/introfond.jpg');
    background-repeat: no-repeat; /* Prevents tiling */
    background-size: cover; /* Scales the image to cover the entire div */
    background-position: center; /* Centers the image */
}


.semi-transparent-background {
    background-color: rgb(0, 0, 0, 0,20); /* Opaque text on a 20% opaque background */
}
