/* assets/css/style.css */
:root {
    --primary-dark: #0f172a;
    --accent-blue: #3b82f6;
    --bg-light: #f8fafc;
}

html, body {
    height: 100%;
    margin: 0;
}

body {
    display: flex;
    flex-direction: column;
    font-family: 'Poppins', sans-serif;
    background-color: var(--bg-light);
    color: #1e293b;
}

.main-content {
    flex: 1 0 auto;
}

footer {
    flex-shrink: 0;
    background-color: var(--primary-dark) !important;
}

/* HERO SECTION FIX */
.hero {
    position: relative;
    min-height: 80vh;
    display: flex;
    align-items: center;
    /* ADDED DARK FALLBACK COLOR (#0f172a) */
    background: #0f172a url('https://images.unsplash.com/photo-1460925895917-afdab827c52f?auto=format&fit=crop&q=80&w=2426') center/cover no-repeat;
    padding: 80px 0;
    overflow: hidden;
    color: #ffffff !important; /* Force text white */
}

/* DARK OVERLAY ensures text visibility */
.hero::before {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(15, 23, 42, 0.85); 
    z-index: 1;
}

.hero .container {
    position: relative;
    z-index: 2;
}

.hero h1, .hero p, .hero .lead {
    color: #ffffff !important; /* Force visibility */
}

.card {
    border: none;
    border-radius: 24px;
    background: #ffffff;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease;
}

.card:hover { transform: translateY(-10px); }

/* Specific sizing for Client Cards only */
.client-card {
    padding: 0.75rem !important; /* Very compact padding */
    min-height: 120px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    border-radius: 12px !important; /* Sharper corners for smaller cards */
}

/* Shrink the logo container */
.client-logo-wrapper {
    height: 50px !important; /* Smaller logo area */
    margin-bottom: 0.5rem !important;
}

/* Smaller font for client names */
.client-card h6 {
    font-size: 0.75rem !important;
    line-height: 1.2;
    margin: 0;
    color: var(--text-muted);
}

/* Adjust the icon size if no logo exists */
.client-card .logo-empty i {
    font-size: 1.25rem !important;
}

/* Specific styling for the compact Client Cards */
.client-card {
    min-height: 120px; /* Reduced height */
    justify-content: center;
    border-radius: 12px !important;
}

.client-logo-wrapper {
    height: 50px !important; /* Shorter logo area */
    display: flex;
    align-items: center;
    justify-content: center;
}

.client-logo {
    max-height: 100%;
    width: auto;
}

.client-card h6 {
    line-height: 1.2;
}