/* style.css */
body body {
    background-color: #f8f9fa;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

.navbar-brand {
    font-weight: bold;
}
header img{
    width: 100%;
    object-fit: contain;
    object-position: center;
}


.page-title{
    text-align: center;
    background:#0056b330;
    border: 2px solid #0056b390;
    color: #0056b3;
    padding: 8px;
    border-radius: 5px;
    margin: 5px 0;
    font-size: 22px;
    font-weight: 600;
}
.card img {
    height: 200px;
    object-fit: cover;
}

.card-title {
    font-size: 1.25rem;
    font-weight: bold;
}

/* for service pages */
h2 {
    color: #343a40;
}

form {
    background-color: #ffffff;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

.btn-primary {
    background-color: #007bff;
    border: none;
    transition: background-color 0.3s ease;
}

.btn-primary:hover {
    background-color: #0056b3;
}

footer {
    background-color: #343a40;
}


/*Card UI*/
.service-card {
    display: flex;
    justify-content: space-between;
    padding: 10px;
    align-items: center;
    width: 100%;
    box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;
    margin-bottom: 5px;
}
.service-card .card-left img{
    height: 80px;
    width: 80px;
    object-fit: cover;
    object-position: center;
    border-radius: 10px;
    overflow: hidden;
    aspect-ratio: 1;
}
.service-card .card-left {
    display: flex;
    align-items: center;
    gap: 8px;
}
.service-card .card-left .sl{
    font-size: 15px;
    font-weight: 700;
    color: #899499;
    margin: 0;
    line-height: normal;

}
.service-card .card-right h2 {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 5px;
}

.service-card .card-right p {
    font-size: 14px;
    font-weight: 600;
    line-height: normal;
    margin: 0;
}

.service-card .card-right div p:nth-child(1) {
    color: red;
}

.service-card .card-right div p:nth-child(2) {
    color: green;
}
.service-card .download-button{
    background: #007bff;
    color: white;
    padding: 8px 10px;
    border-radius: 5px;
    text-decoration: none;
}
.footer-telegram{
    background: #007bff30;
    padding: 8px 10px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border: 2px solid #499efa;
    border-radius: 5px;
    margin-bottom: 10px;

}
.footer-telegram p{
    color: #0056b3;
    margin: 0;
    font-weight: 600;
}
.footer-telegram a{
    background: #007bff;
    color: white;
    padding: 8px 10px;
    border-radius: 5px;
    text-decoration: none;
}