
:root {
    --bti-orange: #FE5607;
}

body, html {
    min-height: 100vh;
    margin: 0;
    font-family: "IBM Plex Sans", Arial, sans-serif;
    background-color: #ffffff;
    /*
    background: linear-gradient(to bottom, #ffffff 95%, #0f172a);
    background: linear-gradient(to bottom right, #1e293b, #0f172a);
    background-image: url(/nightsky.jpg);
    background-repeat: no-repeat;
    background-size: cover;
    background-attachment: fixed;*/
}

.logo {
    position: absolute;
    left: 0;
    margin-left: 25px;
    height: 50px;
}

li {
    padding-bottom: 10px;
}

.navbar {
    border-bottom: 1px solid var(--bti-orange);
    margin-bottom: 25px;
}

.navbar li {
    padding-top: 10px!important;
}

.navbar-nav .nav-link {
    position: relative;
    overflow: hidden; /* Ensures the underline stays within the link */
}

    .navbar-nav .nav-link::after {
        content: '';
        position: absolute;
        bottom: 0;
        left: 0;
        width: 100%;
        height: 2px; /* Adjust thickness as needed */
        background-color: var(--bti-orange);
        transform: scaleX(0); /* Hidden by default */
        transition: transform 0.3s ease-in-out;
    }

    .navbar-nav .nav-link:hover::after {
        transform: scaleX(1); /* Visible on hover */
    }

.btn-outline-primary {
    border-color: var(--bti-orange)!important;
    color: var(--bti-orange)!important;
}
    .btn-outline-primary:hover {
        background-color: var(--bti-orange)!important;
        color: #ffffff!important;
    }

#pageFooter a {
    color: rgba(255, 255, 255, 0.5)!important;
    text-decoration: none !important;
}

.form-ctl {
flex-grow: 1;
padding: 10px;
font-size: large;
border: 1px solid #ccc;
border-radius: 5px;
box-sizing: border-box;
}

.form-btn {
    font-size: large;
    padding: 10px;
    border-radius: 5px;
    border: none;
    height: 43px;
    color: #ffffff;
    background-color: var(--bti-orange);
    cursor: pointer;
}

@media screen and (max-width: 1000px) {
    #divParticles {
        display:none!important;
    }
    #divText {
        max-width: 100%!important;
    }
}

.sectionHeader {
    font-size: 22pt;
    padding-bottom: 15px;
}

.pageHeader {
    font-size: 22pt;
    padding-bottom: 15px;
    border-bottom: solid 5px var(--bti-orange);
    margin-bottom: 25px;
}

    @media screen and (max-width: 1000px) {
        .logo {
            height: 40px;
        }
    }


    .page-container {
        min-height: 100vh;
        padding: 0px 75px;
    }

    @media screen and (max-width: 1000px) {
        .page-container {
            padding: 0px 25px;
        }
    }

    .center-container {
        display: flex;
        align-items: center;
        justify-content: center;
        padding: 30px 20px;
    }

    .nav-ui {
        padding: 0px 40px 20px 40px;
        text-align: center;
        color: white;
        width: 100%;
        transition: all 0.3s ease;
        cursor: default;
        height: 75px;        
        border-bottom: solid 1px var(--bti-orange);
    }



    /* Style for the canvas element generated by particles.js */
    .particles-js-canvas-el {
        position: absolute;
        max-width: 50%;
        height: 100%;
    }



    /* Glass Card */
    .glass-card {
        background: rgba(255, 255, 255, 0.1);
        backdrop-filter: blur(8px) saturate(120%);
        -webkit-backdrop-filter: blur(8px) saturate(120%);
        border: 1px solid rgba(255, 255, 255, 0.15);
        border-radius: 20px;
        box-shadow: 0 8px 30px rgba(0, 0, 0, 0.2);
        padding: 40px;
        text-align: center;
        color: white;
        width: 100%;
        transition: all 0.3s ease;
        cursor: default;
    }

        .glass-card:hover {
            background: rgba(255, 255, 255, 0.25);
        }

    .hero-card {
        background: rgba(255, 255, 255, 0.25);
        height: 50px;
    }

        .hero-card:hover {
            background: rgba(255, 255, 255, 0.15);
        }

    /* Buttons */
    .btn-primary, .btn-secondary {
        display: inline-block;
        text-decoration: none;
        padding: 10px 20px;
        margin: 10px 5px 0 5px;
        border-radius: 12px;
        border: none;
        cursor: pointer;
        transition: background 0.3s ease;
        color: white;
    }

    .btn-primary {
        background: rgba(255,255,255,0.1);
    }

        .btn-primary:hover {
            background: rgba(255,255,255,0.2);
        }

    .btn-secondary {
        background: rgba(255,255,255,0.05);
    }

        .btn-secondary:hover {
            background: rgba(255,255,255,0.15);
        }

    /* Features Section */
    .features-section {
        display: flex;
        justify-content: space-around;
        flex-wrap: wrap;
        margin: 0px;
    }

    .feature-card {
        background: rgba(255,255,255,0.08);
        backdrop-filter: blur(3px);
        border-radius: 16px;
        padding: 30px;
        margin: 20px 0px;
        width: 250px;
        text-align: center;
        color: white;
        box-shadow: 0 4px 20px rgba(0,0,0,0.15);
        transition: all 0.3s ease;
        transform: translateY(20px);
    }

        .feature-card:hover {
            background: rgba(255,255,255,0.12);
        }

    /* Feature SVG Icons */
    .feature-icon {
        margin-bottom: 15px;
        color: #ffffffaa;
    }

    /* CTA Card */
    .cta-card {
        max-width: 500px;
    }

    /* Fade-in animation */
    .fade-in {
        animation: fadeIn 0.8s ease forwards;
    }

    @keyframes fadeIn {
        to {
            opacity: 1;
            transform: translateY(0);
        }
    }

    /* Navigation Section */
    /*.nav-section {
        z-index: 999999;
        position: relative;
    }

    .topnav {
        overflow: hidden;
        float: right;
        margin-top: 5px;
    }

        .topnav a {
            display: inline-block;
            text-align: center;
            padding: 14px 16px;
            text-decoration: none;
            font-size: 17px;
            border-radius: 10px;
            color: #000;
        }

    .active {
        background-color: var(--bti-orange);
    }

    .topnav .icon {
        display: none;
    }

    .dropdown {
        display: inline-grid;
        overflow: hidden;
    }

        .dropdown .dropbtn {
            font-size: 17px;
            border: none;
            outline: none;
            color: #000;
            padding: 14px 16px;
            background-color: inherit;
            font-family: inherit;
            margin: 0;
        }

    .dropdown-content {
        display: none;
        position: absolute;
        background-color: #f9f9f9;
        min-width: 160px;
        box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
        z-index: 1;
        margin-top: 50px;
        border-radius: 10px;
    }

        .dropdown-content a {
            float: none;
            color: black;
            padding: 12px 16px;
            text-decoration: none;
            display: block;
            text-align: left;
        }

    .topnav a:hover:not(.icon), .dropdown:hover .dropbtn {
        background-color: #555;
        color: white;
        border-radius: 10px;
    }

    .dropdown-content a:hover {
        background-color: #ddd;
        color: black;
    }

    .dropdown:hover .dropdown-content {
        display: block;
    }

    @media screen and (max-width: 1000px) {
        .topnav a, .dropdown .dropbtn {
            display: none;
            z-index: 999999;
        }

            .topnav a.icon {
                float: right;
                padding-right: 0px !important;
                display: block;
                font-size: 18pt;
                padding-top: 5px;
            }
    }

    @media screen and (max-width: 1000px) {
        .topnav.responsive {
            position: relative;
            width: 100%;
            z-index: 99999999;
        }

            .topnav.responsive .icon {
                position: absolute;
                right: 0;
                top: 0;
                font-size: 18pt;
                padding-top: 5px;
            }

            .topnav.responsive a {
                float: none;
                display: block;
                text-align: left;
                z-index: 999999;
            }

                .topnav.responsive a:not(.icon) {
                    background-color: #ddd;
                    border-radius: 0px;
                    border-right: solid 3px rgba(0,0,0,0.2);
                }

                .topnav.responsive a:first-child {
                    border-radius: 10px 10px 0px 0px;
                }

                .topnav.responsive a:last-child {
                    border-radius: 0px 0px 10px 10px;
                    border-bottom: solid 5px rgba(0,0,0,0.2);
                }

            .topnav.responsive .dropdown-content a {
                border: none !important;
            }

            .topnav.responsive a:first-child {
                margin-top: 65px;
            }

            .topnav.responsive .dropdown {
                float: none;
                display: block;
                background-color: #ddd;
                border-radius: 0px;
                border-right: solid 3px rgba(0,0,0,0.2);
            }

            .topnav.responsive .dropdown-content, .topnav.responsive .dropdown-content a {
                position: relative;
                margin-top: 0px;
                background-color: #eee;
                border-radius: 0px;
            }

            .topnav.responsive .dropdown .dropbtn {
                display: block;
                width: 100%;
                text-align: left;
                border-radius: 0px;
            }

        .active {
            background-color: var(--bti-orange) !important;
        }

        .topnav a:hover:not(.icon), .dropdown:hover .dropbtn {
            background-color: #555;
            color: white;
        }
    }*/