/* Inherit variables from main style, but override for this page's specific look */
:root {
    --page-bg: #0d1117;
    --card-surface: #1e2530;
    --text-primary: #ffffff;
    --text-blue: #3b82f6;
    --border-color: #30363d;
}

body {
    background-color: var(--page-bg);
    color: var(--text-primary);
    font-family: 'Inter', sans-serif;
    margin: 0;
    padding: 0;
    overflow-x: hidden;
}

/* Sections */
section {
    padding: 80px 20px;
    border-bottom: 1px solid var(--border-color);
}

.container {
    max-width: 1200px;
    margin: 0 auto;
}

/* Top Bar */
.top-bar {
    background: linear-gradient(to bottom, #1a2332, #0d1117);
    padding: 20px;
    text-align: center;
    border-bottom: 1px solid #333;
}

.top-bar-title {
    font-size: 1.5rem;
    font-weight: 700;
    margin: 0;
}

/* Description Split Section */
.description-section {
    background-color: #0d1117;
    /* Background similar to screenshot top part which has a blurred newspaper effect, 
       but we will keep it clean dark or use a subtle gradient if needed. 
       For now, clean dark per user instruction to avoid external assets. */
}

.description-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

.description-img img {
    width: 100%;
    border-radius: 12px;
    /* box-shadow: 0 10px 30px rgba(0,0,0,0.3); */
    /* Flat look in screenshot */
}

.description-content h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
    color: #a78bfa;
    /* Purple tint matching screenshot */
    line-height: 1.2;
}

.description-logo {
    height: 40px;
    margin-bottom: 10px;
    display: block;
}

.description-title-text {
    font-size: 2.2rem;
    font-weight: 700;
    margin-bottom: 20px;
    color: #a78bfa;
    /* Purple tint */
}

.description-title-text span {
    color: #ef4444;
    /* 'i' in red */
}


.description-text {
    font-size: 0.95rem;
    color: #ccc;
    line-height: 1.6;
    margin-bottom: 20px;
}

.btn-primary {
    background-color: #007bff;
    color: white;
    padding: 12px 30px;
    border: none;
    border-radius: 5px;
    font-weight: 600;
    text-decoration: none;
    display: inline-block;
    cursor: pointer;
    margin-top: 10px;
}


/* Clients Section */
.clients-section {
    background-color: #0d1117;
    text-align: center;
}

.section-title {
    text-align: center;
    font-size: 3rem;
    margin-bottom: 0;
    font-weight: 700;
    color: #0f1623;
    /* Dark shadow text per screenshot 'Clients' */
    text-transform: uppercase;
    position: relative;
    z-index: 1;
}

.section-subtitle {
    text-align: center;
    font-size: 2rem;
    margin-top: -30px;
    margin-bottom: 50px;
    font-weight: 700;
    position: relative;
    z-index: 2;
    color: #fff;
}


.clients-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    /* 6 rows of 2 in mobile, 6 cols in desktop */
    gap: 20px;
}

.client-card {
    background-color: #161b22;
    padding: 15px;
    border-radius: 8px;
    border: 1px solid var(--border-color);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 100px;
    /* Smaller cards per screenshot */
    transition: transform 0.2s;
}

.client-card:hover {
    transform: translateY(-2px);
    border-color: #fff;
}

.client-card img {
    max-width: 80%;
    max-height: 50px;
    object-fit: contain;
    margin-bottom: 10px;
}

.client-name {
    font-size: 0.7rem;
    color: #ccc;
    text-align: center;
    word-break: break-word;
}

.more-clients-link {
    display: inline-block;
    margin-top: 30px;
    color: var(--text-blue);
    text-decoration: none;
    font-size: 0.9rem;
}

/* Footer (Simplified) */
.footer {
    background-color: #0a0a0a;
    padding: 40px 0;
    text-align: center;
    border-top: 1px solid #333;
    font-size: 0.9rem;
    color: #666;
}

/* Responsive */
@media (max-width: 992px) {
    .description-grid {
        grid-template-columns: 1fr;
    }

    .clients-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

@media (max-width: 600px) {
    .clients-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}