body {
    height: 100vh;
    margin: 0;
    font-family: 'Helvetica', sans-serif;
    background: #ffffff;
    /* flat white, no gradient */
    display: flex;
    flex-direction: column;
}

.text-justify {
    text-align: justify;
}

.custom-border {
    border: 1px solid #b1b1b1;
}

.form-note {
    font-size: 13px;
    color: #6c757d;
    margin-top: 5px;
}

.warning-container {
    margin-top: 5px;
    padding: 10px;
    border: 1px solid #ddd;
    border-radius: 4px;
    background-color: #f9f9f9;
}

/* Offset for fixed navbar */
:target {
    scroll-margin-top: 100px;
}

/* Simple modern green pill tabs */
.glass-tab {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0px 10px;
    border-radius: 50px; /* pill shape */

    background: #326345; /* solid green */
    color: #ffffff; /* white text */

    font-size: 14px;
    font-weight: 500;
    text-decoration: none;
    box-shadow: 0 2px 6px rgba(0,0,0,0.2); /* subtle shadow */
    transition: all 0.25s ease;
}

    /* Hover effect: lighter green */
    .glass-tab:hover {
        background: #3e7a53; /* lighter shade */
        box-shadow: 0 4px 10px rgba(0,0,0,0.25);
        transform: translateY(-2px);
    }

    /* Click effect */
    .glass-tab:active {
        transform: scale(0.96);
        box-shadow: 0 2px 6px rgba(0,0,0,0.2);
    }

/* Desktop Application Page Start */
.m-d.expand-list {
    margin: 0;
    padding: 0;
}

    .m-d.expand-list > li {
        list-style: none;
        padding: 15px 0;
        border-bottom: 1px solid #212121;
        position: relative;
    }

.m-d input.tab {
    display: none;
}

.m-d label.tab_lab {
    display: block;
    font-weight: 600;
    cursor: pointer;
    position: relative;
    padding-right: 35px;
}

.m-d .content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, margin 0.3s ease;
}

.m-d input.tab:checked ~ .content {
    max-height: 1000px;
    margin-top: 10px;
}

.m-d .open-close-icon {
    position: absolute;
    right: 10px;
    top: 10px;
}

    .m-d .open-close-icon i {
        transition: all 0.2s ease;
    }

.m-d input.tab:checked ~ .open-close-icon .fa-plus {
    opacity: 0;
}

.m-d input.tab:checked ~ .open-close-icon .fa-minus {
    opacity: 1;
    transform: rotate(0deg);
}

.m-d .open-close-icon .fa-minus {
    opacity: 0;
    transform: rotate(-90deg);
}
/* Desktop Application Page End */

/* About Start */
.about-container {
    margin: 120px 75px 60px 75px;
    padding: 0 20px;
}

    .about-container h2 {
        font-size: 20px; /* instead of big bootstrap default */
        font-weight: 600;
        margin-bottom: 15px;
        color: #222;
    }

    .about-container h3 {
        font-size: 16px;
        font-weight: 600;
        margin-bottom: 10px;
        color: #333;
    }


.feature-card {
    border-left: 4px solid #3F7652;
    padding-left: 15px;
    margin-bottom: 20px;
}

    .feature-card h3 {
        font-size: 18px;
        font-weight: 600;
        margin-bottom: 5px;
    }

    .feature-card p {
        font-size: 15px;
        color: #555;
    }

.team-card {
    border: 1px solid #e0e0e0;
    border-radius: 12px;
    padding: 24px 15px 0px 15px;
    text-align: center;
    background: #fff;
    box-shadow: 0 2px 6px rgba(0,0,0,0.05);
}

    .team-card img {
        width: 100%;
        max-width: 150px;
        height: auto;
        border-radius: 12px;
        object-fit: cover;
    }

    .team-card h3 {
        margin-top: 15px;
        font-size: 17px;
        font-weight: bold;
    }

    .team-card ul {
        list-style-type: disc;
        padding-left: 20px;
        text-align: left;
        font-size: 14px;
    }

        .team-card ul .no-bullet {
            list-style: none;
            padding-left: 0;
        }

@media (max-width: 768px) {
    .about-container {
        margin: 90px 15px 40px 15px;
    }
}

/* About End */


/* Navigation Bar Start */
.navbar {
    background: rgba(255, 255, 255, 0.35);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.3);
    height: 60px;
}
.navbar-nav .nav-link.active,
.menu-panel a.active {
    color: #3F7652; /* Green */
    font-weight: 700; /* Optional: make it stand out */
}

.navbar-logo {
    height: 30px;
    margin-left: 15px;
}

.navbar-nav .nav-link {
    font-weight: 500;
    color: #222;
    padding: 0 1rem;
}

    .navbar-nav .nav-link:hover {
        color: #3F7652;
    }

.menu-btn {
    font-size: 22px;
    border: none;
    background: none;
    color: #222;
}

.menu-panel {
    position: fixed;
    top: 0;
    right: -320px;
    width: 300px;
    height: 100%;
    background: rgb(255 255 255 / 60%);
    backdrop-filter: blur(20px);
    border-left: 1px solid rgba(0, 0, 0, 0.1);
    box-shadow: -4px 0 20px rgba(0, 0, 0, 0.15);
    transition: right 0.4s ease;
    z-index: 2000;
    padding: 2rem 1.5rem;
    display: flex;
    flex-direction: column;
}

    .menu-panel.active {
        right: 0;
    }

    .menu-panel a {
        font-size: 1.2rem;
        margin: 0.8rem 0;
        color: #222;
        text-decoration: none;
        font-weight: 600;
    }

        .menu-panel a i {
            margin-right: 10px;
            color: #3F7652;
        }

    .menu-panel .close-btn {
        align-self: flex-end;
        font-size: 22px;
        border: none;
        background: none;
        margin-bottom: 2rem;
    }

.navbar-nav .special-nav {
    border: 1px solid rgba(0, 0, 0, 0.15);
    border-radius: 20px;
    padding: 6px 14px !important;
    margin-left: 10px;
    transition: all 0.3s ease;
}

    .navbar-nav .special-nav:hover {
        background: rgba(0, 0, 0, 0.05);
    }

.menu-panel .special-mobile {
    margin-top: 1rem;
    padding: 0.8rem 1rem;
    border: 1px solid rgba(0, 0, 0, 0.2);
    border-radius: 14px;
    text-align: center;
}

    .menu-panel .special-mobile:hover {
        background: rgba(0, 0, 0, 0.05);
    }

/* Navigation Bar End */


/* Login Page Start */
.split-layout {
    flex: 1;
    display: flex;
 }

.info-side {
    flex: 2.2;
    /* wider */
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 3rem;
    /* Wallpaper */
     background-size: cover;
    position: relative;
}

    .info-side::before {
        content: "";
        position: absolute;
        inset: 0;
        background: rgba(255, 255, 255, 0.5);
        /* adjust opacity for brightness */
        backdrop-filter: blur(2px);
        z-index: 1;
    }

.info-box {
    z-index: 2;
    /* max-width: 600px; */
    /* color: #111; */
    /* background: rgba(255, 255, 255, 0.6); */
    /* backdrop-filter: blur(12px); */
    /* border-radius: 20px; */
    /* padding: 2.5rem; */
    /* box-shadow: 0 6px 24px rgba(0, 0, 0, 0.15); */
}

    .info-box h1 {
        font-size: 1.2rem;
        line-height: 1.3;
        color: #2b2b2b;
    }

    .info-box p {
        font-size: 0.95rem;
        line-height: 1.6;
        color: #333;
    }

    .info-box .btn {
        border-radius: 14px;
        font-weight: 600;
    }

    .info-box ul {
        padding-left: 1.2rem;
    }

    .info-box li {
        margin-bottom: 0.6rem;
    }

.login-side {
    flex: 1;
    /* narrower */
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2rem;
    padding-top: 90px;
}

.login-box {
    width: 100%;
    max-width: 380px;
    padding: 3rem 1rem 3rem 1rem; /* top padding increased to 3rem */
    border-radius: 20px;
    background: rgba(255, 255, 255, 0.55);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    box-shadow: 0 12px 40px #75877b;
    text-align: center;
}
 
    .login-box img {
        margin-bottom: 1rem;
    }

    .login-box a {
        text-decoration: none;
        /* removes underline */
        color: inherit;
        /* uses normal text color */
    }

        .login-box a:hover {
            text-decoration: underline;
            /* optional: show underline on hover */
            color: #3F7652;
            /* optional: add hover color */
        }

.form-control {
    height: 35px;
    border-radius: 14px;
    border: 1px solid rgba(0, 0, 0, 0.1);
    background: rgba(255, 255, 255, 0.8);
}

.password-show {
    height: 35px;
}

.form-control:focus {
    border-color: #3F7652;
    box-shadow: 0 0 0 4px rgba(63, 118, 82, 0.2);
}

.btn-custom {
    height: 35px;
    border-radius: 14px;
    font-weight: 600;
}

.btn-success {
    background: linear-gradient(135deg, #3F7652, #2b583d);
    border: none;
}

.btn-outline-success {
    border: 0.1px solid #3F7652;
    color: #3F7652;
}

.btn-outline-success:hover {
    background: linear-gradient(135deg, #3F7652, #2b583d);
    color: #fff;
}

/* FOOTER */
/* FOOTER */
footer {
    text-align: center;
     font-size: 14px;
    font-weight: 500;
    color: #222;
}

.footer-content{
    background-color: transparent;
}
/* Desktop: inline layout with separators */
footer .footer-content {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 10px;
}

        footer .footer-content span.separator {
            margin: 0 6px;
            color: #666;
        }

    footer a {
        color: #000;
        text-decoration: none;
        transition: color 0.2s ease;
    }

        footer a:hover {
            color: #0077cc;
            text-decoration: underline;
        }

/* Mobile: stack items */
@media (max-width: 600px) {
    footer .footer-content {
        margin-bottom: 15px;
        flex-direction: column;
        gap: 6px;
    }

        footer .footer-content span.separator {
            display: none; /* hide pipes on mobile */
        }
}


/* MOBILE */
@media (max-width: 768px) {
    .split-layout {
        flex-direction: column;
        overflow-y: auto;
    }

    .login-side {
        order: 1;
        padding: 2rem 1.5rem;
        padding-top: 80px;
    }

    .info-side {
        order: 2;
        padding: 2rem 1.5rem;
    }

    .login-box,
    .info-box {
        max-width: 100%;
    }
}

/* Login Page End */
