html {
    font-size: 12px;
    position: relative;
    min-height: 100%;
}

/*@media (min-width: 768px) {
    html {
        font-size: 16px;
    }
}*/

.btn:focus, .btn:active:focus, .btn-link.nav-link:focus, .form-control:focus, .form-check-input:focus {
    box-shadow: 0 0 0 0.1rem white, 0 0 0 0.25rem #258cfb;
}



/*body {
    margin-bottom: 60px;
}*/

.form-floating > .form-control-plaintext::placeholder, .form-floating > .form-control::placeholder {
    color: var(--bs-secondary-color);
    text-align: end;
}

.form-floating > .form-control-plaintext:focus::placeholder, .form-floating > .form-control:focus::placeholder {
    text-align: start;
}

.navbar-blue {
    background-color: #2e5c84 !important;
   
}

.custom-nav {
    /*padding: 8px 8px;*/
    border-radius: 5px;
    /*color: white;*/ /*font color in nav*/
    transition: all 0.3s ease;
}

    .custom-nav:hover,
    .custom-nav:focus,
    .custom-nav.active {
        background-color: #2e5c84 !important;
        color: white !important;
    }

.custom-nav-footer {
    transition: all 0.3s ease;
}

    .custom-nav-footer:hover,
    .custom-nav-footer:focus,
    .custom-nav-footer.active {
        color: #ff6600 !important;
        font-weight: bolder !important;
    }

.custom-dropdown-menu {
    background-color: white !important;
    border: none;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.custom-dropdown-item {
    background-color: white !important;
    color: black !important;
    transition: background-color 0.3s, color 0.3s;
}

    .custom-dropdown-item:hover {
        background-color: #2e5c84 !important;
        color: white !important;
    }

.dropdown-hover:hover .dropdown-menu {
    display: block;
    margin-top: 0;
}

footer {
    background-color: #2e5c84;
    color: white; /* Optional: for contrast */
    padding: 20px 0; /* Optional: adds spacing */
    text-align: start; /* Optional: centers text */
    color: white;
}

.footer-logo img {
    max-width: 200px;
}
.sidebar {
    background-color: #2e5c84;
    color: white;
    padding: 1rem;
    top: 0;
    height: 100vh;
    
    overflow:auto;
}

    .sidebar .nav-link:hover,
    .sidebar .nav-link.active {
        background-color: white !important;
        color: #2e5c84 !important;
        border-radius: 3px;
    }
.tech-logo {
    max-height: 70px;
    width: auto;
    object-fit: contain;
}


.bg-custom-blue {
    background-color: #689cca; /* Bootstrap primary blue */
}

.text-justify {
    text-align: justify;
}

.trainingcard:hover {
    transform: scale(1.05);
    transition: transform 0.5s ease;
    background: linear-gradient(to bottom, #2e5c84 0%, #ff6600 100%);
    color: white;
}

.companycard:hover {
    transform: scale(1.05);
    transition: transform 0.5s ease;
    background: #2e5c84;
    color: white;
}

.dacardcolor:hover {
    transform: scale(1.05);
    transition: transform 0.5s ease;
    background: linear-gradient(to bottom, #003366 0%, #9966ff 100%);
}

    .dacardcolor:hover .card-title,
    .dacardcolor:hover .card-text,
    .dacardcolor:hover li {
        color: white !important;
    }

.dscardcolor:hover {
    transform: scale(1.05);
    transition: transform 0.5s ease;
    background: linear-gradient(to bottom, #ff6600 0%, #ffcc99 100%);
}

    .dscardcolor:hover .card-title,
    .dscardcolor:hover .card-text,
    .dscardcolor:hover li {
        color: white !important;
    }


.bicardcolor:hover {
    transform: scale(1.05);
    transition: transform 0.5s ease;
    background: linear-gradient(to bottom, #006699 0%, #339966 100%);
}

    .bicardcolor:hover .card-title,
    .bicardcolor:hover .card-text,
    .bicardcolor:hover li {
        color: white !important;
    }

.merncardcolor:hover {
    transform: scale(1.05);
    transition: transform 0.5s ease;
    background: linear-gradient(to bottom, #9966ff 0%, #003399 100%);
}

    .merncardcolor:hover .card-title,
    .merncardcolor:hover .card-text,
    .merncardcolor:hover li {
        color: white !important;
    }


.showcase_card {
    /*    background: linear-gradient(to bottom, #9966ff 0%, #003399 100%);
*/
    /*    background: linear-gradient(to bottom, #006699 0%, #339966 100%);*/
    background: linear-gradient(to bottom, #003366 0%, #9966ff 100%);
}
.custom-height {
    height: 500px;
}

.client-logo {
    filter: grayscale(100%) brightness(0.9);
    transition: all 0.5s ease-in-out;
    transform: scale(1);
}

    .client-logo:hover {
        filter: grayscale(0%) hue-rotate(360deg) brightness(1.2) saturate(2);
        transform: scale(1.1);
        box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
        cursor: pointer;
    }

