﻿/* Please see documentation at https://docs.microsoft.com/aspnet/core/client-side/bundling-and-minification
for details on configuring this project to bundle and minify static web assets. */

a.navbar-brand {
    white-space: normal;
    text-align: center;
    word-break: break-all;
    font-weight: bold;
}

/* Provide sufficient contrast against white background */
a {
  color: #0366d6;
}

.btn-primary {
  color: #fff;
  background-color: #1b6ec2;
  border-color: #1861ac;
}

.nav-pills .nav-link.active, .nav-pills .show > .nav-link {
  color: #fff;
  background-color: #1b6ec2;
  border-color: #1861ac;
}

/* Sticky footer styles
-------------------------------------------------- */
html {
  font-size: 14px;
}
@media (min-width: 768px) {
  html {
    font-size: 16px;
  }
}

.border-top {
  border-top: 1px solid #e5e5e5;
}
.border-bottom {
  border-bottom: 1px solid #e5e5e5;
}

.box-shadow {
  box-shadow: 0 .25rem .75rem rgba(0, 0, 0, .05);
}

button.accept-policy {
  font-size: 1rem;
  line-height: inherit;
}

/* Sticky footer styles
-------------------------------------------------- */
html {
  position: relative;
  min-height: 100%;
}

body {
    /* Margin bottom by footer height */
    margin-bottom: 60px;
    /*background: linear-gradient(45deg, #ffffff 0%, #f8f8f8 5%, transparent 5%, transparent 10%, #ffffff 10%, #ffffff 15%, transparent 15%, transparent 20%, #ffffff 20%, #f8f8f8 25%, transparent 25%, transparent 30%, #ffffff 30%, #f8f8f8 35%, transparent 35%, transparent 40%, #ffffff 40%, #f8f8f8 45%, transparent 45%, transparent 50%, #ffffff 50%, #f8f8f8 55%, transparent 55%, transparent 60%, #ffffff 60%, #f8f8f8 65%, transparent 65%, transparent 70%, #ffffff 70%, #f8f8f8 75%, transparent 70%, transparent 80%, #ffffff 80%, #f8f8f8 85%, transparent 85%, transparent 90%, #ffffff 90%, #f8f8f8 95%, transparent 95%);*/
    background-size: 3em 3em;
    background-color: #ffffff;
    opacity: 1
}
.footer {
  position: absolute;
  bottom: 0;
  width: 100%;
  white-space: nowrap;
  line-height: 60px; /* Vertically center the text there */
  background-color:#ffffff;
  z-index:0;
}


svg {
    fill: #00cdfa;
}

.bg-Firoz {
    background-color: #00cdfa;
}


/*////////////////////////////////*/

.card {
    border: none;
    border-radius: 10px;
    box-shadow: 0 3px 6px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    min-height: 200px;
    display: flex;
    flex-direction: column;
}

    .card:hover {
        transform: translateY(-8px);
        box-shadow: 0 6px 12px rgba(0, 0, 0, 0.2);
    }

.card-header {
    background: linear-gradient(135deg, #007bff 0%, #00d4ff 100%);
    color: white;
    text-align: center;
    border-radius: 10px 10px 0 0;
    padding: 8px;
    font-size: 1rem;
    font-weight: bold;
}

.card-body {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    flex-grow: 1;
    padding: 10px;
    text-align: center;
}

.card i {
    font-size: 1.8rem;
    margin-bottom: 6px;
    color: #007bff;
}

.card-text {
    font-size: 0.8rem;
    color: #333;
}

@media (max-width: 576px) {
    .card {
        min-height: 180px;
    }

    .card-header {
        font-size: 0.85rem;
        padding: 6px;
    }

    .card i {
        font-size: 1.5rem;
    }

    .card-text {
        font-size: 0.7rem;
    }

    .container {
        padding: 5px;
    }

    .row {
        margin-right: 0;
        margin-left: 0;
    }
}
 
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}






 
