/* General Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

:root {
    --primary-color: #00796b;
    --secondary-color: #ff5252;
    --dark-bg: #1e293b;
    --light-grey: #f8fafc;
}

.container {
    width: 90%;
    max-width: 1200px;
    margin: auto;
}

.section-padding { padding: 60px 0; }

/* Navbar */
.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 5%;
    background: #fff;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
}
/* Navigation Actions Container */
.nav-actions {
    display: flex;
    align-items: center;
    gap: 15px;
}

/* Menu Toggle Styling (Hidden on Desktop) */
.menu-toggle {
    display: none;
    font-size: 24px;
    cursor: pointer;
    color: var(--dark-bg);
}

/* --- MOBILE & TABLET STYLES (Below 992px) --- */
@media (max-width: 992px) {
    .menu-toggle {
        display: block; /* Show menu icon */
    }

    /* Hide text in the campaign button */
    .btn-donate-nav .btn-text {
        display: none;
    }

    .btn-donate-nav {
        padding: 10px 15px;
        border-radius: 50%; /* Make it a circular icon button */
        font-size: 18px;
    }

    /* Mobile Menu Drawer */
    .nav-links {
        position: fixed;
        right: -100%; /* Hidden by default */
        top: 70px;
        flex-direction: column;
        background: white;
        width: 100%;
        height: 100vh;
        text-align: center;
        transition: 0.4s;
        box-shadow: 0 10px 10px rgba(0,0,0,0.1);
        z-index: 999;
    }

    .nav-links.active {
        right: 0; /* Slide in */
    }

    .nav-links li {
        margin: 20px 0;
    }
}

/* Ensure the list is hidden and ready for transition on smaller screens */
@media (max-width: 992px) {
    .nav-links {
        display: flex;
        flex-direction: column;
        position: fixed;
        top: 70px; /* Adjust based on your header height */
        right: -100%; /* Off-screen by default */
        width: 100%;
        height: calc(100vh - 70px);
        background-color: white;
        transition: right 0.4s ease-in-out;
        z-index: 999;
        padding-top: 50px;
        box-shadow: -5px 5px 15px rgba(0,0,0,0.1);
    }

    /* This class is added by JavaScript when the hamburger is clicked */
    .nav-links.active {
        right: 0; /* Slides into view */
    }

    .nav-links li {
        width: 100%;
        margin: 0;
    }

    /* Make the links large and easily clickable for fingers */
    .nav-links li a {
        display: block;
        padding: 20px;
        font-size: 1.2rem;
        border-bottom: 1px solid #f1f5f9;
        width: 100%;
    }
    
    /* Active link styling within the mobile menu */
    .nav-links li a.active {
        background-color: #f8fafc;
        color: var(--primary-color);
        font-weight: bold;
    }
}
.logo { font-size: 24px; font-weight: bold; color: var(--dark-bg); }
.logo span { color: var(--primary-color); }

.nav-links { display: flex; list-style: none; }
.nav-links li a {
    text-decoration: none;
    color: #333;
    margin: 0 15px;
    font-weight: 500;
}

.btn-donate-nav {
    background: var(--primary-color);
    color: white;
    border: none;
    padding: 10px 20px;
    border-radius: 5px;
    cursor: pointer;
}

/* Hero Slider */
.slider-container {
    position: relative;
    height: 80vh;
    width: 100%;
    overflow: hidden;
    background: #000;
}

.slide {
    position: absolute;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 0.8s ease-in-out;
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-align: center;
}

.slide.active {
    opacity: 1;
    z-index: 1;
}

.hero-content {
    max-width: 800px;
    padding: 20px;
}

/* Controls */
.slider-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(0, 0, 0, 0.3);
    color: white;
    border: none;
    padding: 15px 20px;
    cursor: pointer;
    z-index: 10;
    font-size: 24px;
    border-radius: 50%;
    margin: 0 10px;
    transition: 0.3s;
}

.slider-btn:hover { background: var(--primary-color); }
.prev { left: 20px; }
.next { right: 20px; }


.mb-2{margin-bottom:10px;}
.mb-4{margin-bottom:20px;}
/* Rounded Outline Button */
.btn-outline {
margin-top:20px;
    background-color: transparent; /* Makes it border-only */
    color: #fff;                /* Primary green from your theme */
    border: 2px solid #fff;    /* The border thickness and color */
    padding: 10px 25px;            /* Spacing inside the button */
    border-radius: 50px;           /* High value makes it fully rounded */
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;     /* Smooth transition for hover effect */
    }
.btn-donate {
margin-top:10px;
    background-color: transparent; /* Makes it border-only */
    color: var(--primary-color);;                /* Primary green from your theme */
    border: 2px solid var(--primary-color);;    /* The border thickness and color */
    padding: 10px 25px;            /* Spacing inside the button */
    border-radius: 50px;           /* High value makes it fully rounded */
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;     /* Smooth transition for hover effect */
    }
.btn-donate:hover {
background-color:#000;
color:#FFFFFF;}

/* Dots */
.dots {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 10;
}

.dot {
    height: 12px;
    width: 12px;
    margin: 0 5px;
    background-color: rgba(255, 255, 255, 0.5);
    border-radius: 50%;
    display: inline-block;
    cursor: pointer;
    transition: 0.3s;
}

.dot.active { background-color: white; width: 30px; border-radius: 10px; }
.hero-slider {
    height: 80vh;
    width: 100%;
    position: relative;
    overflow: hidden;
}

.slide {
    height: 100%;
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-align: center;
}

.hero-content h1 { font-size: 3rem; margin-bottom: 20px; }

/* Category Boxes */
.grid-3 {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.cat-box {
    text-align: center;
    padding: 40px;
    background: white;
    border: 1px solid #eee;
    border-radius: 10px;
    transition: 0.3s;
}

.cat-box:hover { transform: translateY(-10px); box-shadow: 0 10px 20px rgba(0,0,0,0.05); }
.cat-box i { font-size: 40px; color: var(--primary-color); margin-bottom: 15px; }

/* Active Campaigns Section */
.campaign-wrapper {
    display: flex;
    gap: 30px;
    margin-top: 30px;
}

.main-campaign {
    flex: 1; /* 50% */
    background: #fff;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    position: relative;
}

.badge {
    position: absolute;
    top: 20px; left: 20px;
    background: var(--secondary-color);
    color: white;
    padding: 5px 15px;
    border-radius: 20px;
}

.main-campaign img { width: 100%; height: 300px; object-fit: cover; }
.main-camp-details { padding: 25px; }

.progress-bar {
    background: #eee;
    height: 10px;
    border-radius: 5px;
    margin: 20px 0 10px;
}

.progress { background: var(--primary-color); height: 100%; border-radius: 5px; }

.side-campaigns {
    flex: 1;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
}

.small-card {
    display: flex;
    flex-direction: column;
    background: #fff;
    border-radius: 10px;
    overflow: hidden;
    border: 1px solid #eee;
}

.small-card img { width: 100%; height: 200px; object-fit: cover; }
.small-card-info { padding: 10px; }
.small-card-info h4 { font-size: 0.9rem; }

/* Footer */
.footer {
    background: var(--dark-bg);
    color: white;
    padding: 50px 0;
}

.grid-4 {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 40px;
}

.footer ul { list-style: none; }
.footer li { margin-bottom: 10px; opacity: 0.8; }

/* --- RESPONSIVE DESIGN --- */

@media (max-width: 992px) {
    .campaign-wrapper { flex-direction: column; }
    .grid-3 { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 600px) {
    .nav-links { display: none; } /* Hide for mobile simplicity */
    .hero-content h1 { font-size: 2rem; }
    .grid-3 { grid-template-columns: 1fr; }
    .side-campaigns { grid-template-columns: 1fr; }
}
/* CSS Document */

/*CAMPAIGNS - CSS*/
/* Page Header */
.page-header {
    height: 300px;
    display: flex;
    align-items: center;
    color: white;
    text-align: center;
}
.page-header h1 { font-size: 2.5rem; margin-bottom: 10px; }

/* Explorer Layout */
.explorer-grid {
    display: grid;
    grid-template-columns: 280px 1fr;
    gap: 30px;
}

/* Sidebar Filters */
.filter-sidebar {
    background: #fff;
    padding: 20px;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.05);
    height: fit-content;
}
.filter-header {
    display: flex;
    justify-content: space-between;
    margin-bottom: 25px;
}
.reset-btn {
    border: none;
    background: #e0f2f1;
    color: var(--primary-color);
    padding: 4px 10px;
    border-radius: 4px;
    font-size: 12px;
    cursor: pointer;
}

.filter-category { margin-bottom: 30px; }
.filter-category h5 { margin-bottom: 15px; font-size: 1.1rem; }
.filter-category ul { list-style: none; }
.filter-category li {
    padding: 10px 0;
    color: #64748b;
    cursor: pointer;
    font-size: 0.95rem;
    transition: 0.2s;
}
.filter-category li i { width: 25px; }
.filter-category li:hover, .active-filter { color: var(--primary-color); font-weight: 600; }

/* Search Bar */
.search-bar-container {
    position: relative;
    margin-bottom: 30px;
}
.main-search {
    width: 100%;
    padding: 15px 45px;
    border-radius: 8px;
    border: 1px solid #e2e8f0;
    font-size: 1rem;
}
.search-icon { position: absolute; left: 15px; top: 18px; color: #94a3b8; }
.clear-icon { position: absolute; right: 15px; top: 18px; color: #94a3b8; cursor: pointer; }

/* Campaign Cards */
.campaign-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 25px;
}
.campaign-card {
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid #f1f5f9;
    transition: 0.3s;
}
.campaign-card:hover { transform: translateY(-5px); box-shadow: 0 10px 20px rgba(0,0,0,0.1); }

.card-img-container { position: relative; }
.card-img-container img { width: 100%; height: 200px; object-fit: cover; }
.tags { position: absolute; top: 12px; left: 12px; display: flex; gap: 5px; }
.tag-active { background: #22c55e; color: white; font-size: 10px; padding: 3px 8px; border-radius: 4px; }
.tag-inactive { background: #ef4444; color: white; font-size: 10px; padding: 3px 8px; border-radius: 4px; }
.tag-cat { background: rgba(255,255,255,0.9); color: #334155; font-size: 10px; padding: 3px 8px; border-radius: 4px; }

.card-body { padding: 20px; }
.card-body h4 { font-size: 1.1rem; margin-bottom: 10px; line-height: 1.4; }
.card-body p { font-size: 0.9rem; color: #64748b; margin-bottom: 15px; }

.progress-bar-small { background: #f1f5f9; height: 6px; border-radius: 3px; margin-bottom: 15px; }
.card-stats { display: flex; justify-content: space-between; text-align: left; margin-bottom: 20px; }
.card-stats small { color: #94a3b8; }
.text-red { color: #ef4444; }

.btn-donate-card {
    width: 100%;
    padding: 12px;
    border: none;
    background: var(--primary-color);
    color: white;
    border-radius: 6px;
    font-weight: 600;
    cursor: pointer;
}
.btn-donate-card.disabled { background: #cbd5e1; cursor: not-allowed; }

/* Pagination */
.pagination { display: flex; justify-content: center; align-items: center; gap: 10px; margin-top: 50px; }
.page-btn {
    width: 40px; height: 40px;
    border: 1px solid #e2e8f0;
    background: white;
    border-radius: 6px;
    cursor: pointer;
    transition: 0.2s;
}
.active-page { background: var(--primary-color); color: white; border-color: var(--primary-color); }
.active-next { background: #00bcd4; color: white; border-color: #00bcd4; }

/* Responsive Grid */
@media (max-width: 992px) {
    .explorer-grid { grid-template-columns: 1fr; }
    .filter-sidebar { display: none; } /* Could be a toggle menu on mobile */
}

/*ABOUT -CSS*/
/* About Page Specifics */
.about-header {
    background-image: linear-gradient(rgba(0,0,0,0.7), rgba(0,0,0,0.7)), url('https://images.unsplash.com/photo-1488521787991-ed7bbaae773c?auto=format&fit=crop&w=1920');
    background-size: cover;
    background-position: center;
}

.img-responsive {
    width: 100%;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.story-content h2 {
    margin-bottom: 20px;
}

.mission-vision {
    margin-top: 30px;
}

.mv-item {
    display: flex;
    gap: 20px;
    margin-bottom: 25px;
    padding: 15px;
    border-radius: 8px;
    background: #f8fafc;
}

.mv-item i {
    font-size: 24px;
    color: var(--primary-color);
}

.mv-item h4 {
    margin-bottom: 5px;
    color: var(--dark-bg);
}

/* Impact Section */
.impact-stats {
    background: var(--primary-color);
    color: white;
    padding: 60px 0;
    text-align: center;
}

.stat-item h2 {
    font-size: 2.5rem;
    margin-bottom: 10px;
}

.stat-item p {
    opacity: 0.9;
}

/* Team Cards */
.team-card {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0,0,0,0.05);
    text-align: center;
    transition: 0.3s;
}

.team-card:hover {
    transform: translateY(-10px);
}

.team-card img {
    width: 100%;
    height: 250px;
    object-fit: cover;
}

.team-info {
    padding: 20px;
}

.team-info h3 {
    font-size: 1.2rem;
    color: var(--dark-bg);
}

.team-info p {
    color: var(--primary-color);
    font-weight: 500;
}

.text-center {
    text-align: center;
    margin-bottom: 40px;
}

/* Mobile Adjustments */
@media (max-width: 768px) {
    .about-story .explorer-grid {
        grid-template-columns: 1fr;
    }
    
    .story-image {
        order: 2;
    }
    
    .story-content {
        order: 1;
        margin-bottom: 30px;
    }
}

/*CONTACT - CSS*/
/* Contact Page Specific Styles */
.contact-header {
    background-image: linear-gradient(rgba(0,0,0,0.7), rgba(0,0,0,0.7)), url('https://images.unsplash.com/photo-1521791136064-7986c2923216?auto=format&fit=crop&w=1920');
    background-size: cover;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 50px;
    background: #fff;
    padding: 0;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 15px 40px rgba(0,0,0,0.05);
}

/* Left Panel */
.contact-info-panel {
    background: var(--dark-bg);
    color: white;
    padding: 50px;
}

.contact-info-panel .section-title { color: white; margin-bottom: 15px; }
.contact-desc { opacity: 0.7; margin-bottom: 40px; }

.info-item {
    display: flex;
    gap: 20px;
    margin-bottom: 30px;
}

.info-item i {
    font-size: 20px;
    color: var(--primary-color);
    background: rgba(0, 121, 107, 0.1);
    width: 45px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
}

.info-item h4 { margin-bottom: 5px; }
.info-item p { opacity: 0.8; font-size: 0.95rem; }

.social-links {
    display: flex;
    gap: 15px;
    margin-top: 50px;
}

.social-links a {
    color: white;
    background: rgba(255,255,255,0.1);
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: 0.3s;
}

.social-links a:hover { background: var(--primary-color); }

/* Right Panel (Form) */
.contact-form-card {
    padding: 50px;
    background: #fff;
}

.form-row {
    display: flex;
    gap: 20px;
}

.form-group {
    margin-bottom: 20px;
    flex: 1;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: #334155;
    font-size: 0.9rem;
}

.form-group input, 
.form-group select, 
.form-group textarea {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #e2e8f0;
    border-radius: 8px;
    font-size: 1rem;
    outline: none;
    transition: 0.3s;
}

.form-group input:focus, .form-group textarea:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(0, 121, 107, 0.1);
}

.btn-submit {
    background: var(--primary-color);
    color: white;
    padding: 15px 30px;
    border: none;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    transition: 0.3s;
    width: 100%;
}

.btn-submit:hover { background: #00695c; }

/* Map Area */
.map-area {
    padding: 60px 0;
    background: #f8fafc;
}

.map-placeholder {
    height: 400px;
    background: #e2e8f0;
    border-radius: 15px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: #94a3b8;
    border: 2px dashed #cbd5e1;
}

.map-placeholder i { font-size: 50px; margin-bottom: 15px; }

/* Responsive */
@media (max-width: 992px) {
    .contact-grid { grid-template-columns: 1fr; }
    .contact-info-panel { padding: 40px 20px; }
    .contact-form-card { padding: 40px 20px; }
    .form-row { flex-direction: column; gap: 0; }
}




/*ADMIN -CSS*/
/* Dashboard Layout */
.admin-body { background: #f1f5f9; display: flex; min-height: 100vh; }

.admin-sidebar {
    width: 260px;
    background: var(--dark-bg);
    padding: 30px 20px;
    display: flex;
    flex-direction: column;
    position: fixed;
    height: 100vh;
}

.admin-nav { list-style: none; margin-top: 40px; flex-grow: 1; }
.admin-nav li { margin-bottom: 15px; }
.admin-nav a { 
    color: #94a3b8; 
    text-decoration: none; 
    display: flex; 
    align-items: center; 
    gap: 15px;
    padding: 12px;
    border-radius: 8px;
    transition: 0.3s;
}
.admin-nav li.active a, .admin-nav a:hover { background: rgba(255,255,255,0.1); color: white; }

.admin-profile {
    display: flex;
    align-items: center;
    gap: 15px;
    color: white;
    padding-top: 20px;
    border-top: 1px solid rgba(255,255,255,0.1);
}
.admin-profile img { width: 40px; height: 40px; border-radius: 50%; }

/* Main Content Area */
.admin-main { margin-left: 260px; padding: 40px; width: calc(100% - 260px); }
.admin-header { display: flex; justify-content: space-between; align-items: center; margin-bottom: 30px; }

/* Stats Grid */
.stats-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 20px; margin-bottom: 40px; }
.stat-card { background: white; padding: 25px; border-radius: 12px; display: flex; align-items: center; gap: 20px; box-shadow: 0 4px 6px rgba(0,0,0,0.02); }
.stat-card i { font-size: 24px; padding: 15px; border-radius: 10px; }

.icon-req { color: #f59e0b; background: #fef3c7; }
.icon-active { color: #3b82f6; background: #dbeafe; }
.icon-complete { color: #10b981; background: #d1fae5; }
.icon-total { color: #8b5cf6; background: #ede9fe; }

.stat-info h3 { font-size: 1.5rem; }
.stat-info p { color: #64748b; font-size: 0.9rem; }

/* Table */
.table-container { background: white; padding: 25px; border-radius: 12px; box-shadow: 0 4px 6px rgba(0,0,0,0.02); }
.admin-table { width: 100%; border-collapse: collapse; margin-top: 20px; }
.admin-table th, .admin-table td { padding: 15px; text-align: left; border-bottom: 1px solid #f1f5f9; }
.admin-table th { color: #64748b; font-size: 0.85rem; text-transform: uppercase; }

.status-pending { background: #fef3c7; color: #d97706; padding: 4px 10px; border-radius: 20px; font-size: 12px; font-weight: 600; }
.btn-action { background: #f1f5f9; border: none; padding: 6px 12px; border-radius: 4px; cursor: pointer; }

/* Modal */
.modal { display: none; position: fixed; z-index: 2000; left: 0; top: 0; width: 100%; height: 100%; background: rgba(0,0,0,0.5); }
.modal-content { background: white; margin: 10% auto; padding: 30px; border-radius: 12px; width: 400px; position: relative; }
.close { position: absolute; right: 20px; top: 15px; font-size: 24px; cursor: pointer; }
.admin-form label { display: block; margin: 15px 0 5px; font-size: 0.9rem; font-weight: 600; }
.admin-form input, .admin-form select { width: 100%; padding: 10px; border: 1px solid #e2e8f0; border-radius: 6px; }

/* Mobile Dashboard */
@media (max-width: 768px) {
    .admin-sidebar { width: 70px; padding: 20px 10px; }
    .admin-sidebar span, .admin-sidebar .logo { display: none; }
    .admin-main { margin-left: 70px; width: calc(100% - 70px); padding: 20px; }
}

<!--Admin Login Area-->
/* Login Page Specific Styles */
.login-page {
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #f1f5f9;
}

.login-container {
    display: flex;
    width: 100%;
    height: 100vh;
    background: white;
    overflow: hidden;
}

/* Visual Side */
.login-visual {
    flex: 1.2;
    background: url('https://images.unsplash.com/photo-1488521787991-ed7bbaae773c?auto=format&fit=crop&w=1200') center/cover;
    position: relative;
    display: flex;
    align-items: center;
    padding: 60px;
    color: white;
}

.visual-overlay {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background: linear-gradient(135deg, rgba(0, 121, 107, 0.9), rgba(30, 41, 59, 0.8));
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 60px;
}

.logo-white {
    font-size: 2rem;
    font-weight: bold;
    margin-bottom: 2rem;
}
.logo-white span { color: #4db6ac; }

.visual-overlay h1 { font-size: 2.5rem; margin-bottom: 1rem; }
.visual-overlay p { font-size: 1.1rem; opacity: 0.9; line-height: 1.6; }

/* Form Side */
.login-form-area {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 40px;
    background: #fff;
}

.form-wrapper { width: 100%; max-width: 400px; }

.form-header { margin-bottom: 2.5rem; }
.form-header h2 { font-size: 1.8rem; color: #1e293b; margin-bottom: 0.5rem; }
.form-header p { color: #64748b; }

.input-with-icon { position: relative; }
.input-with-icon i {
    position: absolute;
    left: 15px;
    top: 50%;
    transform: translateY(-50%);
    color: #94a3b8;
}

.input-with-icon input {
    padding-left: 45px !important;
}

.form-options {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
    font-size: 0.9rem;
}

.forgot-link {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 600;
}

.btn-login {
    width: 100%;
    padding: 14px;
    background: var(--primary-color);
    color: white;
    border: none;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: 0.3s;
}

.btn-login:hover { background: #00695c; transform: translateY(-2px); }

.form-footer {
    margin-top: 2rem;
    text-align: center;
    font-size: 0.9rem;
    color: #64748b;
}

.form-footer a { color: var(--primary-color); text-decoration: none; font-weight: 600; }

/* Mobile Responsiveness */
@media (max-width: 992px) {
    .login-visual { display: none; }
    .login-form-area { flex: 1; }
}

/*REQUEST TO START A CAMPAIGN*/

/* Color Palette */
:root {
    --primary: #00796b;
    --primary-light: #e0f2f1;
    --dark: #1e293b;
    --grey: #64748b;
}

/* Rounded Outline Button */
.btn-outline {
    background: transparent;
    color: var(--primary);
    border: 2px solid var(--primary);
    padding: 10px 25px;
    border-radius: 50px; /* Fully rounded */
    font-weight: 600;
    cursor: pointer;
    transition: 0.3s;
    text-decoration: none;
    display: inline-block;
}

.btn-outline:hover {
    background: var(--primary);
    color: white;
}

/* Rounded Filled Button */
.btn-filled {
    background: var(--primary);
    color: white;
    border: none;
    padding: 12px 30px;
    border-radius: 50px;
    font-weight: 600;
    cursor: pointer;
    transition: 0.3s;
}

.btn-filled:hover {
    background: #004d40;
    box-shadow: 0 4px 12px rgba(0, 121, 107, 0.3);
}

/* Request Form Layout */
.request-container {
    background-color: #f8fafc;
    padding: 60px 20px;
    min-height: 100vh;
}

.form-card {
    max-width: 800px;
    margin: 0 auto;
    background: white;
    padding: 40px;
    border-radius: 15px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.05);
}

.form-header {
    text-align: center;
    margin-bottom: 40px;
}

.form-header h1 { color: var(--dark); font-size: 2rem; }

.form-section {
    margin-bottom: 30px;
    padding-bottom: 20px;
    border-bottom: 1px solid #f1f5f9;
}

.form-section h3 {
    color: var(--primary);
    margin-bottom: 20px;
    font-size: 1.1rem;
    display: flex;
    align-items: center;
    gap: 10px;
}

/* Inputs */
.form-group { margin-bottom: 20px; }
.form-group label { display: block; margin-bottom: 8px; font-weight: 600; color: var(--dark); font-size: 0.9rem; }
.form-group input, .form-group select, .form-group textarea {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #e2e8f0;
    border-radius: 8px;
    font-size: 1rem;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

/* Upload Box */
.upload-box {
    border: 2px dashed #cbd5e1;
    padding: 40px;
    text-align: center;
    border-radius: 10px;
    background: #fdfdfd;
}

.upload-box i { font-size: 3rem; color: #cbd5e1; margin-bottom: 15px; }

.form-footer-actions {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
    margin-top: 30px;
}

/* Mobile Adjustments */
@media (max-width: 600px) {
    .form-row { grid-template-columns: 1fr; }
    .form-card { padding: 25px; }
}


/*DONATE US*/
	/* Donate Layout */
.donate-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 40px;
    align-items: start;
}

.donate-form-card {
    background: white;
    padding: 40px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
}

.subtitle { color: #64748b; margin-bottom: 30px; }

/* Amount Buttons */
.amount-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(80px, 1fr));
    gap: 15px;
    margin: 15px 0 30px;
}

.amt-btn {
    padding: 12px;
    border: 2px solid #e2e8f0;
    background: transparent;
    border-radius: 10px;
    font-weight: bold;
    cursor: pointer;
    transition: 0.3s;
}

.amt-btn.active, .amt-btn:hover {
    border-color: var(--primary);
    color: var(--primary);
    background: var(--primary-light);
}

.custom-amt {
    position: relative;
    display: flex;
    align-items: center;
}

.custom-amt span { position: absolute; left: 12px; color: #64748b; font-weight: bold; }
.custom-amt input { padding-left: 25px !important; }

/* Payment Radio UI */
.payment-options {
    display: flex;
    gap: 15px;
    margin-bottom: 20px;
}

.pay-radio { flex: 1; cursor: pointer; }
.pay-radio input { display: none; }
.pay-radio span {
    display: block;
    padding: 15px;
    text-align: center;
    border: 1px solid #e2e8f0;
    border-radius: 8px;
    transition: 0.3s;
}

.pay-radio input:checked + span {
    border-color: var(--primary);
    background: var(--primary-light);
    color: var(--primary);
}

/* Summary Card */
.summary-card {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    position: sticky;
    top: 100px;
}

.summary-card img { width: 100%; height: 200px; object-fit: cover; }
.summary-content { padding: 30px; }
.summary-content .tag { font-size: 12px; color: var(--primary); font-weight: bold; text-transform: uppercase; }
.summary-content h3 { margin: 10px 0; }

.impact-preview {
    margin-top: 25px;
    padding-top: 20px;
    border-top: 1px solid #f1f5f9;
}

.impact-item {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 10px;
    font-size: 0.9rem;
    color: #475569;
}

.impact-item i { color: #22c55e; }

.secure-text {
    text-align: center;
    margin-top: 15px;
    font-size: 12px;
    color: #94a3b8;
}

.w-100 { width: 100%; }

/* Mobile View */
@media (max-width: 992px) {
    .donate-grid { grid-template-columns: 1fr; }
    .donate-summary { order: -1; } /* Show summary at top on mobile */
}


/*REGISTRATION*/
/* Container for the Horizontal Layout */
.type-selector-horizontal {
    display: flex;
    flex-direction: row; /* Forces horizontal alignment */
    gap: 12px;
    width: 100%;
    margin-bottom: 25px;
}

.selector-item {
    flex: 1; /* Ensures each button takes equal width horizontally */
}

/* Hide the native radio circle completely */
.selector-item input[type="radio"] {
    display: none;
}

/* The Square Button Label */
.square-btn {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 15px 10px;
    background-color: #ffffff;
    border: 2px solid #e2e8f0;
    border-radius: 12px; /* Square with rounded corners */
    cursor: pointer;
    transition: all 0.2s ease-in-out;
    height: 100px; /* Forces a square/rectangular shape */
}

.square-btn i {
    font-size: 1.4rem;
    margin-bottom: 8px;
    color: #94a3b8;
}

.square-btn span {
    font-size: 0.85rem;
    font-weight: 600;
    color: #64748b;
}

/* Hover State */
.square-btn:hover {
    border-color: #cbd5e1;
    background-color: #f8fafc;
}

/* Active / Selected State */
.selector-item input[type="radio"]:checked + .square-btn {
    border-color: #00796b;      /* Your primary theme green */
    background-color: #e0f2f1;  /* Very light teal background */
    box-shadow: 0 4px 12px rgba(0, 121, 107, 0.1);
}

.selector-item input[type="radio"]:checked + .square-btn i,
.selector-item input[type="radio"]:checked + .square-btn span {
    color: #00796b;
}

/* Section Label Styling */
.section-label {
    display: block;
    font-weight: 700;
    margin-bottom: 12px;
    color: #1e293b;
    font-size: 0.9rem;
}

/* Tablet/Mobile fallback - Optional: switch to 2 columns if screen is very narrow */
@media (max-width: 480px) {
    .type-selector-horizontal {
        flex-wrap: wrap;
    }
    .selector-item {
        flex: 1 1 calc(50% - 12px); /* Allow items to wrap if needed on small phones */
    }
}



/*DONORS*/
/* Header Layout */
.admin-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: 25px;
    gap: 20px;
}

.header-actions { display: flex; gap: 15px; }

/* Filter & Search UI */
.filter-group, .search-wrapper {
    position: relative;
    display: flex;
    align-items: center;
}

.filter-group i, .search-wrapper i {
    position: absolute;
    left: 12px;
    color: #94a3b8;
    font-size: 0.85rem;
}

.filter-dropdown, .table-search {
    padding: 10px 15px 10px 35px;
    border: 1.5px solid #e2e8f0;
    border-radius: 8px;
    background: white;
    font-size: 0.9rem;
    outline: none;
    transition: 0.3s;
}

.filter-dropdown:focus, .table-search:focus { border-color: #00796b; }

/* User Info Column */
.user-info { display: flex; align-items: center; gap: 12px; }

.user-avatar {
    width: 38px; height: 38px;
    background: #e0f2f1;
    color: #00796b;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 0.8rem;
}

.user-avatar.org { background: #fef3c7; color: #92400e; }

.user-details { display: flex; flex-direction: column; }
.user-details span { font-size: 0.75rem; color: #64748b; }

/* Type Badges */
.badge {
    padding: 4px 10px;
    border-radius: 6px;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
}

.badge-ind { background: #f1f5f9; color: #475569; }
.badge-group { background: #e0f2f1; color: #00796b; }
.badge-org { background: #fef3c7; color: #92400e; }

/* Status Pill */
.status-pill {
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
}

.status-pill.active { background: #dcfce7; color: #15803d; }

/* Mobile Responsiveness */
@media (max-width: 768px) {
    .admin-header { flex-direction: column; align-items: stretch; }
    .header-actions { flex-direction: column; }
}

<!--side category campaign-->
.filter-category {
    background: #ffffff;
    border-radius: 12px;
    padding: 18px 18px 14px;
    box-shadow: 0 8px 24px rgba(0,0,0,0.06);
    border: 1px solid #e5e7eb;
}

/* Title */
.filter-category h5 {
    font-size: 15px;
    font-weight: 700;
    margin: 0 0 14px;
    color: #0f172a;
}

/* List reset */
.filter-category ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

/* List item */
.filter-category ul li {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 11px 14px;
    margin-bottom: 6px;
    border-radius: 10px;
    font-size: 14px;
    font-weight: 500;
    color: #475569;
    cursor: pointer;
    transition: all 0.25s ease;
}

/* Icons */
.filter-category ul li i {
    font-size: 15px;
    width: 22px;
    margin-right: 12px;   /* ?? THIS gives guaranteed space */
    text-align: center;
    color: #94a3b8;
    flex-shrink: 0;
}


/* Hover */
.filter-category ul li:hover {
    background: #f0fdfa;
    color: #00796b;
}

.filter-category ul li:hover i {
    color: #00796b;
}

/* Active */
.filter-category ul li.active-filter {
    background: linear-gradient(135deg, #00796b, #009688);
    color: #ffffff;
    box-shadow: 0 6px 14px rgba(0,121,107,0.25);
}

.filter-category ul li.active-filter i {
    color: #ffffff;
}

/* Remove last margin */
.filter-category ul li:last-child {
    margin-bottom: 0;
}


/*Chat icon starts*/
.chat-float{
    position:fixed;
    right:40px;
    bottom:60px;
    width:120px;
    height:120px;
    background:#fff;
    color:#fff;
    border-radius:50%;
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:26px;
    text-decoration:none;
    box-shadow:0 8px 20px rgba(0,0,0,0.25);
    z-index:9999;
    transition:0.3s ease;
}

.chat-float:hover{
    background:#fff;
    transform:scale(1.05);
}

.chat-float::after{
    content:"Chat Now";
    position:absolute;
    right:70px;
    background:#1e293b;
    color:#fff;
    padding:6px 10px;
    border-radius:6px;
    font-size:12px;
    white-space:nowrap;
    opacity:0;
    transition:0.3s;
    pointer-events:none;
}

.chat-float:hover::after{
    opacity:1;
}
/*chat icon end*/