/* === Utility Classes === */

/* Text Alignment */
.text-center {
    text-align: center;
}

.text-left {
    text-align: left;
}

.text-right {
    text-align: right;
}

/* Flex Helpers */
.flex {
    display: flex;
}

.flex-col {
    flex-direction: column;
}

.items-center {
    align-items: center;
}

.items-start {
    align-items: flex-start;
}

.justify-center {
    justify-content: center;
}

.justify-between {
    justify-content: space-between;
}

.gap-1 {
    gap: 4px;
}

.gap-2 {
    gap: 8px;
}

.gap-4 {
    gap: 16px;
}

.gap-6 {
    gap: 24px;
}

.gap-8 {
    gap: 32px;
}

.flex-grow {
    flex-grow: 1;
}

.flex-shrink-0 {
    flex-shrink: 0;
}

/* Margins */
.m-0 {
    margin: 0;
}

.mx-auto {
    margin-inline: auto;
}

.mb-0 {
    margin-bottom: 0;
}

.mb-2 {
    margin-bottom: 8px;
}

.mb-4 {
    margin-bottom: 16px;
}

.mb-6 {
    margin-bottom: 24px;
}

.mb-8 {
    margin-bottom: 32px;
}

.mb-10 {
    margin-bottom: 40px;
}

.mb-12 {
    margin-bottom: 48px;
}

.mb-16 {
    margin-bottom: 60px;
}

.mb-20 {
    margin-bottom: 80px;
}

.mt-2 {
    margin-top: 8px;
}

.mt-4 {
    margin-top: 16px;
}

.mt-6 {
    margin-top: 24px;
}

/* Padding */
.p-0 {
    padding: 0;
}

/* Typography Helpers */
.text-primary {
    color: var(--primary-blue);
}

.text-white {
    color: #ffffff;
}

.text-muted {
    color: var(--text-muted);
}

.text-card {
    color: var(--card-text);
}

.font-bold {
    font-weight: 700;
}

.font-semibold {
    font-weight: 600;
}

.font-medium {
    font-weight: 500;
}

.text-uppercase {
    text-transform: uppercase;
}

.tracking-wider {
    letter-spacing: 0.05em;
}

.tracking-widest {
    letter-spacing: 0.1em;
}

.overline-text {
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--primary-blue);
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

/* Backgrounds & Borders */
.bg-glass {
    background: var(--glass-bg);
}

.border-glass {
    border: 1px solid var(--glass-border);
}

.border-t-glass {
    border-top: 1px solid var(--glass-border);
}

.border-b-glass {
    border-bottom: 1px solid var(--glass-border);
}

.bg-card {
    background: var(--card-bg);
}

.bg-dark {
    background: #010204;
}

.bg-white {
    background: #ffffff;
}

/* Display */
.d-block {
    display: block;
}

.d-none {
    display: none;
}

.w-100 {
    width: 100%;
}

.h-100 {
    height: 100%;
}

/* Rounded */
.rounded-sm {
    border-radius: 8px;
}

.rounded-md {
    border-radius: 12px;
}

.rounded-lg {
    border-radius: 16px;
}

.rounded-xl {
    border-radius: 24px;
}

.rounded-full {
    border-radius: 50%;
}

/* Custom Product Colors for Icons Base Utility */
.icon-hosting {
    color: var(--primary-blue);
    background: rgba(0, 82, 255, 0.1);
}

.icon-khata {
    color: #10b981;
    background: rgba(16, 185, 129, 0.1);
}

.icon-cloud {
    color: #8b5cf6;
    background: rgba(139, 92, 246, 0.1);
}