﻿/*body {
    font-family: 'Poppins', sans-serif;
}

.navbar-brand span {
    font-weight: 600;
    font-size: 1.2rem;
}

.nav-link {
    color: #333 !important;
    transition: color 0.3s, font-weight 0.3s;
}

    .nav-link:hover {
        color: #007bff !important;
        font-weight: 600;
    }

footer.footer {
    background-color: #f8f9fa;
    text-align: center;
    font-size: 0.95rem;
}

.card {
    border: none;
    box-shadow: 0 0.125rem 0.25rem rgba(0, 0, 0, 0.075);
    margin-bottom: 1.5rem;
}

.btn-primary {
    background-color: #007bff;
    border-color: #007bff;
    transition: all 0.3s ease;
}

    .btn-primary:hover {
        background-color: #0056b3;
        border-color: #004c99;
    }

img {
    max-width: 100%;
}*/

/*.my-background-div {
    background-image: url('../images/complexpic.jpg');*/ /* Replace with your image path */
    /*background-size: cover;*/ /* Adjusts the image to cover the entire div */
    /*background-repeat: no-repeat;*/ /* Prevents the image from repeating */
    /*background-position: center;*/ /* Centers the image within the div */
    /*height: 840px;*/ /* Set a height for the div to display the background */
    /*width: 100%;*/ /* Set a width for the div */
/*}*/

/*body.homepage {
    background-image: url('../images/complexpic.jpg'); 
    background-size: cover;*/ /* scale to fill */
    /*background-position: center;*/ /* center the image */
    /*background-repeat: no-repeat;*/ /* avoid tiling */
    /*height: 100vh;*/ /* full screen height */
    /*margin: 0;
}*/


/* Home Page Background */
/*body.homepage {
    background: url('/images/complexpic.jpg') no-repeat center center fixed;
    background-size: cover;
}*/

    /* Transparent cards only on homepage */
    /*body.homepage .card {
        background-color: rgba(255, 255, 255, 0.8) !important;
        border: none;
        border-radius: 12px;
        box-shadow: 0 4px 12px rgba(0,0,0,0.2);
    }*/

    /* Remove white main background only on homepage */
    /*body.homepage main {
        background: transparent !important;
        box-shadow: none !important;
    }*/

/* ✅ For all other pages (non-homepage) */
/*body:not(.homepage) {
    background-color: #e6f2ff;*/ /* light blue shade */
/*}*/

    /* Optional: style the main content box */
    /*body:not(.homepage) main {
        background-color: #ffffff;*/ /* keep content readable */
        /*border-radius: 10px;
        padding: 1.5rem;
        box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    }*/

/* Homepage - make headings and text visible */
/*body.homepage h1,
body.homepage h2,
body.homepage h3,
body.homepage p,
body.homepage small {
    color: #222;*/ /* dark gray for good contrast */
    /*text-shadow: 1px 1px 3px rgba(255,255,255,0.7);*/ /* subtle glow to improve visibility */
/*}*/

/* Give Latest News heading a styled background */
/*body.homepage h2 {
    background-color: rgba(255, 255, 255, 0.7);
    padding: 8px 16px;
    border-radius: 8px;
    display: inline-block;
    box-shadow: 0 2px 6px rgba(0,0,0,0.15);
}*/



:root {
    --aa-bg: #f2f6ff;
    --aa-primary: #0d6efd;
    --aa-accent: #00bcd4;
}

html, body {
    background: var(--aa-bg);
    font-family: "Poppins", system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial, "Apple Color Emoji","Segoe UI Emoji";
}

.navbar {
    box-shadow: 0 4px 14px rgba(0,0,0,.06);
    background: #fff !important;
}

    .navbar .nav-link {
        color: #334 !important;
        transition: color .2s ease, transform .1s ease;
    }

        .navbar .nav-link:hover {
            color: var(--aa-primary) !important;
            transform: translateY(-1px);
        }

        .navbar .nav-link.active {
            color: var(--aa-primary) !important;
            font-weight: 600;
        }

.card {
    border: 0;
    box-shadow: 0 8px 24px rgba(13,110,253,.08);
    border-radius: 14px;
}

.hero {
    position: relative;
    min-height: 48vh;
    display: grid;
    place-items: center;
    padding: 3rem 1rem;
    border-radius: 18px;
    overflow: hidden;
}

    .hero::before {
        content: "";
        position: absolute;
        inset: 0;
        background: url('/images/complexpic.jpg') center/cover no-repeat;
        filter: brightness(.75);
    }

    .hero .hero-content {
        position: relative;
        background: rgba(255,255,255,.75);
        backdrop-filter: blur(6px);
        border: 1px solid rgba(255,255,255,.4);
        padding: 2rem 2.25rem;
        border-radius: 16px;
        max-width: 960px;
        text-align: center;
    }

.btn-aa {
    --bs-btn-bg: var(--aa-primary);
    --bs-btn-border-color: var(--aa-primary);
    --bs-btn-hover-bg: #0b5ed7;
    --bs-btn-hover-border-color: #0b5ed7;
    --bs-btn-color: #fff;
}

.badge-new {
    background: linear-gradient(90deg, #ffe082, #ffd54f);
    color: #5a4100;
    border: 1px solid rgba(0,0,0,.05);
}

.table thead th {
    background: #eef4ff;
    color: #223;
    border-bottom: 2px solid #dfe8ff;
}

/* Page shell spacing */
main.container, .container-fluid main {
    margin-top: 1.25rem;
    margin-bottom: 2rem;
}

/* Footer */
.footer {
    background: #fff;
    border-top: 1px solid #eef2ff;
}

/* Forms */
.form-control, .form-select {
    border-radius: 12px;
    border-color: #e1e7ff;
}

.page-wrapper {
    background: #f3f6f9; /* light gray */
    min-height: 100vh; /* full height */
    padding: 20px 0; /* spacing top/bottom */
}

.page-content {
    background: #ffffff; /* white box */
    border-radius: 10px;
    padding: 2rem;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.05);
}

.navbar-nav .nav-item {
    margin-right: 0.5rem;
}

.navbar .d-flex {
    gap: 10px;
}

/*#moreDropdown .dropdown-menu a {
    color: #333;
}*/
/* Make "More ▾" look like other nav links */
/*#moreDropdown > .nav-link {
    color: #444 !important;
    padding: 0.6rem 1rem;
    border-radius: 5px;
    transition: all 0.3s ease-in-out;
}

    #moreDropdown > .nav-link:hover {
        background-color: #f8f9fa;
        color: #0d6efd !important;
    }*/

/* Dropdown menu styling */
/*#moreDropdown .dropdown-menu {
    border-radius: 6px;
    border: 1px solid #e5e5e5;
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
    min-width: 200px;
}

    #moreDropdown .dropdown-menu .nav-link {
        display: block;
        padding: 0.5rem 1rem;
        color: #444 !important;
    }

        #moreDropdown .dropdown-menu .nav-link:hover {
            background-color: #f1f6ff;
            color: #0d6efd !important;
        }*/

        /* Active link inside dropdown */
        /*#moreDropdown .dropdown-menu .nav-link.active {
            font-weight: 600;
            background-color: #f1f6ff;
            border-left: 3px solid #0d6efd;
        }*/


/* ===================================
   Manage Account Sidebar Navigation
=================================== */
/*.nav-pills .nav-link {
    color: var(--color-dark) !important;*/ /* default text color */
    /*background-color: var(--color-bg);*/ /* light background */
/*margin-bottom: 0.5rem;
    border-radius: 6px;
    font-weight: 500;
    padding: 0.6rem 1rem;
    transition: all 0.3s ease;
}

    .nav-pills .nav-link:hover {
        background-color: var(--color-accent);
        color: var(--color-dark) !important;
    }
        */
    .nav-pills .nav-link.active {
        background-color: var(--color-primary) !important;
        /*color: #fff !important;
        font-weight: 600;*/
    }

