﻿/* Move down content because we have a fixed navbar that is 50px tall */
body {
    padding-top: 50px;
    padding-bottom: 20px;
}

/* Wrapping element */
/* Set some basic padding to keep content from hitting the edges */
.body-content {
    padding-left: 15px;
    padding-right: 15px;
}

/* Set widths on the form inputs since otherwise they're 100% wide */
input,
select,
textarea {
    max-width: 280px;
}

/* Responsive: Portrait tablets and up */
@media screen and (min-width: 768px) {
    .jumbotron {
        margin-top: 20px;
    }
    .body-content {
        padding: 0;
    }
}
/* Urdu Font Embed */
@font-face {
    font-family: 'JameelNoori';
    src: url('/Content/Fonts/Jameel%20Noori%20Nastaleeq%20Regular.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
}

body {
    font-family: 'JameelNoori', serif;
    direction: rtl;
    text-align: right;
    font-size: 18px;
    line-height: 1.6;
}
.services {
    display: flex;
    flex-wrap: wrap; /* mobile pe neeche aa jayenge */
    gap: 20px;
    justify-content: center;
    margin: 30px auto;
}

.card {
    background: #ffffff;
    border-radius: 12px;
    padding: 25px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
    flex: 1 1 300px; /* min width 300px */
    max-width: 350px;
    text-align: center;
    transition: transform 0.3s ease;
}

    .card:hover {
        transform: translateY(-5px);
    }

    .card img {
        max-width: 100%;
        height: auto;
        margin-bottom: 15px;
        border-radius: 8px;
    }

    .card h2 {
        font-size: 24px;
        font-weight: bold;
        margin-bottom: 15px;
    }

    .card p {
        font-size: 16px;
        line-height: 1.6;
        color: #333;
    }

