﻿html {
    font-size: 14px;
}

@media (min-width: 768px) {
    html {
        font-size: 16px;
    }
}

html {
    position: relative;
    min-height: 100%;
}

body {
    margin-bottom: 60px;
}

.menu-button {
    display: inline-block;
    background-color: #3498db;
    color: #fff;
    padding: 8px 20px;
    border: none;
    border-radius: 4px;
    font-size: 16px;
    text-align: center;
    text-decoration: none;
    transition: background-color 0.3s ease, transform 0.1s ease;
    cursor: pointer;
    margin: 5px;
    width: 150px;
    height: 40px;
}

    .menu-button:hover {
        background-color: #2980b9;
        transform: scale(1.05);
    }

    .menu-button.active {
        transform: scale(1.10);
    }

.box {
    width: 205px; /* Slightly reduced the size for compactness */
    height: 105px;
    border: none;
    border-radius: 6px; /* Reduced border radius */
    margin: 15px; /* Increased margin for better spacing */
    text-align: center;
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center; /* Vertically center the content */
    align-items: center;
    background-color: #FFFFFF; /* Set to flat white */
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.08), 0 1px 3px rgba(0, 0, 0, 0.04); /* Gentle box shadow */
    transition: transform 0.3s, box-shadow 0.3s; /* Adjusted transition */
    cursor: pointer;
    font-family: 'Open Sans', Tahoma, Geneva, Verdana, sans-serif; /* Modern font stack */
    font-size: 15px; /* Slightly increased font size */
    padding: 12px; /* Adjusted padding for balance */
}

.box:hover {
    transform: translateY(-4px); /* Gentle lift on hover */
    box-shadow: 0 6px 10px rgba(0, 0, 0, 0.10), 0 2px 5px rgba(0, 0, 0, 0.06); /* Increased shadow depth on hover */
}
.icon-container {
    margin-top: 20px;
    font-size: 24px;
}
.text-container {
    margin-bottom: 10px;
    font-weight: 400;
    font-size: 16px;
    margin-top: 10px;
}
.container1 {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    height: 70vh;
}
.box-container {
    display: flex;
}

.bg-blue {
    background-color: #00254D;
}
.text-white {
    color: white;
}
.navbar-brand {
    margin-left: 50px;
    font-size: 17px;
}