@font-face {
    font-family: 'nastaliq';
    src: url('../font/Mehr_Nastaliq_Web.ttf') format('truetype'),
        url('../font/Mehr_Nastaliq_Web.woff') format('woff');
    font-weight: normal;
    font-style: normal;
}

body {
    background-color: #101112;
    color: rgb(235, 234, 234);

}

.textarea {
    background-color: #2b2c2d;
    border: 1px solid #DD2476;
    color: white;
}

.textarea:focus {
    background-color: #2b2c2d;
    border: 1px solid #DD2476;
    color: white;
}

.btn-grad {
    background-image: linear-gradient(to right, #FF512F 0%, #DD2476 51%, #FF512F 100%)
}

.btn-grad {
    margin: 10px;
    padding: 15px 45px;
    /* text-align: center; */
    text-transform: uppercase;
    transition: 0.5s;
    background-size: 200% auto;
    color: white;
    /* box-shadow: 0 0 20px #eee; */
    border-radius: 10px;
    /* display: block; */

}

.btn-grad:hover {
    background-position: right center;
    /* change the direction of the change here */
    color: #fff;
    text-decoration: none;
}

.m-shadow {
    box-shadow: 0 0 2px #f8f7f8;
    /* position: fixed; */
    z-index: 1000;
}

.bi {
    padding: 3px 10px;
}

.fnav {
    color: rgb(187, 186, 186);
}

.fnav:hover {
    color: white;
}







.slider-container::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    /* background: rgba(0, 0, 0, 0.7); */
    /* Dark overlay */
}

.slider-content {
    width: 80%;
    margin: 0 auto;
    position: relative;
    height: 400px;
    z-index: 1;
}

.slide {
    position: absolute;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
    opacity: 0;
    transform: translateX(-100%);
    transition: all 1.7s ease;
}

.slide.active {
    opacity: 1;
    transform: translateX(0);
}

.slide.next {
    transform: translateX(100%);
}

.slide h1 {
    font-size: 3.5rem;
    margin-bottom: 20px;
    font-weight: 700;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.slide p {
    font-size: 1.2rem;
    margin-bottom: 30px;
    max-width: 800px;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.5);
}

/* .slide button {
    padding: 10px 30px;
    font-size: 1rem;
    background: #ff6b6b;
    border: none;
    color: white;
    border-radius: 25px;
    cursor: pointer;
    transition: background 0.3s ease;
}

.slide button:hover {
    background: #ff4c4c;
} */

.btn-slide {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.2);
    border: none;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    color: white;
    font-size: 1.5rem;
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 2;
}

.btn-slide:hover {
    background: rgba(255, 255, 255, 0.3);
}

.prev {
    left: 20px;
}

.next {
    right: 20px;
}

.dots-container {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
    z-index: 2;
}

.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.5);
    cursor: pointer;
    transition: all 0.3s ease;
}

.dot.active {
    background: white;
    transform: scale(1.3);
}



/* keyboard section start */
.featured-section {
    padding: 50px 0;
}

.featured-box {
    background-color: #1f1f1f;
    border-radius: 10px;
    padding: 30px;
    text-align: center;
    transition: transform 0.3s ease-in-out;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.2);
}

.featured-box:hover {
    transform: translateY(-10px);
    box-shadow: 0 8px 15px rgba(0, 0, 0, 0.3);
}

.featured-box h3 {
    color: #DD2476;
    margin-bottom: 20px;
}

.featured-box p {
    font-size: 14px;
    color: #bbb;
    margin-bottom: 20px;
}

