﻿#company_logo {
    height: 130px;
    /* other styles */
}

#hero_image {
    max-width: 100%;
}

#software_icon {
    width: 230px;
    opacity: .8;
    background-color: transparent;
    border-radius: 10px;
    overflow: hidden; /* add this property to clip content beyond container bounds */
}

.jumbotron {
    margin-top: 70px;
    margin-bottom: 0px;
    background-size: cover;
    padding-bottom: 0px;
    background-color: rgb(25, 39, 66);
}

.navbar {
    background-color: rgb(25, 39, 66);
}

.navbar-nav {
    float: right;
    height: 150px;
}

nav {
    border-bottom: none;
    box-shadow: none;
}

body {
    background-color: rgb(25, 39, 66);
    color: white;
}

.navbar-nav li {
    position: relative;
    margin: 0 10px;
    list-style-type: none;
}

    .navbar-nav li a {
        display: inline-block;
        padding: 5px 20px;
        margin-right: 5px; /* reduce the gap between nav bar buttons */
        border: 1px solid white;
        border-radius: 5px;
        text-decoration: none;
        color: white;
        margin-top: 50px;
        margin-bottom: 20px;
    }

        .navbar-nav li a:hover {
            background-color: white;
            color: rgb(25, 39, 66);
        }


.btn-custom {
    background-color: white;
    border-color: rgb(25, 39, 66);
    color: rgb(25, 39, 66);
}

    .btn-custom:hover {
        background-color: rgb(25, 39, 66);
        border-color: rgb(25, 39, 66);
        color: white;
    }

.row-eq-height .col-md-6 {
    height: 350px; /* adjust the height value to your liking */
    display: flex;
    flex-direction: column;
}

    .row-eq-height .col-md-6 > .row {
        flex: 1;
    }

@media (max-width: 768px) {
    /* adjust body content when navigation is collapsed */
    .navbar-nav {
        height: auto;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        white-space: nowrap;
    }

        .navbar-nav li {
            margin: 5px 0;
        }

            .navbar-nav li a {
                margin: 0;
            }

    .navbar-collapse {
        position: fixed;
        top: 40px; /* same as navbar height */
        left: 0;
        right: 20px;
        bottom: 0;
        padding: 10px; /* add some padding to the menu */
        background-color: rgb(25, 39, 66); /* set the background color of the menu */
        z-index: 9999; /* make the menu appear on top of other elements */
        display: none; /* hide the menu by default */
        overflow-y: auto; /* add a vertical scrollbar to the menu */
        overflow-x: hidden;
    }

        .navbar-collapse li {
            text-align: center;
        }

    .navbar-toggler:checked + .navbar-collapse {
        display: block;
    }
    /* adjust logo size when navigation is collapsed */
    #company_logo {
        max-height: 30px; /* or adjust as needed */
        height: auto;
        position: absolute;
        top: 10px;
        left: 10px;
    }

    body {
        margin-top: 10px; /* same as navbar-collapse padding-top */
    }
}

a {
    color: #ffa500; /* change this to the color you want */
}

.arrow-container {
    text-align: center;
}

.arrow {
    display: inline-block;
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 30px 16px 0 16px;
    border-color: #ffa500 transparent transparent transparent;
    animation: arrow-down 1.5s infinite;
}

@keyframes arrow-down {
    0% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(10px);
    }

    100% {
        transform: translateY(0);
    }
}

#DSS_photo {
    opacity: .8;
    background-color: transparent;
    border-radius: 15px;
    overflow: hidden; /* add this property to clip content beyond container bounds */
}

.custom-icon {
    color: rgb(25, 39, 66);
}

.custom-li {
    display: inline-block;
    width: 100%;
    text-align: center;
    padding-bottom: 10px;
    padding-left:0px;
}

    .custom-li a {
        display: block;
        text-align: center;
    }

.fade-in-left {
    opacity: 0;
    animation: fadeInLeft 1s ease-in-out forwards;
}

.fade-in-right {
    opacity: 0;
    animation: fadeInRight 1s ease-in-out forwards;
}

@keyframes fadeInLeft {
    from {
        opacity: 0;
        transform: translateX(-50px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(50px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}
body {
    padding: 0 20px;
    line-height: 1.8;
    letter-spacing: 3px;
}

h4, h3, h2 {
    line-height: 1.8;
    letter-spacing: 3px;
}
