/* 
 * =========================================================
 * IndiaFilings Premium Global Aesthetic Design System 
 * =========================================================
 */

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800&family=Poppins:wght@400;500;600;700&display=swap');

:root {
    /* Brand Colors */
    --if-primary: #3b82f6;      /* Bright Blue */
    --if-primary-hover: #2563eb;
    --if-navy: #0f1522;         /* Deep Header Dark */
    --if-accent: #da8b2b;       /* LegalTaxation Gold */
    --if-accent-hover: #c27a24;
    
    /* Backgrounds */
    --if-bg-base: #ffffff;
    --if-bg-surface: #f8fafc;   /* Soft slate/grey for sections */
    --if-bg-card: #ffffff;
    
    /* Text */
    --if-text-primary: #1e293b;
    --if-text-secondary: #475569;
    --if-text-muted: #94a3b8;
    
    /* Geometry */
    --if-radius-base: 12px;
    --if-radius-lg: 24px;
    --if-radius-pill: 50px;
    
    /* Shadows */
    --if-shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
    --if-shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.05), 0 2px 4px -1px rgba(0, 0, 0, 0.03);
    --if-shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.05), 0 4px 6px -2px rgba(0, 0, 0, 0.025);
    --if-shadow-hover: 0 20px 25px -5px rgba(0,0,0,0.1), 0 10px 10px -5px rgba(0,0,0,0.04);
}

body {
    font-family: 'Inter', sans-serif !important;
    background-color: var(--if-bg-base);
    color: var(--if-text-secondary);
    line-height: 1.6;
    margin: 0;
    padding: 0;
    -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Inter', sans-serif;
    color: var(--if-text-primary);
    font-weight: 700;
    letter-spacing: -0.02em;
}

/* =========================================================
 * Bootstrap Core component overrides 
 * ========================================================= */

/* Buttons */
.btn {
    border-radius: var(--if-radius-pill);
    padding: 10px 28px;
    font-weight: 600;
    letter-spacing: 0.3px;
    transition: all 0.3s ease;
    border: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.btn-primary {
    background-color: var(--if-primary);
    color: white;
    box-shadow: 0 4px 14px 0 rgba(59, 130, 246, 0.39);
}
.btn-primary:hover {
    background-color: var(--if-primary-hover);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(59, 130, 246, 0.4);
    color: white;
}

.btn-outline-primary {
    border: 2px solid var(--if-primary);
    background-color: transparent;
    color: var(--if-primary);
}
.btn-outline-primary:hover {
    background-color: var(--if-primary);
    color: white;
}

/* Cards */
.card {
    border: 1px solid #e2e8f0;
    border-radius: var(--if-radius-lg);
    background: var(--if-bg-card);
    box-shadow: var(--if-shadow-md);
    transition: all 0.3s ease;
    overflow: hidden;
}
.card:hover {
    transform: translateY(-5px);
    box-shadow: var(--if-shadow-hover);
    border-color: #cbd5e1;
}
.card-body {
    padding: 2rem;
}

/* Forms */
.form-control, .form-select {
    border-radius: var(--if-radius-base);
    border: 1px solid #cbd5e1;
    padding: 12px 18px;
    font-size: 15px;
    transition: all 0.2s ease;
    background-color: #f8fafc;
}
.form-control:focus, .form-select:focus {
    background-color: white;
    border-color: var(--if-primary);
    box-shadow: 0 0 0 4px rgba(59, 130, 246, 0.1);
}

/* =========================================================
 * Custom Global System Classes
 * ========================================================= */

.section-padding {
    padding: 100px 0;
}
.section-padding-sm {
    padding: 60px 0;
}
.bg-surface {
    background-color: var(--if-bg-surface);
}

.text-gradient {
    background: linear-gradient(135deg, var(--if-primary) 0%, #1d4ed8 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    display: inline-block;
}