
/* 'Noto Nastaliq Urdu' Google web font */
@font-face {
    font-family: 'Urdu';
    src: url('/static/fonts/woff/NotoNastaliqUrdu-Regular.woff2') format('woff2'),
         url('/static/fonts/woff/NotoNastaliqUrdu-Regular.woff') format('woff');
    font-weight: normal;
    font-style: normal;
}

@font-face {
    font-family: 'Urdu';
    src: url('/static/fonts/woff/NotoNastaliqUrdu-Medium.woff2') format('woff2'),
         url('/static/fonts/woff/NotoNastaliqUrdu-Medium.woff') format('woff');
    font-weight: 500;  /* Medium */
    font-style: normal;
}

@font-face {
    font-family: 'Urdu';
    src: url('/static/fonts/woff/NotoNastaliqUrdu-SemiBold.woff2') format('woff2'),
         url('/static/fonts/woff/NotoNastaliqUrdu-SemiBold.woff') format('woff');
    font-weight: 600;  /* SemiBold */
    font-style: normal;
}

@font-face {
    font-family: 'Urdu';
    src: url('/static/fonts/woff/NotoNastaliqUrdu-Bold.woff2') format('woff2'),
         url('/static/fonts/woff/NotoNastaliqUrdu-Bold.woff') format('woff');
    font-weight: bold;
    font-style: normal;
}


.urdu {
    font-family: 'Urdu', serif;
}

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

.medium-text {
    font-weight: 500; 
}

.semi-bold-text {
    font-weight: 600;  
}


.primary-color {
    background-color: #A8DABE;
}

.primary-color:hover, .primary-color:focus {
    background-color: #84CC93;
}

