/* ==========================================================================
   DARSH TECHNOSOFT — MASTER STYLESHEET
   Brand: DarshTechnosoft
   Colors: #1B59A9 (Primary) | #5073BC | #8593BE | #97A7DE | #CDD4F3
   ========================================================================== */

@import url('css/variables.css?v=3.0');
@import url('css/components.css?v=3.1');
@import url('css/navigation.css?v=3.0');
@import url('css/responsive.css?v=3.0');

/* --- CSS RESETS & GLOBAL BASE --- */
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    font-size: 16px;
    scroll-behavior: smooth;
    -webkit-text-size-adjust: 100%;
}

body {
    font-family: var(--dt-font-sans);
    font-size: 1rem;
    line-height: 1.6;
    color: var(--dt-text);
    background-color: var(--dt-background);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    overflow-x: hidden;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

body.drawer-open {
    overflow: hidden;
}

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

/* Image resets */
img, svg {
    max-width: 100%;
    height: auto;
    display: block;
}

/* Link defaults */
a {
    color: var(--dt-primary);
    text-decoration: none;
    transition: color var(--dt-ease-fast);
}

a:hover {
    color: var(--dt-primary-hover);
    text-decoration: none;
}

/* Headings base */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--dt-font-heading);
    color: var(--dt-text);
    font-weight: 700;
    line-height: 1.25;
}

/* Text selections */
::selection {
    background-color: var(--dt-very-light);
    color: var(--dt-primary);
}

/* --- UTILITY CLASSES --- */
.text-center { text-align: center !important; }
.text-left { text-align: left !important; }
.text-right { text-align: right !important; }

.text-primary { color: var(--dt-primary) !important; }
.text-secondary { color: var(--dt-text-secondary) !important; }
.text-muted { color: var(--dt-text-muted) !important; }
.text-white { color: var(--dt-white) !important; }

.bg-white { background-color: var(--dt-white) !important; }
.bg-soft { background-color: var(--dt-soft-bg) !important; }
.bg-light-blue { background-color: var(--dt-very-light-subtle) !important; }

.mb-0 { margin-bottom: 0 !important; }
.mb-2 { margin-bottom: var(--dt-sp-2) !important; }
.mb-4 { margin-bottom: var(--dt-sp-4) !important; }
.mb-6 { margin-bottom: var(--dt-sp-6) !important; }
.mb-8 { margin-bottom: var(--dt-sp-8) !important; }
.mb-12 { margin-bottom: var(--dt-sp-12) !important; }

.mt-0 { margin-top: 0 !important; }
.mt-4 { margin-top: var(--dt-sp-4) !important; }
.mt-8 { margin-top: var(--dt-sp-8) !important; }
.mt-12 { margin-top: var(--dt-sp-12) !important; }

.w-100 { width: 100% !important; }
.d-flex { display: flex !important; }
.align-center { align-items: center !important; }
.justify-between { justify-content: space-between !important; }
.justify-center { justify-content: center !important; }
.flex-wrap { flex-wrap: wrap !important; }
.gap-2 { gap: 8px !important; }
.gap-3 { gap: 12px !important; }
.gap-4 { gap: 16px !important; }
.gap-6 { gap: 24px !important; }
