/********** Template CSS **********/
:root {
    --bs-primary: #c8102e;      /* logo red */
    --bs-secondary: #d4af37;    /* premium gold */
    --bs-dark: #2b1810;         /* rich dark brown */
    --bs-light: #fff8e7;        /* cream */
    --brand-red: #e11d48;
    --brand-gold: #f4d03f;
}




.back-to-top {
    position: fixed;
    display: none;
    right: 30px;
    bottom: 30px;
    z-index: 99;
}

.fw-medium {
    font-weight: 500;
}


/*** Spinner ***/
#spinner {
    opacity: 0;
    visibility: hidden;
    transition: opacity .5s ease-out, visibility 0s linear .5s;
    z-index: 99999;
}

#spinner.show {
    transition: opacity .5s ease-out, visibility 0s linear 0s;
    visibility: visible;
    opacity: 1;
}


/*** Button ***/
.btn {
    transition: .5s;
    font-weight: 500;
}

.btn-primary,
.btn-outline-primary:hover {
    color: var(--bs-light);
}

.btn-secondary,
.btn-outline-secondary:hover {
    color: var(--bs-dark);
}

.btn-square {
    width: 38px;
    height: 38px;
}

.btn-sm-square {
    width: 32px;
    height: 32px;
}

.btn-lg-square {
    width: 48px;
    height: 48px;
}

.btn-square,
.btn-sm-square,
.btn-lg-square {
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50px;
    font-weight: normal;
}

.icon-box-primary,
.icon-box-light {
    position: relative;
    padding: 0 0 10px 10px;
    z-index: 1;
}

.icon-box-primary i,
.icon-box-light i {
    font-size: 60px;
    line-height: 0;
}

.icon-box-primary::before,
.icon-box-light::before {
    position: absolute;
    content: "";
    width: 35px;
    height: 35px;
    left: 0;
    bottom: 0;
    border-radius: 35px;
    transition: .5s;
    z-index: -1;
}

.icon-box-primary::before {
    background: var(--bs-primary);
}

.icon-box-light::before {
    background: var(--bs-light);
}


/*** Navbar ***/
.sticky-top {
    top: -100px;
    transition: .5s;
}

.navbar .navbar-nav .nav-link {
    margin-right: 35px;
    padding: 20px 0;
    color: var(--bs-dark);
    font-size: 18px;
    font-weight: 500;
    outline: none;
}

.navbar .navbar-nav .nav-link:hover,
.navbar .navbar-nav .nav-link.active {
    color: var(--bs-primary);
}

.navbar .dropdown-toggle::after {
    border: none;
    content: "\f107";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    vertical-align: middle;
    margin-left: 8px;
}

@media (max-width: 991.98px) {
    .navbar .navbar-nav .nav-link  {
        margin-right: 0;
        padding: 10px 0;
    }

    .navbar .navbar-nav {
        margin-top: 15px;
        border-top: 1px solid #EEEEEE;
    }
}

@media (min-width: 992px) {
    .sticky-top {
        margin-top: -34px;
    }

    .navbar {
        height: 68px;
    }

    .navbar .nav-item .dropdown-menu {
        display: block;
        border: none;
        margin-top: 0;
        top: 150%;
        opacity: 0;
        visibility: hidden;
        transition: .5s;
    }

    .navbar .nav-item:hover .dropdown-menu {
        top: 100%;
        visibility: visible;
        transition: .5s;
        opacity: 1;
    }
}


/*** Header ***/
@media (min-width: 992px) {
    .header-carousel,
    .page-header {
        margin-top: -34px;
    }
}

.carousel-caption {
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    display: flex;
    align-items: center;
    background: rgba(3, 27, 78, .3);
    z-index: 1;
}

.carousel-control-prev,
.carousel-control-next {
    width: 15%;
}

.carousel-control-prev-icon,
.carousel-control-next-icon {
    width: 3.5rem;
    height: 3.5rem;
    border-radius: 3.5rem;
    background-color: var(--bs-primary);
    border: 15px solid var(--bs-primary);
}

@media (max-width: 767.98px) {
    #header-carousel .carousel-item {
        position: relative;
        min-height: 450px;
    }
    
    #header-carousel .carousel-item img {
        position: absolute;
        width: 100%;
        height: 100%;
        object-fit: cover;
    }
}

.page-header {
    background: linear-gradient(rgba(3, 27, 78, .3), rgba(3, 27, 78, .3)), url(../img/ngofirstimage.jpg) center center no-repeat;
    background-size: cover;
}

.page-header .breadcrumb-item+.breadcrumb-item::before {
    color: var(--bs-white);
}

.page-header .breadcrumb-item,
.page-header .breadcrumb-item a {
    font-size: 18px;
    color: var(--bs-white);
}


/*** About ***/
.about-fact {
    width: 220px;
    height: 220px;
    box-shadow: 0 0 30px rgba(0, 0, 0, .1);
}

@media (min-width: 576px) {
    .about-fact.mt-n130 {
        margin-top: -130px;
    }
}


/*** Service ***/
.container-service {
    position: relative;
}

.container-service::before {
    position: absolute;
    content: '';
    background: var(--bs-light);
    width: 100%;
    height: 100%;
    left: 0px;
    top: 0px;
    clip-path: polygon(0 0, 100% 0, 100% 30%, 0 70%);
    z-index: -1;
}

.service-item {
    position: relative;
    height: 100%;
    padding: 45px 30px;
    background: var(--bs-white);
    box-shadow: 0 0 45px rgba(0, 0, 0, .05);
}

.service-item::before {
    position: absolute;
    content: "";
    width: 100%;
    height: 0;
    left: 0;
    bottom: 0;
    transition: .5s;
    background: var(--bs-primary);
}

.service-item:hover::before {
    height: 100%;
    top: 0;
}

.service-item * {
    position: relative;
    transition: .5s;
    z-index: 1;
}

.service-item:hover h5,
.service-item:hover p {
    color: var(--bs-white);
}

.service-item:hover .icon-box-primary::before {
    background: var(--bs-dark);
}

.service-item:hover .icon-box-primary i {
    color: var(--bs-white) !important;
}


/*** Team ***/
.container-team {
    position: relative;
}

.container-team::before {
    position: absolute;
    content: '';
    background: var(--bs-light);
    width: 100%;
    height: 100%;
    left: 0px;
    top: 0px;
    clip-path: polygon(0 70%, 100% 30%, 100% 100%, 0% 100%);
    z-index: -1;
}

.team-item {
    background: var(--bs-white);
    box-shadow: 0 0 45px rgba(0, 0, 0, .05);
}

.team-item .team-social {
    position: absolute;
    width: 0;
    height: 100%;
    top: 0;
    right: 0;
    transition: .5s;
    background: var(--bs-primary);
    display: flex;
    align-items: center;
    justify-content: center;
}

.team-item:hover .team-social {
    width: 100%;
    left: 0;
}

.team-item .team-social .btn {
    opacity: 0;
    transition: .5s;
}

.team-item:hover .team-social .btn {
    opacity: 1;
}


/*** Contact ***/
@media (min-width: 992px) {
    .contact-info::after {
        position: absolute;
        content: "";
        width: 0px;
        height: 100%;
        top: 0;
        left: 50%;
        border-left: 1px dashed rgba(255, 255, 255, .2);
    }
}

@media (max-width: 991.98px) {
    .contact-info::after {
        position: absolute;
        content: "";
        width: 100%;
        height: 0px;
        top: 50%;
        left: 0;
        border-top: 1px dashed rgba(255, 255, 255, .2);
    }
}


/*** Footer ***/
.footer {
    background: linear-gradient(rgba(3, 27, 78, .3), rgba(3, 27, 78, .3)), url(../img/footer.png) center center no-repeat;
    background-size: contain;
}

@media (min-width: 992px) {
    .footer::after {
        position: absolute;
        content: "";
        width: 0px;
        height: 100%;
        top: 0;
        left: 50%;
        
    }
}

.footer .btn.btn-link {
    display: block;
    margin-bottom: 5px;
    padding: 0;
    text-align: left;
    color: rgba(255, 255, 255, .5);
    font-weight: normal;
    text-transform: capitalize;
    transition: .3s;
}

.footer .btn.btn-link::before {
    position: relative;
    content: "\f105";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    color: rgba(255, 255, 255, .5);
    margin-right: 10px;
}

.footer .btn.btn-link:hover {
    color: var(--bs-primary);
    letter-spacing: 1px;
    box-shadow: none;
}

.copyright {
    border-top: 1px dashed rgba(255, 255, 255, .2);
}

.copyright a {
    color: var(--bs-white);
}

.copyright a:hover {
    color: var(--bs-primary);
}



.projects-section {
    background: #f5f5f5;
    position: relative;
    overflow: hidden;
}

.project-img {
    width: 100%;
    height: 320px;
    object-fit: cover;
    border-radius: 20px;
    box-shadow: 0 15px 35px rgba(0,0,0,0.12);
    transition: 0.4s;
}

.project-img:hover {
    transform: scale(1.03);
}

.project-content h3 {
    font-size: 32px;
    font-weight: 700;
    color: var(--bs-dark);
    margin-bottom: 20px;
    line-height: 1.3;
}

.project-content p {
    font-size: 17px;
    color: #666;
    line-height: 1.8;
}

@media (max-width: 991px) {
    .project-content {
        text-align: center;
    }

    .project-content h3 {
        font-size: 24px;
    }

    .project-img {
        height: 250px;
    }
}


.drug-register-section {
    position: relative;
    padding: 100px 0;
    background: url('../img/ngofifthimage.jpg') center center/cover no-repeat;
    overflow: hidden;
}

/* Dark overlay */
.drug-register-section::before {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.6);
}

.drug-register-section .container {
    position: relative;
    z-index: 2;
}

.register-content h2 {
    color: #fff;
    font-size: 56px;
    font-weight: 700;
    line-height: 1.2;
    max-width: 800px;
}

.register-btn {
    display: inline-block;
    background: #e53935;
    color: #fff;
    padding: 22px 55px;
    font-size: 26px;
    font-weight: 600;
    text-decoration: none;
    border-radius: 6px;
    transition: 0.4s;
}

.register-btn:hover {
    background: var(--bs-primary);
    color: #fff;
}

@media (max-width: 991px) {
    .drug-register-section {
        padding: 70px 0;
        text-align: center;
    }

    .register-content h2 {
        font-size: 36px;
        max-width: 100%;
    }

    .register-btn {
        padding: 18px 40px;
        font-size: 20px;
    }
}

@media (max-width: 576px) {
    .register-content h2 {
        font-size: 28px;
    }
}



.gallery-section {
    background: #f5f5f5;
}

.gallery-grid {
    column-count: 3;
    column-gap: 20px;
}

.gallery-item {
    position: relative;
    margin-bottom: 20px;
    overflow: hidden;
    border-radius: 15px;
    break-inside: avoid;
    cursor: pointer;
}

.gallery-item img {
    width: 100%;
    display: block;
    border-radius: 15px;
    transition: 0.5s ease;
}

.gallery-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.65);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: 0.4s ease;
    border-radius: 15px;
}

.gallery-overlay h5 {
    color: #fff;
    font-size: 22px;
    font-weight: 600;
    transform: translateY(20px);
    transition: 0.4s ease;
}

.gallery-item:hover img {
    transform: scale(1.08);
}

.gallery-item:hover .gallery-overlay {
    opacity: 1;
}

.gallery-item:hover .gallery-overlay h5 {
    transform: translateY(0);
}

@media (max-width: 991px) {
    .gallery-grid {
        column-count: 2;
    }
}

@media (max-width: 576px) {
    .gallery-grid {
        column-count: 1;
    }

    .gallery-overlay h5 {
        font-size: 18px;
    }
}


.help-section {
    background: #f5f5f5;
}

.help-form-wrapper {
    padding: 80px 70px;
    height: 100%;
    background: #fff;
}

.help-form-wrapper h2 {
    font-size: 64px;
    font-weight: 700;
    color: var(--bs-dark);
}

.help-form-wrapper label {
    display: block;
    font-size: 18px;
    margin-bottom: 10px;
    color: #333;
}

.help-form-wrapper .form-control {
    height: 55px;
    border: 1px solid #ddd;
    border-radius: 0;
    box-shadow: none;
    font-size: 16px;
}

.help-form-wrapper textarea.form-control {
    height: auto;
    resize: none;
}

.help-btn {
    background: #333;
    color: #fff;
    padding: 14px 35px;
    border-radius: 0;
    font-size: 18px;
    font-weight: 500;
    border: none;
    transition: 0.4s;
}

.help-btn:hover {
    background: var(--bs-primary);
    color: #fff;
}

.help-image {
    height: 100%;
}

.help-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

@media (max-width: 991px) {
    .help-form-wrapper {
        padding: 50px 25px;
    }

    .help-form-wrapper h2 {
        font-size: 42px;
    }

    .help-image {
        min-height: 400px;
    }
}


.ngo-glance-section {
    background: #f5f5f5;
    position: relative;
}

.heading-line {
    width: 180px;
    height: 3px;
    background: var(--bs-primary);
    margin-top: 15px;
    border-radius: 10px;
}

.ngo-card {
    max-width: 850px;
    background: #fff;
    padding: 50px;
    border-radius: 20px;
    box-shadow: 0 15px 40px rgba(0,0,0,0.08);
}

.ngo-card h4 {
    font-size: 28px;
    font-weight: 700;
    color: var(--bs-dark);
    letter-spacing: 1px;
}

.ngo-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.ngo-list li {
    padding: 16px 20px;
    margin-bottom: 12px;
    background: #f8f9fa;
    border-left: 5px solid var(--bs-primary);
    border-radius: 10px;
    font-size: 18px;
    color: #333;
    transition: 0.3s;
}

.ngo-list li:hover {
    transform: translateX(8px);
    background: #eef7ff;
}

.ngo-list strong {
    color: var(--bs-dark);
}

@media (max-width: 991px) {
    .ngo-card {
        padding: 30px 20px;
    }

    .ngo-list li {
        font-size: 15px;
        padding: 14px;
    }

    .ngo-card h4 {
        font-size: 22px;
    }
}


.ngo-info-section {
    background: #f5f5f5;
}

.ngo-info-card {
    max-width: 900px;
    background: #fff;
    padding: 50px 40px;
    border-radius: 20px;
    box-shadow: 0 15px 40px rgba(0,0,0,0.08);
}

.ngo-info-card h3 {
    font-size: 36px;
    font-weight: 700;
    color: var(--bs-dark);
    margin-bottom: 40px;
    text-transform: uppercase;
}

.info-item {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    margin-bottom: 22px;
    padding: 14px 20px;
    background: #f8f9fa;
    border-radius: 12px;
    transition: 0.3s;
}

.info-item:hover {
    transform: translateY(-3px);
    background: #eef7ff;
}

.info-item i {
    font-size: 24px;
    color: var(--bs-primary);
}

.info-item p {
    margin: 0;
    font-size: 18px;
    color: #333;
    font-weight: 500;
}

@media (max-width: 768px) {
    .ngo-info-card {
        padding: 30px 20px;
    }

    .ngo-info-card h3 {
        font-size: 24px;
    }

    .info-item {
        flex-direction: column;
        text-align: center;
        gap: 10px;
    }

    .info-item p {
        font-size: 15px;
    }
}


.legal-info-section {
    background: #f5f5f5;
}

.legal-card {
    max-width: 750px;
    background: #fff;
    padding: 50px 40px;
    border-radius: 20px;
    box-shadow: 0 15px 40px rgba(0,0,0,0.08);
}

.section-line {
    width: 180px;
    height: 3px;
    background: var(--bs-primary);
    margin-bottom: 30px;
    border-radius: 10px;
}

.legal-card h3 {
    font-size: 32px;
    font-weight: 700;
    color: var(--bs-dark);
    margin-bottom: 35px;
}

.legal-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: #f8f9fa;
    padding: 18px 25px;
    margin-bottom: 15px;
    border-radius: 12px;
    border-left: 5px solid var(--bs-primary);
    transition: 0.3s;
}

.legal-item:hover {
    transform: translateY(-3px);
    background: #eef7ff;
}

.label {
    font-size: 18px;
    font-weight: 700;
    color: var(--bs-dark);
}

.value {
    font-size: 17px;
    color: #444;
    font-weight: 500;
}

@media (max-width: 768px) {
    .legal-card {
        padding: 30px 20px;
    }

    .legal-card h3 {
        font-size: 24px;
    }

    .legal-item {
        flex-direction: column;
        text-align: center;
        gap: 8px;
    }

    .label,
    .value {
        font-size: 15px;
    }
}

.single-info-section {
    background: #f5f5f5;
}

.single-info-card {
    max-width: 650px;
    background: #fff;
    padding: 50px 30px;
    border-radius: 20px;
    box-shadow: 0 15px 40px rgba(0,0,0,0.08);
    transition: 0.3s;
}

.single-info-card:hover {
    transform: translateY(-5px);
}

.section-line {
    width: 180px;
    height: 3px;
    background: var(--bs-primary);
    margin-bottom: 30px;
    border-radius: 10px;
}

.single-info-card h4 {
    font-size: 28px;
    font-weight: 700;
    color: var(--bs-dark);
    margin-bottom: 15px;
}

.single-info-card p {
    font-size: 20px;
    color: #555;
    font-weight: 500;
    margin: 0;
}

@media (max-width: 768px) {
    .single-info-card {
        padding: 30px 20px;
    }

    .single-info-card h4 {
        font-size: 22px;
    }

    .single-info-card p {
        font-size: 16px;
    }
}


.compliance-section {
    background: #f5f5f5;
}

.compliance-card {
    max-width: 900px;
    background: #fff;
    padding: 50px 40px;
    border-radius: 20px;
    box-shadow: 0 15px 40px rgba(0,0,0,0.08);
}

.section-line {
    width: 220px;
    height: 3px;
    background: var(--bs-primary);
    border-radius: 10px;
}

.compliance-card h3 {
    font-size: 32px;
    font-weight: 700;
    color: var(--bs-dark);
}

.compliance-item {
    background: #f8f9fa;
    padding: 22px;
    margin-bottom: 18px;
    border-radius: 14px;
    border-left: 5px solid var(--bs-primary);
    transition: 0.3s;
}

.compliance-item:hover {
    transform: translateY(-4px);
    background: #eef7ff;
}

.compliance-item h5 {
    font-size: 22px;
    font-weight: 700;
    color: var(--bs-dark);
    margin-bottom: 10px;
}

.compliance-item p {
    font-size: 17px;
    color: #444;
    margin: 0;
    line-height: 1.7;
}

@media (max-width: 768px) {
    .compliance-card {
        padding: 30px 20px;
    }

    .compliance-card h3 {
        font-size: 24px;
    }

    .compliance-item h5 {
        font-size: 18px;
    }

    .compliance-item p {
        font-size: 14px;
    }
}


.donation-bank-section {
    background: linear-gradient(rgba(245,245,245,0.95), rgba(245,245,245,0.95)),
                url('img/donation-bg.jpg') center center/cover no-repeat;
}

.bank-card {
    background: #fff;
    padding: 40px 35px;
    border-radius: 20px;
    box-shadow: 0 15px 40px rgba(0,0,0,0.08);
    height: 100%;
    transition: 0.4s;
    border-top: 5px solid var(--bs-primary);
}

.bank-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 50px rgba(0,0,0,0.12);
}

.bank-icon {
    width: 70px;
    height: 70px;
    background: var(--bs-primary);
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
}

.bank-icon i {
    font-size: 30px;
}

.bank-card h4 {
    text-align: center;
    font-size: 28px;
    font-weight: 700;
    color: var(--bs-dark);
    margin-bottom: 30px;
}

.bank-card ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.bank-card ul li {
    padding: 12px 0;
    border-bottom: 1px solid #eee;
    font-size: 17px;
    color: #444;
}

.bank-card ul li:last-child {
    border-bottom: none;
}

.bank-card strong {
    color: var(--bs-dark);
}

@media (max-width: 768px) {
    .bank-card {
        padding: 30px 20px;
    }

    .bank-card h4 {
        font-size: 22px;
    }

    .bank-card ul li {
        font-size: 15px;
    }
}


.ongoing-projects-section {
    background: #f5f5f5;
}

.section-line {
    width: 180px;
    height: 3px;
    background: var(--bs-primary);
    border-radius: 10px;
    margin-top: 15px;
}

.projects-card {
    max-width: 1100px;
    background: #fff;
    padding: 45px;
    border-radius: 20px;
    box-shadow: 0 15px 40px rgba(0,0,0,0.08);
}

.project-item {
    background: #f8f9fa;
    padding: 18px 20px;
    border-radius: 14px;
    font-size: 17px;
    font-weight: 600;
    color: #333;
    display: flex;
    align-items: center;
    gap: 14px;
    border-left: 5px solid var(--bs-primary);
    transition: 0.3s;
    height: 100%;
}

.project-item:hover {
    transform: translateY(-5px);
    background: #eef7ff;
}

.project-item i {
    font-size: 24px;
    color: var(--bs-primary);
}

@media (max-width: 768px) {
    .projects-card {
        padding: 25px 15px;
    }

    .project-item {
        font-size: 15px;
        padding: 15px;
    }

    .project-item i {
        font-size: 20px;
    }
}


.donate-payment-section {
    background: #f5f5f5;
}

.section-line {
    width: 180px;
    height: 3px;
    background: var(--bs-primary);
    border-radius: 10px;
    margin-top: 15px;
}

.payment-card {
    background: #fff;
    padding: 40px 30px;
    border-radius: 20px;
    box-shadow: 0 15px 40px rgba(0,0,0,0.08);
    transition: 0.4s;
    height: 100%;
    border-top: 5px solid var(--bs-primary);
}

.payment-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 50px rgba(0,0,0,0.12);
}

.payment-card img {
    max-width: 220px;
    height: 80px;
    object-fit: contain;
    margin-bottom: 25px;
}

.payment-card p {
    font-size: 20px;
    font-weight: 600;
    color: #333;
    margin: 0;
}

.payment-card strong {
    color: var(--bs-primary);
}

@media (max-width: 768px) {
    .payment-card {
        padding: 30px 20px;
    }

    .payment-card img {
        max-width: 160px;
        height: 60px;
    }

    .payment-card p {
        font-size: 16px;
    }
}

.activities-section {
    background: #f5f5f5;
}

.activities-breadcrumb {
    font-size: 18px;
    font-weight: 500;
}

.activities-breadcrumb a {
    color: var(--bs-primary);
    text-decoration: none;
}

.activities-breadcrumb span {
    color: #777;
    margin: 0 8px;
}

.activities-title {
    font-size: 64px;
    font-weight: 700;
    color: var(--bs-dark);
    margin-bottom: 25px;
}

.section-divider {
    width: 100%;
    height: 2px;
    background: #222;
}

.activity-card {
    background: #fff;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
    transition: 0.4s;
    height: 100%;
}

.activity-card:hover {
    transform: translateY(-8px);
}

.activity-card img {
    width: 100%;
    height: 220px;
    object-fit: cover;
}

.activity-content {
    padding: 25px;
}

.activity-content p {
    font-size: 17px;
    line-height: 1.8;
    color: #666;
    margin: 0;
}

@media (max-width: 991px) {
    .activities-title {
        font-size: 42px;
    }

    .activity-card img {
        height: 200px;
    }
}

@media (max-width: 576px) {
    .activities-title {
        font-size: 30px;
    }

    .activities-breadcrumb {
        font-size: 15px;
    }

    .activity-content p {
        font-size: 15px;
    }
}


.top-camera-bar {
    background: linear-gradient(135deg, #0f172a, #1e293b);
    padding: 8px 0 !important;
    border-bottom: 1px solid rgba(255,255,255,0.08);
}

.camera-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 8px 22px;
    background: linear-gradient(135deg, #2563eb, #06b6d4);
    color: #fff;
    font-size: 15px;
    font-weight: 600;
    text-decoration: none;
    border-radius: 30px;
    box-shadow: 0 6px 18px rgba(37, 99, 235, 0.25);
    transition: all 0.3s ease;
    letter-spacing: 0.3px;
    min-height: 42px;
}

.camera-btn i {
    font-size: 16px;
}

.camera-btn:hover {
    transform: translateY(-2px);
    color: #fff;
    background: linear-gradient(135deg, #1d4ed8, #0891b2);
    box-shadow: 0 8px 22px rgba(6, 182, 212, 0.3);
}


.monitor-login-page {
    background: #efefef;
    min-height: 100vh;
    padding: 20px;
}

.login-logo {
    margin-bottom: 25px;
}

.login-logo img {
    height: 60px;
}

.login-wrapper {
    position: relative;
    height: 520px;
    background: #003b6f;
    overflow: hidden;
}

.login-bg {
    position: absolute;
    inset: 0;
    background: url('img/login-bg.jpg') center center/cover no-repeat;
}

.monitor-login-box {
    position: absolute;
    top: 35px;
    right: 120px;
    width: 380px;
    background: #f5f5f5;
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
}

.login-tabs {
    display: flex;
}

.login-tabs button {
    flex: 1;
    padding: 18px;
    border: none;
    background: #fff;
    font-size: 20px;
    font-weight: 600;
    cursor: pointer;
}

.login-tabs button.active {
    background: #d7d7d7;
}

.login-content {
    padding: 30px;
}

.login-content h3 {
    color: #0061b2;
    font-size: 22px;
    margin-bottom: 25px;
    border-bottom: 1px solid #ddd;
    padding-bottom: 10px;
}

.form-group {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
}

.form-group label {
    width: 110px;
    font-size: 18px;
    font-weight: 600;
    color: #222;
}

.form-group input {
    flex: 1;
    height: 42px;
    border: 1px solid #bbb;
    padding: 10px;
    background: #fff;
}

.login-btn {
    width: 100%;
    margin-top: 20px;
    background: linear-gradient(#66a9ef, #2c6fc7);
    color: #fff;
    border: none;
    padding: 14px;
    font-size: 20px;
    font-weight: 700;
    cursor: pointer;
}

.login-footer {
    display: flex;
    justify-content: space-around;
    padding: 20px;
    background: #fff;
    border-top: 1px solid #ddd;
}

.login-footer a {
    color: #222;
    text-decoration: none;
    font-weight: 600;
}

@media (max-width: 991px) {
    .monitor-login-box {
        position: static;
        width: 100%;
        max-width: 450px;
        margin: 40px auto;
    }

    .login-wrapper {
        height: auto;
        padding: 40px 20px;
    }

    .login-bg {
        opacity: 0.25;
    }
}






.top-camera-bar {
    background: linear-gradient(135deg, #2b1810, #c8102e);
    border-bottom: 2px solid var(--bs-secondary);
}

.camera-btn {
    background: linear-gradient(135deg, #c8102e, #d4af37);
    color: white;
    box-shadow: 0 10px 25px rgba(200,16,46,0.35);
}

.camera-btn:hover {
    background: linear-gradient(135deg, #a50d25, #f4d03f);
}

.navbar {
    background: linear-gradient(135deg, #fff8e7, #ffffff);
    box-shadow: 0 8px 25px rgba(0,0,0,0.08);
}

.navbar .navbar-nav .nav-link {
    color: #2b1810;
    font-weight: 600;
}

.navbar .navbar-nav .nav-link:hover,
.navbar .navbar-nav .nav-link.active {
    color: #c8102e;
}

.page-header {
    background:
        linear-gradient(rgba(43,24,16,.65), rgba(200,16,46,.45)),
        url(../img/ngofirstimage.jpg) center center no-repeat;
    background-size: cover;
}

.ngo-card,
.ngo-info-card,
.legal-card,
.single-info-card,
.compliance-card,
.projects-card,
.bank-card,
.payment-card,
.activity-card {
    background: linear-gradient(145deg, #ffffff, #fff8e7);
    border: 1px solid rgba(212,175,55,0.2);
    box-shadow: 0 18px 45px rgba(43,24,16,0.08);
}

.project-item,
.ngo-list li,
.legal-item,
.compliance-item {
    border-left: 5px solid #d4af37;
}

.project-item:hover,
.ngo-list li:hover,
.legal-item:hover,
.compliance-item:hover,
.activity-card:hover,
.bank-card:hover,
.payment-card:hover {
    background: linear-gradient(135deg, #fff8e7, #fff3cd);
}

.btn-primary,
.register-btn,
.help-btn {
    background: linear-gradient(135deg, #c8102e, #d4af37);
    border: none;
    color: white;
    border-radius: 12px;
    box-shadow: 0 12px 30px rgba(200,16,46,0.25);
}

.btn-primary:hover,
.register-btn:hover,
.help-btn:hover {
    background: linear-gradient(135deg, #a50d25, #f4d03f);
}

.footer {
    background:
        linear-gradient(rgba(43,24,16,.9), rgba(200,16,46,.85)),
        url(../img/footer.png) center center no-repeat;
    background-size: cover;
}

.bg-primary {
    background: linear-gradient(135deg, #fff8e7, #fdf3d0) !important;
}


.copyright {
    background: linear-gradient(135deg, #2b1810, #c8102e) !important;
    border-top: 2px solid #d4af37 !important;
}

.copyright a,
.copyright p,
.copyright span {
    color: #fff8e7 !important;
}

.copyright a:hover {
    color: #f4d03f !important;
}


.about-fact {
    width: 220px;
    height: 220px;
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    box-shadow: 0 20px 45px rgba(0,0,0,0.12);
    transition: 0.4s ease;
    text-align: center;
    border: 4px solid rgba(255,255,255,0.5);
}

.about-fact:hover {
    transform: translateY(-8px) scale(1.03);
}

.about-fact p {
    font-size: 22px;
    font-weight: 600;
    margin-bottom: 10px;
    color: #fff;
}

.about-fact h1 {
    font-size: 56px;
    font-weight: 800;
    color: #fff;
}

/* Logo Theme Colors */
.fact-donation {
    background: linear-gradient(135deg, #fff8e7, #d4af37);
}

.fact-donation p,
.fact-donation h1 {
    color: #7a1c1c;
}

.fact-helped {
    background: linear-gradient(135deg, #c8102e, #8b0000);
}

.fact-helped p,
.fact-helped h1 {
    color: #fff;
}

.fact-volunteer {
    background: linear-gradient(135deg, #2b1810, #c8102e);
}

.fact-volunteer p,
.fact-volunteer h1 {
    color: #fff;
}

@media (max-width: 768px) {
    .about-fact {
        width: 170px;
        height: 170px;
    }

    .about-fact h1 {
        font-size: 40px;
    }

    .about-fact p {
        font-size: 16px;
    }
}


/* Global heading colors */
h1, h2, h3, h4, h5, h6 {
    color: #2b1810 !important;
}

/* Bootstrap text primary override */
.text-primary {
    color: #c8102e !important;
}

/* Links */
a {
    color: #c8102e;
}

a:hover {
    color: #d4af37;
}

/* Section titles */
.display-1,
.display-2,
.display-3,
.display-4,
.display-5,
.display-6 {
    color: #2b1810 !important;
}

/* Specific template blue headings */
.login-content h3,
.ngo-card h4,
.ngo-info-card h3,
.legal-card h3,
.compliance-card h3,
.project-content h3,
.activities-title {
    color: #2b1810 !important;
}

/* Footer links */
.footer .btn.btn-link:hover {
    color: #d4af37 !important;
}


.site-title {
    background: linear-gradient(135deg, #7a0f1f, #c8102e, #d4af37);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-weight: 900;
    letter-spacing: 2px;
}

.site-title:hover {
    color: #c8102e !important;
}

/* Hero slider text fix */
.carousel-caption h1 {
    font-size: 72px !important;
    font-weight: 800 !important;
    line-height: 1.15 !important;
    color: #fff8e7 !important;
    text-shadow:
        0 4px 12px rgba(0,0,0,0.45),
        0 2px 6px rgba(0,0,0,0.35);
    letter-spacing: 1px;
    max-width: 850px;
}

/* Better overlay */
.carousel-caption {
    background: linear-gradient(
        90deg,
        rgba(43,24,16,0.65),
        rgba(200,16,46,0.20),
        rgba(0,0,0,0.08)
    ) !important;
}

/* Button theme */
.carousel-caption .btn-primary {
    background: linear-gradient(135deg, #c8102e, #d4af37) !important;
    border: none !important;
    color: white !important;
    padding: 18px 45px !important;
    font-size: 20px !important;
    font-weight: 700 !important;
    border-radius: 50px !important;
    box-shadow: 0 12px 30px rgba(200,16,46,0.35);
}

.carousel-caption .btn-primary:hover {
    background: linear-gradient(135deg, #a50d25, #f4d03f) !important;
    transform: translateY(-3px);
}

/* Mobile */
@media (max-width: 991px) {
    .carousel-caption h1 {
        font-size: 48px !important;
    }
}

@media (max-width: 576px) {
    .carousel-caption h1 {
        font-size: 30px !important;
        line-height: 1.3 !important;
    }

    .carousel-caption .btn-primary {
        padding: 14px 28px !important;
        font-size: 16px !important;
    }
}



/* Navbar dropdown hover theme fix */
.navbar .dropdown-menu {
    background: #fff8ec !important;
    border: none;
    border-radius: 12px;
    box-shadow: 0 12px 30px rgba(0,0,0,0.12);
    padding: 10px 0;
    overflow: hidden;
}

.navbar .dropdown-menu .dropdown-item {
    color: #4a1f12 !important;
    font-weight: 600;
    padding: 12px 20px;
    transition: all 0.3s ease;
}

/* Hover blue remove */
.navbar .dropdown-menu .dropdown-item:hover,
.navbar .dropdown-menu .dropdown-item:focus {
    background: linear-gradient(135deg, #c8102e, #d4af37) !important;
    color: #fff !important;
}

/* top dropdown button hover */
.navbar .nav-item.dropdown:hover > .nav-link,
.navbar .nav-link.dropdown-toggle:hover {
    color: #c8102e !important;
}

/* Page header title fix */
.page-header h1 {
    color: #fff8e7 !important;
    text-shadow:
        0 4px 12px rgba(0,0,0,0.45),
        0 2px 6px rgba(0,0,0,0.35);
    font-weight: 800;
    letter-spacing: 1px;
}



.gallery-overlay h5 {
    background: linear-gradient(135deg, #fff8e7, #f4d03f);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-weight: 800;
    text-align: center;
    text-shadow: none;
}



.footer {
    background:
        linear-gradient(rgba(43,24,16,.92), rgba(200,16,46,.88)),
        url(../img/footer.png) center center no-repeat;
    background-size: cover;
    padding: 50px 0 !important;
}

.footer-logo img {
    max-height: 80px;
    width: auto;
}

.footer-text {
    color: rgba(255,248,231,0.85);
    line-height: 1.7;
    font-size: 15px;
}

.footer-heading {
    color: #f4d03f !important;
    font-size: 22px;
    font-weight: 700;
}

.footer .btn.btn-link {
    color: rgba(255,248,231,0.75);
    font-size: 15px;
    margin-bottom: 8px;
}

.footer .btn.btn-link:hover {
    color: #f4d03f !important;
    padding-left: 8px;
}

.social-btn {
    width: 46px;
    height: 46px;
    border-radius: 50%;
    background: linear-gradient(135deg, #c8102e, #d4af37);
    color: #fff !important;
    border: none;
    box-shadow: 0 8px 20px rgba(200,16,46,0.25);
}

.social-btn:hover {
    transform: translateY(-3px);
    background: linear-gradient(135deg, #a50d25, #f4d03f);
}

.footer p {
    margin-bottom: 10px;
    font-size: 15px;
}

.drug-register-section .register-content h2 {
    color: #fff8e7 !important;
    text-shadow:
        0 4px 12px rgba(0,0,0,0.55),
        0 2px 6px rgba(0,0,0,0.35);
    font-weight: 800;
}

.mobile-logo img {
    height: 55px;
    width: auto;
    object-fit: contain;
}

@media (max-width: 576px) {
    .mobile-logo img {
        height: 45px;
    }
}