/* BestHosting.bd - Global Styles */

:root {
    --color-indigo-600: #4f46e5;
    --color-indigo-700: #4338ca;
    --color-indigo-50: #eef2ff;
    --color-indigo-100: #e0e7ff;
    --color-cyan-500: #06b6d4;
    --color-emerald-50: #f0fdf4;
    --color-emerald-700: #15803d;
    --color-emerald-100: #dcfce7;
    --color-slate-50: #f8fafc;
    --color-slate-100: #f1f5f9;
    --color-slate-200: #e2e8f0;
    --color-slate-300: #cbd5e1;
    --color-slate-400: #94a3b8;
    --color-slate-500: #64748b;
    --color-slate-600: #475569;
    --color-slate-700: #334155;
    --color-slate-800: #1e293b;
    --color-slate-900: #0f172a;
    --color-slate-950: #020617;
    --color-white: #ffffff;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', 'Oxygen',
        'Ubuntu', 'Cantarell', 'Fira Sans', 'Droid Sans', 'Helvetica Neue',
        sans-serif;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* Utility Classes */
.bg-slate-50 {
    background-color: var(--color-slate-50);
}

.bg-slate-100 {
    background-color: var(--color-slate-100);
}

.bg-slate-900 {
    background-color: var(--color-slate-900);
}

.bg-slate-950 {
    background-color: var(--color-slate-950);
}

.bg-white {
    background-color: var(--color-white);
}

.bg-white\/5 {
    background-color: rgb(255 255 255 / 0.05);
}

.bg-white\/10 {
    background-color: rgb(255 255 255 / 0.1);
}

.bg-indigo-50 {
    background-color: var(--color-indigo-50);
}

.bg-indigo-600 {
    background-color: var(--color-indigo-600);
}

.bg-emerald-50 {
    background-color: var(--color-emerald-50);
}

.text-slate-50 {
    color: var(--color-slate-50);
}

.text-slate-100 {
    color: var(--color-slate-100);
}

.text-slate-200 {
    color: var(--color-slate-200);
}

.text-slate-300 {
    color: var(--color-slate-300);
}

.text-slate-400 {
    color: var(--color-slate-400);
}

.text-slate-500 {
    color: var(--color-slate-500);
}

.text-slate-600 {
    color: var(--color-slate-600);
}

.text-slate-700 {
    color: var(--color-slate-700);
}

.text-slate-800 {
    color: var(--color-slate-800);
}

.text-slate-900 {
    color: var(--color-slate-900);
}

.text-white {
    color: var(--color-white);
}

.text-indigo-700 {
    color: var(--color-indigo-700);
}

.text-indigo-900\/70 {
    color: rgb(79 70 229 / 0.7);
}

.text-indigo-900\/80 {
    color: rgb(79 70 229 / 0.8);
}

.text-emerald-700 {
    color: var(--color-emerald-700);
}

/* Border Styles */
.border {
    border-width: 1px;
}

.border-2 {
    border-width: 2px;
}

.border-b {
    border-bottom-width: 1px;
}

.border-t {
    border-top-width: 1px;
}

.border-y {
    border-top-width: 1px;
    border-bottom-width: 1px;
}

.border-slate-200 {
    border-color: var(--color-slate-200);
}

.border-indigo-100 {
    border-color: var(--color-indigo-100);
}

.border-indigo-600 {
    border-color: var(--color-indigo-600);
}

.border-emerald-100 {
    border-color: var(--color-emerald-100);
}

.border-white\/10 {
    border-color: rgb(255 255 255 / 0.1);
}

.border-white\/10 {
    border-color: rgb(255 255 255 / 0.1);
}

/* Shadows */
.shadow-soft {
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

.shadow-soft {
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

.shadow-2xl {
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
}

/* Rounded Corners */
.rounded-full {
    border-radius: 9999px;
}

.rounded-2xl {
    border-radius: 1rem;
}

.rounded-3xl {
    border-radius: 1.5rem;
}

.rounded-xl {
    border-radius: 0.75rem;
}

/* Spacing */
.p-2 {
    padding: 0.5rem;
}

.p-4 {
    padding: 1rem;
}

.p-5 {
    padding: 1.25rem;
}

.p-6 {
    padding: 1.5rem;
}

.px-3 {
    padding-left: 0.75rem;
    padding-right: 0.75rem;
}

.px-4 {
    padding-left: 1rem;
    padding-right: 1rem;
}

.px-5 {
    padding-left: 1.25rem;
    padding-right: 1.25rem;
}

.px-6 {
    padding-left: 1.5rem;
    padding-right: 1.5rem;
}

.py-2 {
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
}

.py-3 {
    padding-top: 0.75rem;
    padding-bottom: 0.75rem;
}

.py-10 {
    padding-top: 2.5rem;
    padding-bottom: 2.5rem;
}

.py-12 {
    padding-top: 3rem;
    padding-bottom: 3rem;
}

.py-14 {
    padding-top: 3.5rem;
    padding-bottom: 3.5rem;
}

.mt-1 {
    margin-top: 0.25rem;
}

.mt-2 {
    margin-top: 0.5rem;
}

.mt-3 {
    margin-top: 0.75rem;
}

.mt-4 {
    margin-top: 1rem;
}

.mt-5 {
    margin-top: 1.25rem;
}

.mt-6 {
    margin-top: 1.5rem;
}

.mt-8 {
    margin-top: 2rem;
}

.mt-10 {
    margin-top: 2.5rem;
}

.ml-4 {
    margin-left: 1rem;
}

.mb-1 {
    margin-bottom: 0.25rem;
}

.-mt-0-5 {
    margin-top: -0.125rem;
}

.pt-6 {
    padding-top: 1.5rem;
}

/* Typography */
.text-center {
    text-align: center;
}

.text-sm {
    font-size: 0.875rem;
    line-height: 1.25rem;
}

.text-lg {
    font-size: 1.125rem;
    line-height: 1.75rem;
}

.text-xl {
    font-size: 1.25rem;
    line-height: 1.75rem;
}

.text-2xl {
    font-size: 1.5rem;
    line-height: 2rem;
}

.text-3xl {
    font-size: 1.875rem;
    line-height: 2.25rem;
}

.text-4xl {
    font-size: 2.25rem;
    line-height: 2.5rem;
}

.text-5xl {
    font-size: 3rem;
    line-height: 1;
}

.font-semibold {
    font-weight: 600;
}

.font-bold {
    font-weight: 700;
}

.font-extrabold {
    font-weight: 800;
}

.leading-tight {
    line-height: 1.25;
}

.leading-relaxed {
    line-height: 1.625;
}

.tracking-tight {
    letter-spacing: -0.015em;
}

.line-through {
    text-decoration-line: line-through;
}

.underline {
    text-decoration-line: underline;
}

/* Flexbox */
.flex {
    display: flex;
}

.inline-flex {
    display: inline-flex;
}

.flex-col {
    flex-direction: column;
}

.flex-wrap {
    flex-wrap: wrap;
}

.items-start {
    align-items: flex-start;
}

.items-center {
    align-items: center;
}

.items-end {
    align-items: flex-end;
}

.justify-between {
    justify-content: space-between;
}

.justify-center {
    justify-content: center;
}

.gap-1 {
    gap: 0.25rem;
}

.gap-2 {
    gap: 0.5rem;
}

.gap-3 {
    gap: 0.75rem;
}

.gap-4 {
    gap: 1rem;
}

.gap-6 {
    gap: 1.5rem;
}

.gap-10 {
    gap: 2.5rem;
}

/* Grid */
.grid {
    display: grid;
}

.grid-cols-2 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
}

.grid-cols-3 {
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.col-span-2 {
    grid-column: span 2 / span 2;
}

.gap-2 {
    gap: 0.5rem;
}

.gap-3 {
    gap: 0.75rem;
}

.gap-4 {
    gap: 1rem;
}

.place-items-center {
    place-items: center;
}

/* Positioning */
.relative {
    position: relative;
}

.absolute {
    position: absolute;
}

.sticky {
    position: sticky;
}

.inset-0 {
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
}

.-z-10 {
    z-index: -10;
}

.z-50 {
    z-index: 50;
}

.top-0 {
    top: 0;
}

.-top-24 {
    top: -6rem;
}

.-left-24 {
    left: -6rem;
}

.-right-24 {
    right: -6rem;
}

.-bottom-24 {
    bottom: -6rem;
}

/* Size */
.h-2 {
    height: 0.5rem;
}

.h-5 {
    height: 1.25rem;
}

.h-6 {
    height: 1.5rem;
}

.h-10 {
    height: 2.5rem;
}

.h-16 {
    height: 4rem;
}

.h-48 {
    height: 12rem;
}

.h-72 {
    height: 18rem;
}

.w-2 {
    width: 0.5rem;
}

.w-5 {
    width: 1.25rem;
}

.w-6 {
    width: 1.5rem;
}

.w-10 {
    width: 2.5rem;
}

.w-48 {
    width: 12rem;
}

.w-72 {
    width: 18rem;
}

.w-full {
    width: 100%;
}

/* Overflow */
.overflow-hidden {
    overflow: hidden;
}

/* Display */
.hidden {
    display: none;
}

.block {
    display: block;
}

/* Gradients */
.bg-gradient-to-br {
    background-image: linear-gradient(to bottom right, var(--tw-gradient-stops));
}

.from-indigo-600 {
    --tw-gradient-from: var(--color-indigo-600);
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgb(79 70 229 / 0));
}

.to-cyan-500 {
    --tw-gradient-to: var(--color-cyan-500);
}

.from-slate-900 {
    --tw-gradient-from: var(--color-slate-900);
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgb(15 23 42 / 0));
}

.to-slate-800 {
    --tw-gradient-to: var(--color-slate-800);
}

/* Blur */
.blur-3xl {
    filter: blur(64px);
}

.blur-2xl {
    filter: blur(40px);
}

/* Opacity */
.opacity-50 {
    opacity: 0.5;
}

.opacity-60 {
    opacity: 0.6;
}

.opacity-90 {
    opacity: 0.9;
}

.opacity-100 {
    opacity: 1;
}

/* Transitions */
.transition {
    transition-property: color, background-color, border-color, text-decoration-color, fill, stroke;
    transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
    transition-duration: 150ms;
}

/* Hover States */
a {
    cursor: pointer;
}

a:hover {
    opacity: 0.8;
}

.hover\:text-white:hover {
    color: var(--color-white);
}

.hover\:text-slate-900:hover {
    color: var(--color-slate-900);
}

.hover\:opacity-100:hover {
    opacity: 1;
}

.hover\:bg-slate-100:hover {
    background-color: var(--color-slate-100);
}

.hover\:bg-slate-50:hover {
    background-color: var(--color-slate-50);
}

.hover\:bg-slate-800:hover {
    background-color: var(--color-slate-800);
}

.hover\:bg-slate-700:hover {
    background-color: var(--color-slate-700);
}

.hover\:bg-indigo-700:hover {
    background-color: var(--color-indigo-700);
}

.hover\:bg-indigo-600:hover {
    background-color: var(--color-indigo-600);
}

.hover\:bg-slate-100:hover {
    background-color: var(--color-slate-100);
}

/* Backdrop */
.backdrop-blur {
    backdrop-filter: blur(10px);
}

/* Responsive */
@media (max-width: 767px) {
    .hidden\.md\:block {
        display: none;
    }

    .md\:hidden {
        display: none;
    }

    .md\:flex {
        display: flex;
    }

    .md\:block {
        display: block;
    }

    .sm\:px-6 {
        padding-left: 1.5rem;
        padding-right: 1.5rem;
    }

    .sm\:py-20 {
        padding-top: 5rem;
        padding-bottom: 5rem;
    }

    .sm\:py-16 {
        padding-top: 4rem;
        padding-bottom: 4rem;
    }

    .sm\:p-8 {
        padding: 2rem;
    }

    .sm\:p-5 {
        padding: 1.25rem;
    }

    .sm\:text-5xl {
        font-size: 3rem;
        line-height: 1;
    }

    .sm\:text-4xl {
        font-size: 2.25rem;
        line-height: 2.5rem;
    }

    .sm\:text-sm {
        font-size: 0.875rem;
        line-height: 1.25rem;
    }

    .sm\:flex-row {
        flex-direction: row;
    }

    .sm\:grid-cols-2 {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .sm\:grid-cols-3 {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }

    .sm\:col-span-1 {
        grid-column: span 1 / span 1;
    }
}

@media (min-width: 768px) {
    .hidden\.md\:block {
        display: block;
    }

    .md\:hidden {
        display: none;
    }

    .md\:flex {
        display: flex;
    }

    .md\:block {
        display: block;
    }

    .md\:flex-row {
        flex-direction: row;
    }

    .md\:items-center {
        align-items: center;
    }

    .md\:justify-self-end {
        justify-self: end;
    }
}

@media (min-width: 1024px) {
    .lg\:grid-cols-2 {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .lg\:grid-cols-3 {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }

    .lg\:grid-cols-4 {
        grid-template-columns: repeat(4, minmax(0, 1fr));
    }

    .lg\:col-span-2 {
        grid-column: span 2 / span 2;
    }
}

/* Details/Summary (FAQ Dropdown) */
details > summary {
    cursor: pointer;
    list-style: none;
}

details > summary::-webkit-details-marker {
    display: none;
}

.group\[open\] {
    --tw-rotate: 180deg;
}

/* Max Width Container */
.max-w-2xl {
    max-width: 42rem;
}

.max-w-3xl {
    max-width: 48rem;
}

.max-w-7xl {
    max-width: 80rem;
}

.mx-auto {
    margin-left: auto;
    margin-right: auto;
}
