* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Montserrat', sans-serif;
    background: radial-gradient(ellipse at top left, #000000, #007164);
    color: white;
    min-height: 100vh;
    padding: 0px 0px;
}

/* book-appointment */

.book-appointment {
    padding: 15px 30px;
    border: 2px solid rgba(255, 255, 255, 0.5);
    border-radius: 30px;
    background: rgba(10, 9, 9, 0.392);
    color: white;
    font-size: 18px;
    cursor: pointer;
    display: none;
    align-items: center;
    gap: 10px;
    transition: 0.3s ease;
    backdrop-filter: blur(5px);

    /* Fixed Position Add kiya */
    position: fixed;
    bottom: 30px;
    right: 35px;
    z-index: 1100;
    /* Menu button se upar dikhe */
}

.book-appointment:hover {
    background: rgba(12, 0, 0, 0.879);
    border-color: white;
    transform: scale(1.05);
}



@media (max-width: 700px) {
    .book-appointment {
        display: flex;
        font-size: 12px;
        padding: 10px 15px;
        right: 7px;
    }
}











.container {
    max-width: 1400px;
    margin: 0 auto;
}

.main-h1-for-main-heading{
    margin-top: 200px;
    text-align: center;
    font-size: 4rem;
    margin-bottom: 30px;
    font-weight: bold;
}

.main-h1-for-main-heading .reasons {
    color: #FF991C;
}

.subtitle {
    text-align: start;
    font-weight: 100;
    font-size: 19px;
    line-height: 1.6;
    max-width: 1200px;
    margin: 0 auto 60px;
    color: #e0e0e0f4;
}

.gap {
    display: flex;
    gap: 5px;
}

.card {
    display: flex;
    align-items: center;
    background: rgba(0, 0, 0, 0.253);
    border: 2px solid #2a5555;
    border-radius: 15px;
    margin-bottom: 30px;
    overflow: hidden;
    transition: transform 0.3s ease;
}



.card-number {
    border: 2px solid #2a5555;
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 100px;
    height: 198px;
    font-size: 3rem;
    font-weight: bold;
    border-radius: 15px;
}

.card-content {
    flex: 1;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.bothH2 {
    display: flex;
    justify-content: space-between;
}

.card-text {
    flex: 1;
    padding-right: 30px;
    padding: 20px;
}

.card-title {
    font-size: 1.8rem;
    font-weight: bold;
    margin-bottom: 15px;
    text-transform: uppercase;
}

.card-subtitle {
    font-size: 1.7rem;
    margin-bottom: 15px;
    color: #f0f0f0;
}

.card-description {
    font-size: 1rem;
    line-height: 1.6;
    color: #d0d0d0;
    text-align: justify;
}

.card-image {
    position: relative;
    min-width: 250px;
}

.card-image img {
    width: 250px;
    height: 12rem;
    object-fit: cover;
}

.explore-btn {
    width: -webkit-fill-available;
    position: absolute;
    bottom: 0px;
    right: 0px;
    background: linear-gradient(135deg, #d4af37b8 0%, #f4c330b9 100%);
    color: #000;
    padding: 10px 25px;
    border-radius: 10px;
    font-weight: bold;
    font-size: 0.9rem;
    cursor: pointer;
    transition: all 0.3s ease;
    border: none;
}

.explore-btn:hover {
    transform: scale(1.05);
    box-shadow: 0 5px 15px rgba(244, 196, 48, 0.4);
}

@media (max-width: 768px) {
    .container {
        margin: 0 10px;
    }

    .main-h1-for-main-heading {
        font-size: 2.5rem;
    }

    .gap {
        display: grid;
        gap: 5px;
    }

    .card {
        flex-direction: column;
    }

    .card-number {
        width: 100%;
        height: 80px;
        border-bottom: 2px solid #2a5555;
    }

    .card-content {
        flex-direction: column;
    }

    .card-text {
        padding: 20px;
        margin-bottom: 20px;
    }

    .card-subtitle {
        font-size: 1.3rem;

    }

    .card-image {
        width: 100%;
    }

    .card-image img {
        width: 100%;
    }

    .bothH2 {
        display: grid;
    }
}