@font-face {
    font-family: 'Kalpurush';
    src: url('../fonts/kalpurush.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}

:root {
    --primary-color: #0d6efd;
    --secondary-color: #f8f9fa;
    --text-color: #333333;
    --light-text: #6c757d;
    --border-color: #e9ecef;
    --box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
    --boxed-width: 1200px;
}

body {
    font-family: 'Kalpurush', sans-serif;
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    background-color: #eaedf1;
    color: var(--text-color);
    line-height: 1.6;
}

*, *::before, *::after {
    box-sizing: inherit;
}

a {
    text-decoration: none;
    color: var(--primary-color);
    transition: color 0.3s ease;
}

a:hover {
    color: #0056b3;
}

ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

/* Boxed Container */
.site-wrapper {
    background-color: #ffffff;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

.container {
    max-width: var(--boxed-width);
    margin: 0 auto;
    padding: 0 15px;
    width: 100%;
}
