html {
  font-size: 14px;
}

@media (min-width: 768px) {
  html {
    font-size: 16px;
  }
}

@media (min-width: 768px) and (max-width: 1199px) {
    .col-md-3 {
        flex: 0 0 15%; /* Adjust the width as per your requirement */
        max-width: 25%;
    }
}

html {
    position: relative;
    min-height: 100%;
}

/* Main color variables */
:root {
    --primary-color: #0052db; /* Main blue color */
    --secondary-color: #f0f9ff; /* Light blue background */
    --accent-color: #0056b3; /* Darker blue accent */
}

/* Page title */
.page-title {
    font-size: 32px;
    font-weight: bold;
    color: black;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 20px;
}


h3 {
    font-weight: bold;
    text-transform: uppercase;
}

/* Card header */
.card-header {
    background-color: var(--secondary-color);
    color: var(--primary-color);
}





