﻿html, body {
    height: 100%;
    margin: 0;
    padding: 0;
}

header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1030;
    background-color: #e6fff5;
    box-shadow: 0 0 10px rgba(0,0,0,0.05);
}

.top-bar {
    background-color: #e6fff5;
}

.navbar {
    background-color: #e6fff5 !important;
    padding: 0.5rem 2rem;
}

.nav-link {
    color: #333;
    margin: 0 10px;
    border-radius: 30px;
    font-weight: bold;
}
    
    .nav-link.active {
        background-color: #009933 !important;
        color: #fff !important;
        border-radius: 30px;
        padding: 6px 20px;
        font-weight: bold;
    }

    .nav-link:hover {
        background-color: #009933;
        color: #fff !important;
        border-radius: 30px;
        padding: 6px 20px;
    }

    .navbar-nav .nav-link,
    .navbar-nav .dropdown-item {
        color: #000 !important;
    }
    .dropdown-item:hover {
        background-color: #009933;
        color: #fff !important;
        padding: 10px 40px;
    }

    .btn-brochure {
        background-color: #000;
        color: #fff;
        border-radius: 8px;
        padding: 6px 15px;
        margin-left: 20px;
    }

    /*.navbar-brand img {
        height: 40px;
        margin-right: 10px;
    }
    */
    .logo-text {
        font-weight: bold;
        font-size: 1.1rem;
        color: #009933;
    }

    .logo-sub {
        display: block;
        font-size: 0.75rem;
        color: #cc6600;
        margin-top: -6px;
    }

    .navbar-center {
        position: absolute;
        left: 50%;
        transform: translateX(-50%);
        background-color: white;
        padding: 5px;
        border-radius: 50px;
    }

    main {
        padding-top: 200px!important; /* Adjust based on header height */
        padding-bottom: 40px; /* Optional spacing above footer */
        min-height: calc(100vh - 100px); /* Viewport height minus header & some footer space */
    }

    footer {
        background-color: #008F2B;
        color: white;
        padding: 40px 20px;
    }

    footer h6 {
        font-weight: 600;
        margin-bottom: 1rem;
    }

    footer a,
    footer a:link,
    footer a:visited {
        color: #fff !important;
        text-decoration: none !important;
    }

    footer a:hover,
    footer a:focus {
        text-decoration: underline !important;

    }
    .social-icons a {
        font-size: 1.2rem;
        margin-right: 15px;
    }

    .copyright {
        border-top: 1px solid rgba(255, 255, 255, 0.3);
        margin-top: 30px;
        padding-top: 10px;
        font-size: 0.9rem;
        text-align: right;
    }

    /* Hide scrollbar for all browsers */
    body::-webkit-scrollbar {
        display: none; /* For Chrome, Safari, and Opera */
    }

    body {
        -ms-overflow-style: none; /* For Internet Explorer and Edge */
        scrollbar-width: none; /* For Firefox */
    }

    a{
        text-decoration:none;
        color:black;
    }

