/* Custom CSS for Ghartal Overseas Alliance Website */

:root {
    --primary-color: #28a745;
    --secondary-color: #20c997;
    --accent-color: #198754;
    --light-color: #d4edda;
    --dark-color: #155724;
    --light-green: #f8fff9;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    color: #333;
    background-color: #f9f9f9;
}

/* Navbar customization */
.navbar-dark.bg-primary {
    background-color: var(--primary-color) !important;
}

.navbar-brand {
    font-weight: bold;
    display: flex;
    align-items: center;
    gap: 10px;
}

.navbar-brand img {
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease;
}

.navbar-brand:hover img {
    transform: scale(1.05);
}

/* Responsive Design */
@media (max-width: 768px) {
    /* Header Responsive */
    .brand-title {
        font-size: 1.2rem;
    }
    
    .brand-tagline {
        font-size: 0.8rem;
    }
    
    .logo-img {
        width: 70px;
        height: 70px;
    }
    
    .modern-nav-link.contact-btn {
        margin-left: 0;
        margin-top: 0.5rem;
        justify-content: center;
    }
    
    .modern-nav-link {
        justify-content: center;
        text-align: center;
        padding: 1rem;
        margin: 0.25rem 0;
    }
    
    .page-title {
        font-size: 2rem;
    }
    
    /* Footer Responsive */
    .footer-bottom-links {
        justify-content: center;
        flex-wrap: wrap;
        gap: 1rem;
        margin-top: 1rem;
    }
    
    .footer-logo {
        flex-direction: column;
        text-align: center;
    }
    
    .social-links {
        justify-content: center;
    }
    
    .committee-image {
        max-width: 100%;
        max-height: 250px;
    }
    
    .committee-image-section {
        margin-bottom: 2rem;
    }
}

@media (max-width: 768px) {
    .navbar-brand {
        flex-direction: column;
        text-align: center;
    }
    
    .navbar-brand img {
        height: 60px !important;
        margin-bottom: 10px;
    }
    
    .navbar-brand span {
        font-size: 1.2rem !important;
    }
}

/* Hero section */
.hero-section {
    background: linear-gradient(rgba(21, 87, 36, 0.8), rgba(25, 135, 84, 0.8)), url('../img/hero-bg.jpg');
    background-size: cover;
    background-position: center;
    color: white;
    padding: 100px 0;
    margin-bottom: 30px;
}

/* Cards */
.card {
    border: none;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s;
    margin-bottom: 20px;
}

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

.card-header {
    background-color: var(--primary-color);
    color: white;
    font-weight: bold;
}

/* Buttons */
.btn-primary {
    background-color: var(--secondary-color);
    border-color: var(--secondary-color);
}

.btn-primary:hover {
    background-color: #2980b9;
    border-color: #2980b9;
}

.btn-accent {
    background-color: var(--accent-color);
    border-color: var(--accent-color);
    color: white;
}

.btn-accent:hover {
    background-color: #c0392b;
    border-color: #c0392b;
    color: white;
}

/* Progress bars */
.progress {
    height: 10px;
    border-radius: 5px;
}

/* Footer */
footer {
    background-color: var(--dark-color) !important;
}

footer a {
    text-decoration: none;
}

footer a:hover {
    text-decoration: underline;
}

/* Project cards */
.project-card .progress {
    height: 15px;
}

.project-card .card-img-top {
    height: 200px;
    object-fit: cover;
    object-position: center;
}

.project-logo {
    position: absolute;
    bottom: 10px;
    right: 10px;
    max-width: 60px;
    max-height: 60px;
    border-radius: 50%;
    background-color: white;
    padding: 5px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
}

.project-card .card-img-container {
    position: relative;
}

/* Committee members */
.committee-member {
    text-align: center;
    margin-bottom: 30px;
}

.committee-member img {
    width: 150px;
    height: 150px;
    object-fit: cover;
    border-radius: 50%;
    margin-bottom: 15px;
}

/* Notable works */
.notable-work {
    margin-bottom: 30px;
}

.notable-work img {
    max-width: 100%;
    height: auto;
    border-radius: 5px;
}

.card .card-img-top {
    height: 200px;
    object-fit: cover;
    object-position: center;
}

.card .card-img-container {
    position: relative;
}

.notable-work-logo {
    position: absolute;
    bottom: 10px;
    right: 10px;
    max-width: 60px;
    max-height: 60px;
    border-radius: 50%;
    background-color: white;
    padding: 5px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
}

/* Single notable work page */
.single-work-image {
    width: 100%;
    height: 350px;
    object-fit: cover;
    object-position: center;
    border-radius: 8px;
}

.single-work-logo {
    position: absolute;
    top: 20px;
    right: 20px;
    max-width: 80px;
    max-height: 80px;
    border-radius: 50%;
    background-color: white;
    padding: 5px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
    z-index: 10;
}

/* Complaint form */
.complaint-form {
    background-color: #fff;
    padding: 25px;
    border-radius: 5px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

/* Modern Form Styles */
.complaint-section {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    position: relative;
    overflow: hidden;
}

.complaint-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="25" cy="25" r="1" fill="%23ffffff" opacity="0.1"/><circle cx="75" cy="75" r="1" fill="%23ffffff" opacity="0.1"/><circle cx="50" cy="10" r="0.5" fill="%23ffffff" opacity="0.1"/><circle cx="10" cy="60" r="0.5" fill="%23ffffff" opacity="0.1"/><circle cx="90" cy="40" r="0.5" fill="%23ffffff" opacity="0.1"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
    pointer-events: none;
}

.complaint-form-card {
    background: white;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    position: relative;
    z-index: 1;
}

.modern-form {
    padding: 40px;
}

.form-row {
    margin-bottom: 25px;
}

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

.form-label {
    display: flex;
    align-items: center;
    font-weight: 600;
    color: #2c3e50;
    margin-bottom: 8px;
    font-size: 0.95rem;
}

.form-control-modern {
    border: 2px solid #e9ecef;
    border-radius: 12px;
    padding: 12px 16px;
    font-size: 1rem;
    transition: all 0.3s ease;
    background: #f8f9fa;
}

.form-control-modern:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 0.2rem rgba(102, 126, 234, 0.25);
    background: white;
    outline: none;
}

.form-control-modern::placeholder {
    color: #adb5bd;
    font-style: italic;
}

.form-select.form-control-modern {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3e%3cpath fill='none' stroke='%23343a40' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='m1 6 7 7 7-7'/%3e%3c/svg%3e");
    background-repeat: no-repeat;
    background-position: right 12px center;
    background-size: 16px 12px;
    padding-right: 40px;
}

textarea.form-control-modern {
    resize: vertical;
    min-height: 120px;
}

.form-submit {
    margin-top: 30px;
}

.btn-primary-modern {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    border: none;
    border-radius: 12px;
    padding: 12px 30px;
    font-weight: 600;
    font-size: 1.1rem;
    color: white;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(102, 126, 234, 0.3);
}

.btn-primary-modern:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(102, 126, 234, 0.4);
    background: linear-gradient(135deg, #5a67d8, #667eea);
    color: white;
}

.btn-primary-modern:active {
    transform: translateY(0);
    box-shadow: 0 2px 10px rgba(102, 126, 234, 0.3);
}

/* Success Card Styles */
.success-card {
    background: white;
    border-radius: 20px;
    padding: 40px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    text-align: center;
}

.success-icon {
    color: #28a745;
}

.success-title {
    color: #2c3e50;
    font-weight: 700;
    font-size: 1.8rem;
}

.success-message {
    color: #6c757d;
    font-size: 1.1rem;
    line-height: 1.6;
}

.tracking-number-display {
    background: linear-gradient(135deg, #f8f9fa, #e9ecef);
    border-radius: 12px;
    padding: 20px;
    border: 2px dashed #dee2e6;
}

.tracking-label {
    font-weight: 600;
    color: #6c757d;
    margin-right: 10px;
}

.tracking-number {
    font-weight: 700;
    font-size: 1.2rem;
    color: var(--primary-color);
    font-family: 'Courier New', monospace;
    background: white;
    padding: 8px 16px;
    border-radius: 8px;
    border: 2px solid var(--primary-color);
}

.success-actions {
    margin-top: 30px;
}

/* Tracking Card Styles */
.tracking-card {
    background: white;
    border-radius: 20px;
    padding: 30px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    text-align: center;
}

.tracking-header {
    margin-bottom: 25px;
}

.tracking-title {
    color: #2c3e50;
    font-weight: 700;
    font-size: 1.5rem;
    margin-bottom: 10px;
}

.tracking-subtitle {
    color: #6c757d;
    font-size: 1rem;
}

.tracking-input-wrapper {
    max-width: 500px;
    margin: 0 auto;
}

.tracking-input-wrapper .input-group {
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.tracking-input-wrapper .input-group-text {
    background: var(--primary-color);
    color: white;
    border: none;
    padding: 12px 16px;
    font-size: 1.1rem;
}

.tracking-input-wrapper .form-control {
    border: none;
    padding: 12px 16px;
    font-size: 1rem;
    background: #f8f9fa;
}

.tracking-input-wrapper .form-control:focus {
    box-shadow: none;
    background: white;
}

.tracking-input-wrapper .btn {
    border-radius: 0;
    padding: 12px 20px;
    font-weight: 600;
}

/* Responsive Design for Forms */
@media (max-width: 768px) {
    .modern-form {
        padding: 25px;
    }
    
    .form-row .row {
        margin: 0;
    }
    
    .form-row .row .col-md-6 {
        padding: 0;
        margin-bottom: 20px;
    }
    
    .success-card {
        padding: 25px;
    }
    
    .tracking-card {
        padding: 20px;
    }
    
    .btn-primary-modern {
        width: 100%;
        margin-bottom: 10px;
    }
    
    .success-actions .btn {
        width: 100%;
        margin-bottom: 10px;
    }
}

/* Complaint status and timer */
.complaint-status-card {
    border-left: 5px solid;
    margin-bottom: 20px;
}

.complaint-status-card.created {
    border-left-color: var(--info-color, #17a2b8);
}

.complaint-status-card.processing {
    border-left-color: var(--warning-color, #ffc107);
}

.complaint-status-card.completed {
    border-left-color: var(--success-color, #28a745);
}

.complaint-status-card.rejected {
    border-left-color: var(--danger-color, #dc3545);
}

.countdown-timer {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    margin: 0 auto;
    position: relative;
    font-weight: bold;
    color: white;
}

.countdown-timer.active {
    background: linear-gradient(135deg, #17a2b8, #20c997);
}

.countdown-timer.warning {
    background: linear-gradient(135deg, #ffc107, #fd7e14);
}

.countdown-timer.danger {
    background: linear-gradient(135deg, #dc3545, #c82333);
}

.countdown-timer.completed {
    background: linear-gradient(135deg, #28a745, #20c997);
}

.countdown-timer.expired {
    background: linear-gradient(135deg, #6c757d, #495057);
}

.countdown-timer .days {
    font-size: 2rem;
    line-height: 1;
}

.countdown-timer .hours {
    font-size: 1.5rem;
    line-height: 1;
}

.countdown-timer .label {
    font-size: 0.8rem;
    opacity: 0.8;
}

.resolution-time {
    font-size: 1.2rem;
    font-weight: bold;
    text-align: center;
}

/* Tracking section */
.tracking-section {
    background-color: var(--light-color);
    padding: 30px;
    border-radius: 5px;
}

/* Responsive adjustments */
/* Modern UI Enhancements */

/* Custom gradient backgrounds */
.bg-gradient-light {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.bg-primary-gradient {
    background: linear-gradient(135deg, var(--secondary-color) 0%, #2980b9 100%);
}

/* Enhanced hero section */
.hero-section {
    background: linear-gradient(135deg, rgba(44, 62, 80, 0.9) 0%, rgba(52, 152, 219, 0.8) 100%), 
                linear-gradient(45deg, #2c3e50 0%, #3498db 100%);
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.1);
}

.hero-content {
    animation: fadeInUp 1s ease-out;
}

.hero-badge .badge {
    font-size: 0.95rem;
    border-radius: 25px;
    animation: fadeInDown 1s ease-out;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    background: linear-gradient(45deg, #fff, #ecf0f1);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: fadeInUp 1s ease-out 0.2s both;
}

.hero-subtitle {
    font-size: 2rem;
    font-weight: 300;
    color: #ecf0f1;
    animation: fadeInUp 1s ease-out 0.4s both;
}

.hero-description {
    font-size: 1.2rem;
    color: #bdc3c7;
    line-height: 1.6;
    animation: fadeInUp 1s ease-out 0.6s both;
}

.hero-buttons {
    animation: fadeInUp 1s ease-out 0.8s both;
}

.hero-decoration {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    overflow: hidden;
    pointer-events: none;
}

.decoration-circle {
    position: absolute;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    animation: float 6s ease-in-out infinite;
}

.decoration-circle-1 {
    width: 100px;
    height: 100px;
    top: 20%;
    right: 10%;
    animation-delay: 0s;
}

.decoration-circle-2 {
    width: 150px;
    height: 150px;
    bottom: 20%;
    left: 5%;
    animation-delay: 2s;
}

.decoration-circle-3 {
    width: 80px;
    height: 80px;
    top: 60%;
    right: 20%;
    animation-delay: 4s;
}

/* WhatsApp card */
.whatsapp-card {
    background: white;
    border-radius: 20px;
    padding: 2.5rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(37, 211, 102, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.whatsapp-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.whatsapp-icon-wrapper {
    display: flex;
    justify-content: center;
}

.whatsapp-icon-bg {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #25d366 0%, #128c7e 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 5px 15px rgba(37, 211, 102, 0.3);
    animation: pulse 2s infinite;
}

.btn-whatsapp {
    background: linear-gradient(135deg, #25d366 0%, #128c7e 100%);
    border: none;
    color: white;
    border-radius: 25px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-whatsapp:hover {
    background: linear-gradient(135deg, #128c7e 0%, #25d366 100%);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(37, 211, 102, 0.4);
    color: white;
}

.feature-item {
    text-align: center;
}

.feature-item i {
    font-size: 1.5rem;
}

/* Goals section */
.goals-section {
    background: white;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary-color);
    position: relative;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: linear-gradient(135deg, var(--secondary-color) 0%, #2980b9 100%);
    border-radius: 2px;
}

.section-subtitle {
    font-size: 1.1rem;
    line-height: 1.6;
}

.goal-card {
    background: white;
    border-radius: 15px;
    padding: 2rem;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.goal-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.goal-icon-wrapper {
    margin-bottom: 1.5rem;
}

.goal-icon {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
    transition: transform 0.3s ease;
}

.goal-card:hover .goal-icon {
    transform: scale(1.1);
}

.goal-icon i {
    font-size: 1.8rem;
}

.bg-primary-light {
    background: rgba(52, 152, 219, 0.1);
}

.bg-success-light {
    background: rgba(46, 204, 113, 0.1);
}

.bg-info-light {
    background: rgba(52, 152, 219, 0.1);
}

.bg-warning-light {
    background: rgba(241, 196, 15, 0.1);
}

.bg-danger-light {
    background: rgba(231, 76, 60, 0.1);
}

.bg-purple-light {
    background: rgba(155, 89, 182, 0.1);
}

.text-purple {
    color: #9b59b6;
}

.goal-title {
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.goal-description {
    color: #6c757d;
    line-height: 1.6;
    margin: 0;
}

.goals-footer {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    border-radius: 15px;
    padding: 2rem;
    margin-top: 2rem;
}

.quote-wrapper {
    position: relative;
    margin-top: 1rem;
}

.quote-wrapper::before {
    content: '"';
    font-size: 4rem;
    color: var(--secondary-color);
    position: absolute;
    top: -10px;
    left: -20px;
    opacity: 0.3;
}

/* Modern project cards */
.project-card-modern {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    border: 1px solid rgba(0, 0, 0, 0.05);
    display: flex;
    flex-direction: column;
    height: 100%;
}

.project-card-modern:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.project-image-wrapper {
    position: relative;
    overflow: hidden;
}

.project-image {
    width: 100%;
    height: 220px;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.project-card-modern:hover .project-image {
    transform: scale(1.05);
}

.project-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, rgba(0, 0, 0, 0.3) 0%, transparent 50%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.project-card-modern:hover .project-overlay {
    opacity: 1;
}

.project-status {
    position: absolute;
    top: 15px;
    left: 15px;
}

.project-logo-wrapper {
    position: absolute;
    bottom: 15px;
    right: 15px;
}

.project-logo-modern {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: white;
    padding: 5px;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.2);
}

.project-content {
    padding: 1.5rem;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.project-title {
    font-size: 1.4rem;
    font-weight: 600;
    color: var(--primary-color);
    margin-bottom: 1rem;
    min-height: 3.5rem;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.project-description {
    color: #6c757d;
    line-height: 1.6;
    margin-bottom: 1.5rem;
    flex-grow: 1;
    min-height: 4.5rem;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.progress-header {
    display: flex;
    justify-content: between;
    align-items: center;
    margin-bottom: 0.5rem;
}

.progress-label {
    font-size: 0.9rem;
    color: #6c757d;
}

.progress-percentage {
    font-weight: 600;
    color: var(--secondary-color);
}

.progress-bar-wrapper {
    margin-bottom: 1rem;
}

.progress-bar-modern {
    height: 8px;
    background: #e9ecef;
    border-radius: 10px;
    overflow: hidden;
}

.progress-fill {
    height: 100%;
    background: linear-gradient(135deg, #27ae60 0%, #2ecc71 100%);
    border-radius: 10px;
    transition: width 0.3s ease;
}

.project-amounts {
    display: flex;
    justify-content: space-between;
    margin-bottom: 1rem;
}

.amount-item {
    text-align: center;
}

.amount-label {
    display: block;
    font-size: 0.85rem;
    color: #6c757d;
    margin-bottom: 0.25rem;
}

.amount-value {
    font-weight: 600;
    font-size: 0.95rem;
}

.project-cost {
    text-align: center;
    margin-top: 0.5rem;
}

.project-footer {
    padding: 1rem 1.5rem;
    background: #f8f9fa;
    border-top: 1px solid rgba(0, 0, 0, 0.05);
}

.btn-primary-modern {
    background: linear-gradient(135deg, var(--secondary-color) 0%, #2980b9 100%);
    border: none;
    border-radius: 50px;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(52, 152, 219, 0.3);
}

.btn-primary-modern:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(52, 152, 219, 0.4);
    background: linear-gradient(135deg, #2980b9 0%, var(--secondary-color) 100%);
}

.btn-whatsapp {
    background: linear-gradient(135deg, #25d366 0%, #20ba5a 100%);
    border: none;
    color: white;
    border-radius: 50px;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.3);
}

.btn-whatsapp:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(37, 211, 102, 0.4);
    background: linear-gradient(135deg, #20ba5a 0%, #25d366 100%);
    color: white;
}

/* Color Utilities */
.bg-primary-light {
    background: rgba(52, 152, 219, 0.1) !important;
}

.bg-success-light {
    background: rgba(40, 167, 69, 0.1) !important;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary-color);
}

.section-subtitle {
    font-size: 1.2rem;
    line-height: 1.6;
}

/* Project Details Page Styles */
.project-details-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary-color);
}

.project-status-badge {
    margin-bottom: 1rem;
}

/* Project Media */
.project-detail-image {
    width: 100%;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.project-detail-image:hover {
    transform: scale(1.02);
}

.image-overlay-detail {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, rgba(0, 0, 0, 0.1) 0%, transparent 50%);
    border-radius: 20px;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.project-main-image:hover .image-overlay-detail {
    opacity: 1;
}

.project-detail-logo {
    max-height: 80px;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

/* Modern Progress Card */
.progress-card-modern {
    background: white;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    overflow: hidden;
}

.progress-card-header {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    padding: 1.5rem;
    border-bottom: 1px solid #dee2e6;
}

.progress-title {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--primary-color);
    margin: 0;
}

.progress-card-body {
    padding: 2rem;
}

.progress-percentage-large {
    text-align: center;
    margin-bottom: 1.5rem;
}

.percentage-number {
    font-size: 3rem;
    font-weight: 700;
    color: var(--secondary-color);
}

.percentage-symbol {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--secondary-color);
}

.percentage-label {
    font-size: 1rem;
    color: #6c757d;
    margin-top: 0.5rem;
}

.progress-bar-large {
    height: 20px;
    background: #e9ecef;
    border-radius: 10px;
    overflow: hidden;
    position: relative;
}

.progress-fill-large {
    height: 100%;
    background: linear-gradient(90deg, #28a745 0%, #20c997 100%);
    border-radius: 10px;
    transition: width 0.8s ease;
    position: relative;
    overflow: hidden;
}

.progress-shine {
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
    animation: shine 2s infinite;
}

@keyframes shine {
    0% { left: -100%; }
    100% { left: 100%; }
}

.funding-stats {
    display: grid;
    gap: 1rem;
}

.funding-stat {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    background: #f8f9fa;
    border-radius: 10px;
    transition: all 0.3s ease;
}

.funding-stat:hover {
    background: #e9ecef;
    transform: translateY(-2px);
}

.stat-icon {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.stat-label {
    font-size: 0.9rem;
    color: #6c757d;
    margin-bottom: 0.25rem;
}

.stat-value {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--primary-color);
}

/* Project Info Card */
.project-info-card {
    background: white;
    border-radius: 20px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    overflow: hidden;
}

.info-card-header {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    padding: 1.5rem;
    border-bottom: 1px solid #dee2e6;
}

.info-title {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--primary-color);
    margin: 0;
}

.info-card-body {
    padding: 1.5rem;
}

.info-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 0;
    border-bottom: 1px solid #f8f9fa;
}

.info-item:last-child {
    border-bottom: none;
}

.info-label {
    font-weight: 500;
    color: #6c757d;
}

.info-value {
    font-weight: 600;
    color: var(--primary-color);
}

/* Content Cards */
.content-card {
    background: white;
    border-radius: 20px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    overflow: hidden;
}

.content-header {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    padding: 1.5rem;
    border-bottom: 1px solid #dee2e6;
}

.content-title {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--primary-color);
    margin: 0;
}

.content-body {
    padding: 2rem;
}

.project-description-text,
.project-benefits-text {
    color: #6c757d;
    line-height: 1.7;
    font-size: 1.1rem;
}

/* Donations Grid */
.donations-grid {
    display: grid;
    gap: 1rem;
}

.donation-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.5rem;
    background: #f8f9fa;
    border-radius: 15px;
    transition: all 0.3s ease;
}

.donation-item:hover {
    background: #e9ecef;
    transform: translateY(-2px);
}

.donor-avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--secondary-color) 0%, #2980b9 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.2rem;
}

.donor-name {
    font-weight: 600;
    color: var(--primary-color);
    margin-bottom: 0.25rem;
}

.donation-amount {
    font-weight: 600;
    color: #28a745;
    margin-bottom: 0.25rem;
}

.donation-meta {
    display: flex;
    gap: 1rem;
    font-size: 0.9rem;
    color: #6c757d;
}

/* Expenses List */
.expenses-list {
    display: grid;
    gap: 1rem;
}

.expense-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.5rem;
    background: #f8f9fa;
    border-radius: 15px;
    transition: all 0.3s ease;
}

.expense-item:hover {
    background: #e9ecef;
    transform: translateY(-2px);
}

.expense-icon {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.expense-description {
    font-weight: 600;
    color: var(--primary-color);
    margin-bottom: 0.25rem;
}

.expense-meta {
    display: flex;
    gap: 1rem;
    font-size: 0.9rem;
}

.expense-amount {
    font-weight: 600;
    color: #dc3545;
}

.expense-date {
    color: #6c757d;
}

.back-navigation {
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 1px solid #e9ecef;
}

/* Notable Works Detail Page Styles */
.work-details-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary-color);
}

.work-detail-image {
    width: 100%;
    height: 400px;
    object-fit: cover;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.work-detail-image:hover {
    transform: scale(1.02);
}

.work-image-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, rgba(0, 0, 0, 0.1) 0%, transparent 50%);
    border-radius: 20px;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.work-main-image:hover .work-image-overlay {
    opacity: 1;
}

.work-logo-overlay {
    position: absolute;
    bottom: 20px;
    right: 20px;
}

.work-detail-logo {
    width: 80px;
    height: 80px;
    object-fit: cover;
    border-radius: 15px;
    border: 3px solid white;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

/* Work Info Card */
.work-info-card {
    background: white;
    border-radius: 20px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    overflow: hidden;
}

.work-info-header {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    padding: 1.5rem;
    border-bottom: 1px solid #dee2e6;
}

.work-info-title {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--primary-color);
    margin: 0;
}

.work-info-body {
    padding: 1.5rem;
}

.work-info-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem 0;
    border-bottom: 1px solid #f8f9fa;
}

.work-info-item:last-child {
    border-bottom: none;
}

.info-icon {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.info-label {
    font-size: 0.9rem;
    color: #6c757d;
    margin-bottom: 0.25rem;
}

.info-value {
    font-weight: 600;
    color: var(--primary-color);
}

/* Work Content Card */
.work-content-card {
    background: white;
    border-radius: 20px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    overflow: hidden;
    margin-bottom: 2rem;
}

.work-content-header {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    padding: 1.5rem;
    border-bottom: 1px solid #dee2e6;
}

.work-content-title {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--primary-color);
    margin: 0;
}

.work-content-body {
    padding: 2rem;
}

.work-description-text {
    color: #6c757d;
    line-height: 1.7;
    font-size: 1.1rem;
}

/* Achievement Highlights */
.achievement-highlights {
    background: white;
    border-radius: 20px;
    padding: 2rem;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    margin-bottom: 2rem;
}

.highlights-title {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
}

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

.highlight-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    background: #f8f9fa;
    border-radius: 10px;
    transition: all 0.3s ease;
}

.highlight-item:hover {
    background: #e9ecef;
    transform: translateY(-2px);
}

.highlight-icon {
    font-size: 1.2rem;
}

.highlight-text {
    font-weight: 500;
    color: var(--primary-color);
}

.work-back-navigation {
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 1px solid #e9ecef;
}

/* Track Complaint Page Styles */
.tracking-form-card {
    background: white;
    border-radius: 25px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
    overflow: hidden;
}

.tracking-form-header {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    padding: 3rem 2rem 2rem;
    text-align: center;
    color: white;
}

.form-icon {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    margin: 0 auto 1rem;
}

.form-title {
    font-size: 1.8rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.form-subtitle {
    opacity: 0.9;
    margin-bottom: 0;
}

.tracking-form-body {
    padding: 2rem;
}

.tracking-input-group {
    position: relative;
    margin-bottom: 1rem;
}

.input-icon {
    position: absolute;
    left: 1rem;
    top: 50%;
    transform: translateY(-50%);
    color: #6c757d;
    z-index: 2;
}

.tracking-input {
    width: 100%;
    padding: 1rem 1rem 1rem 3rem;
    border: 2px solid #e9ecef;
    border-radius: 15px;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    background: #f8f9fa;
}

.tracking-input:focus {
    outline: none;
    border-color: var(--primary-color);
    background: white;
    box-shadow: 0 0 0 0.2rem rgba(40, 167, 69, 0.25);
}

.tracking-form-footer {
    padding: 1rem 2rem 2rem;
    text-align: center;
    background: #f8f9fa;
}

.help-text {
    color: #6c757d;
    margin: 0;
}

/* Error Card */
.error-card {
    background: white;
    border-radius: 20px;
    padding: 3rem 2rem;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.error-icon {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: linear-gradient(135deg, #ffc107 0%, #fd7e14 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: white;
    margin: 0 auto 1.5rem;
}

.error-title {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.error-message {
    color: #6c757d;
    margin-bottom: 2rem;
}

.error-actions {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

/* Complaint Header Card */
.complaint-header-card {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    border-radius: 20px;
    padding: 2rem;
    color: white;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.complaint-header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}

.complaint-title {
    font-size: 1.8rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.complaint-meta {
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
}

.tracking-number,
.complaint-category {
    display: flex;
    align-items: center;
    background: rgba(255, 255, 255, 0.2);
    padding: 0.5rem 1rem;
    border-radius: 25px;
    font-size: 0.9rem;
}

.status-badge-large {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 1rem 1.5rem;
    border-radius: 25px;
    font-weight: 600;
    font-size: 1.1rem;
}

.status-badge-large.pending {
    background: #ffc107;
    color: #000;
}

.status-badge-large.in_progress {
    background: #17a2b8;
    color: white;
}

.status-badge-large.completed {
    background: #28a745;
    color: white;
}

.status-badge-large.rejected {
    background: #dc3545;
    color: white;
}

/* Timeline Card */
.status-timeline-card {
    background: white;
    border-radius: 20px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    overflow: hidden;
    margin-bottom: 2rem;
}

.timeline-header {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    padding: 1.5rem;
    border-bottom: 1px solid #dee2e6;
}

.timeline-title {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--primary-color);
    margin: 0;
}

.timeline-body {
    padding: 1.5rem;
}

.timeline-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem 0;
    position: relative;
}

.timeline-item:not(:last-child)::after {
    content: '';
    position: absolute;
    left: 25px;
    top: 60px;
    width: 2px;
    height: 40px;
    background: #e9ecef;
}

.timeline-icon {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    color: white;
    flex-shrink: 0;
}

.timeline-item.submitted .timeline-icon {
    background: var(--primary-color);
}

.timeline-item.active .timeline-icon {
    background: #17a2b8;
}

.timeline-item.completed .timeline-icon {
    background: #28a745;
}

.timeline-item.rejected .timeline-icon {
    background: #dc3545;
}

.timeline-title {
    font-weight: 600;
    color: var(--primary-color);
    margin-bottom: 0.25rem;
}

.timeline-date {
    color: #6c757d;
    font-size: 0.9rem;
}

/* Countdown Card */
.countdown-card {
    background: white;
    border-radius: 20px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    overflow: hidden;
}

.countdown-header {
    padding: 1.5rem;
    border-bottom: 1px solid #dee2e6;
}

.countdown-title {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--primary-color);
    margin: 0;
}

.countdown-display {
    padding: 2rem;
    text-align: center;
}

.time-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1rem;
}

.time-unit {
    text-align: center;
}

.time-value {
    font-size: 2rem;
    font-weight: 700;
    color: var(--secondary-color);
    display: block;
    padding: 1rem;
    background: #f8f9fa;
    border-radius: 10px;
    margin-bottom: 0.5rem;
}

.time-label {
    font-size: 0.9rem;
    color: #6c757d;
    font-weight: 500;
}

.countdown-card.warning .time-value {
    background: #fff3cd;
    color: #856404;
}

.countdown-card.danger .time-value {
    background: #f8d7da;
    color: #721c24;
}

.time-expired {
    padding: 2rem;
}

.expired-text {
    font-size: 1.5rem;
    font-weight: 700;
    color: #dc3545;
    margin-top: 1rem;
}

.countdown-footer {
    padding: 1rem 1.5rem;
    background: #f8f9fa;
    border-top: 1px solid #dee2e6;
}

.countdown-note {
    margin: 0;
    font-size: 0.9rem;
}

/* Completion/Rejection Cards */
.completion-card,
.rejection-card {
    background: white;
    border-radius: 20px;
    padding: 2rem;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
}

.completion-icon {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: linear-gradient(135deg, #28a745 0%, #20c997 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: white;
    margin: 0 auto 1rem;
}

.rejection-icon {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: linear-gradient(135deg, #dc3545 0%, #c82333 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: white;
    margin: 0 auto 1rem;
}

.completion-title,
.rejection-title {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.completion-time,
.rejection-note {
    color: #6c757d;
    margin: 0;
}

/* Detail Cards */
.detail-card {
    background: white;
    border-radius: 20px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    overflow: hidden;
}

.detail-card-header {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    padding: 1.5rem;
    border-bottom: 1px solid #dee2e6;
}

.detail-card-title {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--primary-color);
    margin: 0;
}

.detail-card-body {
    padding: 2rem;
}

.complaint-description {
    color: #6c757d;
    line-height: 1.7;
    font-size: 1.1rem;
    margin: 0;
}

/* Contact Info Grid */
.contact-info-grid {
    display: grid;
    gap: 1.5rem;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    background: #f8f9fa;
    border-radius: 10px;
}

.contact-icon {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: var(--primary-color);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.2rem;
    flex-shrink: 0;
}

.contact-label {
    font-size: 0.9rem;
    color: #6c757d;
    margin-bottom: 0.25rem;
}

.contact-value {
    font-weight: 600;
    color: var(--primary-color);
}

/* Complaint Image */
.complaint-image-wrapper {
    position: relative;
    display: inline-block;
    cursor: pointer;
}

.complaint-image {
    max-width: 100%;
    height: auto;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.complaint-image:hover {
    transform: scale(1.02);
}

.image-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.5);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.5rem;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.complaint-image-wrapper:hover .image-overlay {
    opacity: 1;
}

/* Admin Notes Card */
.admin-notes-card {
    border-left: 4px solid #ffc107;
}

.admin-notes-content {
    background: #fff3cd;
    padding: 1rem;
    border-radius: 10px;
    border-left: 4px solid #ffc107;
}

.admin-notes-content p {
    margin: 0;
    color: #856404;
}

/* Image Modal */
.image-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
}

.image-modal-content {
    position: relative;
    max-width: 90%;
    max-height: 90%;
}

.image-modal-img {
    max-width: 100%;
    max-height: 100%;
    border-radius: 10px;
}

.image-modal-close {
    position: absolute;
    top: -40px;
    right: 0;
    color: white;
    font-size: 2rem;
    cursor: pointer;
    background: rgba(0, 0, 0, 0.5);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Complaint Actions */
.complaint-actions {
    padding: 2rem;
    background: #f8f9fa;
    border-radius: 20px;
}

/* Modern Header Styles */
.modern-header {
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
}

/* Header Top Bar */
.header-top-bar {
    background: linear-gradient(135deg, var(--dark-color) 0%, var(--accent-color) 100%);
    padding: 0.75rem 0;
    font-size: 0.95rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.header-contact-info {
    display: flex;
    gap: 2rem;
    align-items: center;
}

.contact-item {
    color: white;
    font-weight: 500;
    transition: all 0.3s ease;
    padding: 0.25rem 0;
}

.contact-item:hover {
    color: var(--light-color);
    transform: translateY(-1px);
}

.header-social-links {
    display: flex;
    justify-content: flex-end;
    gap: 1rem;
}

.social-link {
    width: 35px;
    height: 35px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-decoration: none;
    transition: all 0.3s ease;
}

.social-link:hover {
    background: white;
    color: var(--primary-color);
    transform: translateY(-2px);
    box-shadow: 0 3px 10px rgba(255, 255, 255, 0.3);
}

/* Main Navigation */
.modern-navbar {
    background: white;
    padding: 1rem 0;
    border-bottom: 1px solid #e9ecef;
    position: sticky;
    top: 0;
    z-index: 1000;
    transition: all 0.3s ease;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.navbar-nav {
    gap: 0.25rem;
}

.navbar-nav .nav-item {
    margin: 0 0.125rem;
}

.modern-brand {
    display: flex;
    align-items: center;
    gap: 1rem;
    text-decoration: none;
    color: var(--primary-color);
}

.brand-logo {
    position: relative;
}

.logo-img {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    object-fit: cover;
    transition: transform 0.3s ease;
    box-shadow: 0 2px 10px rgba(40, 167, 69, 0.2);
}

.modern-brand:hover .logo-img {
    transform: scale(1.1);
}

.brand-text {
    display: flex;
    flex-direction: column;
}

.brand-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-color);
    line-height: 1.2;
}

.brand-tagline {
    font-size: 0.9rem;
    color: #6c757d;
    font-style: italic;
}

/* Modern Toggler */
.modern-toggler {
    border: none;
    padding: 0.5rem;
    background: none;
    display: flex;
    flex-direction: column;
    gap: 3px;
}

.toggler-line {
    width: 25px;
    height: 3px;
    background: var(--primary-color);
    border-radius: 2px;
    transition: all 0.3s ease;
}

.modern-toggler:focus {
    box-shadow: none;
}

.modern-toggler[aria-expanded="true"] .toggler-line:nth-child(1) {
    transform: rotate(45deg) translate(6px, 6px);
}

.modern-toggler[aria-expanded="true"] .toggler-line:nth-child(2) {
    opacity: 0;
}

.modern-toggler[aria-expanded="true"] .toggler-line:nth-child(3) {
    transform: rotate(-45deg) translate(6px, -6px);
}

/* Modern Navigation Links */
.modern-nav-link {
    color: #495057;
    font-weight: 500;
    padding: 0.5rem 0.75rem;
    border-radius: 20px;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    text-decoration: none;
    position: relative;
    white-space: nowrap;
    font-size: 0.9rem;
}

.modern-nav-link i {
    font-size: 0.9rem;
    width: 16px;
    text-align: center;
}

.modern-nav-link:hover {
    color: var(--primary-color);
    background: linear-gradient(135deg, rgba(40, 167, 69, 0.1), rgba(32, 201, 151, 0.1));
    transform: translateY(-1px);
    box-shadow: 0 2px 8px rgba(40, 167, 69, 0.2);
}

.modern-nav-link.contact-btn {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    color: white;
    margin-left: 0.5rem;
    box-shadow: 0 2px 10px rgba(40, 167, 69, 0.2);
}

.modern-nav-link.contact-btn:hover {
    background: linear-gradient(135deg, var(--secondary-color) 0%, var(--primary-color) 100%);
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(40, 167, 69, 0.3);
}

/* Main Content */
.main-content {
    min-height: calc(100vh - 200px);
}

.page-title-section {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    padding: 2rem 0;
    margin-bottom: 2rem;
}

.page-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary-color);
    margin: 0;
}

/* Modern Footer Styles */
.modern-footer {
    background: linear-gradient(135deg, var(--dark-color) 0%, var(--accent-color) 100%);
    color: white;
    margin-top: 4rem;
}

.footer-main {
    padding: 4rem 0 2rem;
}

.footer-section {
    height: 100%;
}

/* Footer Logo and Brand */
.footer-logo {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.footer-logo-img {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    object-fit: cover;
    box-shadow: 0 2px 10px rgba(255, 255, 255, 0.2);
}

.footer-title {
    font-size: 1.3rem;
    font-weight: 700;
    margin: 0;
    color: white;
}

.footer-tagline {
    font-size: 0.9rem;
    margin: 0;
    opacity: 0.8;
    font-style: italic;
}

.footer-description {
    opacity: 0.9;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

/* Footer Social */
.footer-social {
    margin-top: 1.5rem;
}

.social-title {
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: white;
}

.social-links {
    display: flex;
    gap: 1rem;
}

.social-link-footer {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 1.2rem;
}

.social-link-footer.facebook {
    background: #3b5998;
}

.social-link-footer.twitter {
    background: #1da1f2;
}

.social-link-footer.instagram {
    background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
}

.social-link-footer.whatsapp {
    background: #25d366;
}

.social-link-footer:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

/* Footer Headings */
.footer-heading {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    color: white;
    display: flex;
    align-items: center;
}

/* Footer Links */
.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li {
    margin-bottom: 0.75rem;
}

.footer-link {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    font-size: 0.95rem;
}

.footer-link:hover {
    color: white;
    transform: translateX(5px);
}

.footer-link i {
    font-size: 0.8rem;
    opacity: 0.7;
}

/* Footer Contact */
.footer-contact {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.contact-item-footer {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.contact-icon-footer {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.1rem;
    flex-shrink: 0;
}

.contact-details-footer {
    display: flex;
    flex-direction: column;
}

.contact-label-footer {
    font-size: 0.85rem;
    opacity: 0.7;
    margin-bottom: 0.25rem;
}

.contact-value-footer {
    font-weight: 500;
    color: white;
}

/* Footer Bottom */
.footer-bottom {
    background: rgba(0, 0, 0, 0.2);
    padding: 1.5rem 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-copyright p {
    margin: 0;
    opacity: 0.8;
}

.footer-bottom-links {
    display: flex;
    justify-content: flex-end;
    gap: 2rem;
}

.footer-bottom-link {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.3s ease;
}

.footer-bottom-link:hover {
    color: white;
}

@media (max-width: 768px) {
    .hero-section {
        padding: 60px 0;
        min-height: 70vh;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-subtitle {
        font-size: 1.5rem;
    }
    
    .hero-description {
        font-size: 1rem;
    }
    
    .hero-title-secondary {
        font-size: 2rem;
    }
    
    .hero-subtitle-secondary {
        font-size: 1.3rem;
    }
    
    .committee-title {
        font-size: 1.8rem;
    }
    
    .goal-card,
    .project-card-modern,
    .whatsapp-card,
    .complaint-form-card,
    .mission-vision-card,
    .member-card,
    .contact-info-section,
    .contact-form-card {
        margin-bottom: 1.5rem;
    }
    
    .decoration-circle {
        display: none;
    }
    
    .leadership-card {
        flex-direction: column;
        text-align: center;
        gap: 0.5rem;
    }
    
    .accounts-features {
        justify-content: center;
        margin-top: 1rem;
    }
    
    .social-links {
        justify-content: center;
    }
}

/* Powered By Section */
.footer-powered-by {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    padding: 0.5rem 0;
}

.powered-by-logo {
    height: 32px;
    width: auto;
    opacity: 0.8;
    transition: all 0.3s ease;
}

.powered-by-logo:hover {
    opacity: 1;
    transform: scale(1.05);
}

.powered-by-text {
    color: #6c757d;
    font-size: 0.9rem;
    font-weight: 400;
}

.powered-by-text strong {
    color: var(--primary-color);
    font-weight: 600;
}

@media (max-width: 768px) {
    .footer-powered-by {
        margin-top: 1rem;
        order: 3;
    }
    
    .footer-copyright {
        text-align: center;
    }
    
    .footer-bottom-links {
        text-align: center;
        margin-top: 1rem;
        order: 4;
    }
}

/* Footer Enhancement with Ghartal Connect */
.footer-bottom {
    background: rgba(255, 255, 255, 0.05);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding: 15px 0;
}

.footer-bottom .row > div {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 40px;
}

.footer-bottom .row > div:first-child {
    justify-content: flex-start;
}

.footer-bottom .row > div:last-child {
    justify-content: flex-end;
}

.footer-powered {
    display: flex;
    align-items: center;
    gap: 8px;
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.9rem;
    transition: all 0.3s ease;
}

.footer-powered:hover {
    color: var(--primary-color);
    text-decoration: none;
}

.footer-powered img {
    height: 32px;
    width: auto;
    opacity: 0.9;
    transition: all 0.3s ease;
    filter: brightness(1.1);
}

.footer-powered:hover img {
    opacity: 1;
    transform: scale(1.05);
}

@media (max-width: 768px) {
    .footer-bottom .row > div {
        justify-content: center !important;
        margin-bottom: 10px;
    }
    
    .footer-bottom .row > div:last-child {
        margin-bottom: 0;
    }
}

/* Organizations Section Styles */
.organizations-section {
    background: linear-gradient(135deg, rgba(40, 167, 69, 0.02), rgba(32, 201, 151, 0.02));
    border-radius: 15px;
    padding: 2rem;
    border: 1px solid rgba(40, 167, 69, 0.1);
}

.logo-card {
    background: white;
    border-radius: 12px;
    padding: 1.5rem 1rem;
    text-align: center;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    border: 1px solid rgba(40, 167, 69, 0.1);
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.logo-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(40, 167, 69, 0.15);
    border-color: var(--primary-color);
}

.logo-container {
    width: 80px;
    height: 80px;
    margin: 0 auto 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(40, 167, 69, 0.05), rgba(32, 201, 151, 0.05));
    border-radius: 50%;
    padding: 10px;
    transition: all 0.3s ease;
}

.logo-card:hover .logo-container {
    background: linear-gradient(135deg, rgba(40, 167, 69, 0.1), rgba(32, 201, 151, 0.1));
    transform: scale(1.05);
}

.org-logo {
    width: 100%;
    height: 100%;
    object-fit: contain;
    border-radius: 50%;
    transition: all 0.3s ease;
}

.logo-title {
    font-size: 0.9rem;
    font-weight: 600;
    color: #333;
    margin: 0;
    line-height: 1.3;
}

/* AMAN Committee Notice Styles */
.aman-notice {
    margin-top: 2rem;
}

.notice-card {
    background: linear-gradient(135deg, rgba(40, 167, 69, 0.05), rgba(32, 201, 151, 0.03));
    border: 1px solid rgba(40, 167, 69, 0.2);
    border-radius: 12px;
    padding: 1.5rem;
    position: relative;
    overflow: hidden;
}

.notice-card::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    width: 4px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
}

.notice-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
}

.notice-icon i {
    font-size: 1.5rem;
    color: white;
}

.notice-title {
    color: var(--primary-color);
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.notice-text {
    color: #666;
    font-size: 0.95rem;
    line-height: 1.6;
}

/* Mobile Responsiveness for Organizations Section */
@media (max-width: 768px) {
    .organizations-section {
        padding: 1.5rem;
    }
    
    .logo-container {
        width: 60px;
        height: 60px;
    }
    
    .notice-card .row {
        text-align: center;
    }
    
    .notice-card .col-md-2,
    .notice-card .col-md-8,
    .notice-card .col-md-2 {
        margin-bottom: 1rem;
    }
    
    .notice-card .col-md-2:last-child {
        margin-bottom: 0;
    }
}

/* Login Button and User Dropdown Styles */
.login-btn {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: white !important;
    border-radius: 20px;
    padding: 6px 16px !important;
    transition: all 0.3s ease;
    border: 2px solid transparent;
    font-size: 0.9rem;
    font-weight: 600;
}

.login-btn:hover {
    background: linear-gradient(135deg, var(--accent-color), var(--primary-color));
    color: white !important;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(40, 167, 69, 0.3);
}

.dropdown-menu {
    border: none;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    border-radius: 12px;
    padding: 0.5rem 0;
    margin-top: 10px;
    min-width: 180px;
}

.user-dropdown {
    background: linear-gradient(135deg, rgba(40, 167, 69, 0.1), rgba(32, 201, 151, 0.1));
    border-radius: 20px;
    color: var(--primary-color) !important;
    font-weight: 600;
}

.dropdown-item {
    padding: 0.75rem 1.5rem;
    color: #333;
    transition: all 0.3s ease;
    border: none;
    background: transparent;
}

.dropdown-item:hover {
    background: linear-gradient(135deg, rgba(40, 167, 69, 0.1), rgba(32, 201, 151, 0.1));
    color: var(--primary-color);
    transform: translateX(5px);
}

.dropdown-divider {
    margin: 0.5rem 0;
    border-color: rgba(40, 167, 69, 0.1);
}

@media (max-width: 768px) {
    .login-btn {
        padding: 6px 16px !important;
        font-size: 0.9rem;
    }
    
    .modern-nav-link {
        padding: 0.4rem 0.6rem;
        font-size: 0.85rem;
    }
    
    .navbar-nav {
        gap: 0.125rem;
    }
    
    .navbar-nav .nav-item {
        margin: 0 0.0625rem;
    }
}

/* Login Page Styles */
.login-hero {
    min-height: 100vh;
    background: linear-gradient(135deg, rgba(40, 167, 69, 0.1), rgba(32, 201, 151, 0.1));
    display: flex;
    align-items: center;
    padding: 2rem 0;
}

.login-card {
    background: white;
    border-radius: 20px;
    padding: 3rem 2rem;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(40, 167, 69, 0.1);
    position: relative;
    overflow: hidden;
}

.login-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
}

.login-logo {
    width: 80px;
    height: 80px;
    margin: 0 auto;
    background: linear-gradient(135deg, rgba(40, 167, 69, 0.1), rgba(32, 201, 151, 0.1));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 15px;
}

.login-logo-img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    border-radius: 50%;
}

.login-title {
    color: var(--primary-color);
    font-weight: 700;
    margin-bottom: 0.5rem;
    font-size: 2rem;
}

.login-subtitle {
    color: #666;
    font-size: 1rem;
    margin-bottom: 0;
}

.login-form .form-label {
    font-weight: 600;
    color: #333;
    margin-bottom: 0.5rem;
}

.login-input {
    border: 2px solid #e9ecef;
    border-radius: 12px;
    padding: 12px 16px;
    font-size: 1rem;
    transition: all 0.3s ease;
    background: #f8f9fa;
}

.login-input:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 0.2rem rgba(40, 167, 69, 0.25);
    background: white;
}

.password-input-group {
    position: relative;
}

.password-toggle {
    position: absolute;
    right: 12px;
    top: 50%;
    transform: translateY(-50%);
    background: none;
    border: none;
    color: #666;
    cursor: pointer;
    padding: 5px;
    transition: color 0.3s ease;
}

.password-toggle:hover {
    color: var(--primary-color);
}

.login-form .btn-primary {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    border: none;
    border-radius: 12px;
    padding: 12px 24px;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(40, 167, 69, 0.3);
}

.login-form .btn-primary:hover {
    background: linear-gradient(135deg, var(--accent-color), var(--primary-color));
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(40, 167, 69, 0.4);
}

.login-footer {
    border-top: 1px solid #e9ecef;
    padding-top: 1.5rem;
}

/* Mobile Responsiveness for Login */
@media (max-width: 768px) {
    .login-hero {
        padding: 1rem 0;
    }
    
    .login-card {
        padding: 2rem 1.5rem;
        margin: 0 1rem;
    }
    
    .login-title {
        font-size: 1.75rem;
    }
    
    .login-logo {
        width: 60px;
        height: 60px;
        padding: 10px;
    }
}

/* Dashboard Styles */
.dashboard-hero {
    padding: 3rem 0;
    background: linear-gradient(135deg, rgba(40, 167, 69, 0.05), rgba(32, 201, 151, 0.05));
}

.dashboard-header {
    margin-bottom: 2rem;
    padding: 2rem;
    background: white;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
}

.dashboard-title {
    color: var(--primary-color);
    font-weight: 700;
    margin-bottom: 0.5rem;
    font-size: 2rem;
}

.dashboard-subtitle {
    color: #666;
    font-size: 1.1rem;
    margin: 0;
}

.dashboard-card {
    background: white;
    border-radius: 15px;
    padding: 2rem;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    height: 100%;
    text-align: center;
}

.dashboard-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.dashboard-card .card-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    color: white;
    font-size: 1.5rem;
}

.dashboard-card h5 {
    color: var(--primary-color);
    font-weight: 600;
    margin-bottom: 1rem;
}

.dashboard-card p {
    color: #666;
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.activity-list {
    max-height: 300px;
    overflow-y: auto;
}

/* Office Page Styles */
.office-hero {
    padding: 3rem 0;
    background: linear-gradient(135deg, rgba(40, 167, 69, 0.05), rgba(32, 201, 151, 0.05));
}

.office-header {
    margin-bottom: 2rem;
}

.office-title {
    color: var(--primary-color);
    font-weight: 700;
    margin-bottom: 0.5rem;
    font-size: 2.5rem;
}

.office-subtitle {
    color: #666;
    font-size: 1.2rem;
    margin: 0;
}

.camera-container {
    background: white;
    border-radius: 15px;
    padding: 2rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    margin-bottom: 2rem;
}

.camera-placeholder {
    text-align: center;
    padding: 3rem 2rem;
    border: 2px dashed #dee2e6;
    border-radius: 10px;
    background: #f8f9fa;
}

.camera-icon {
    width: 100px;
    height: 100px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    color: white;
    font-size: 2.5rem;
}

.camera-status {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    margin-top: 1rem;
}

.status-indicator {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    display: inline-block;
}

.status-indicator.online {
    background: #28a745;
    box-shadow: 0 0 10px rgba(40, 167, 69, 0.5);
}

.status-indicator.offline {
    background: #dc3545;
    box-shadow: 0 0 10px rgba(220, 53, 69, 0.5);
}

.status-text {
    font-weight: 600;
    color: #666;
}

.office-info {
    background: white;
    border-radius: 15px;
    padding: 2rem;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
}

.office-info h5 {
    color: var(--primary-color);
    font-weight: 600;
    margin-bottom: 1.5rem;
}

.info-item {
    padding: 0.75rem 0;
    border-bottom: 1px solid #f1f3f4;
}

.info-item:last-child {
    border-bottom: none;
}

/* Mobile Responsiveness for Dashboard and Office */
@media (max-width: 768px) {
    .dashboard-header {
        padding: 1.5rem;
    }
    
    .dashboard-title {
        font-size: 1.75rem;
    }
    
    .office-title {
        font-size: 2rem;
    }
    
    .camera-placeholder {
        padding: 2rem 1rem;
    }
    
    .camera-icon {
        width: 80px;
        height: 80px;
        font-size: 2rem;
    }
}

/* Management Pages Styles */
.causes-hero,
.relief-hero,
.expenses-hero,
.users-hero,
.email-hero,
.settings-hero {
    padding: 3rem 0;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: white;
}

.causes-header,
.relief-header,
.expenses-header,
.users-header,
.email-header,
.settings-header {
    text-align: center;
    margin-bottom: 2rem;
}

.causes-title,
.relief-title,
.expenses-title,
.users-title,
.email-title,
.settings-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.causes-subtitle,
.relief-subtitle,
.expenses-subtitle,
.users-subtitle,
.email-subtitle,
.settings-subtitle {
    font-size: 1.1rem;
    opacity: 0.9;
}

/* Dashboard Cards */
.dashboard-card {
    background: white;
    border-radius: 15px;
    padding: 1.5rem;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    height: 100%;
    border: 1px solid #e9ecef;
}

.dashboard-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

.dashboard-card .card-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
    color: white;
    font-size: 1.5rem;
}

.dashboard-card h5 {
    color: var(--primary-color);
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.dashboard-card p {
    color: #6c757d;
    margin-bottom: 1rem;
}

/* Table Styles */
.table-responsive {
    border-radius: 10px;
    overflow: hidden;
}

.table {
    margin-bottom: 0;
}

.table th {
    background: #f8f9fa;
    border-bottom: 2px solid #dee2e6;
    font-weight: 600;
    color: var(--primary-color);
}

.table td {
    vertical-align: middle;
}

/* Modal Styles */
.modal-content {
    border-radius: 15px;
    border: none;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.modal-header {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: white;
    border-radius: 15px 15px 0 0;
}

.modal-header .btn-close {
    filter: invert(1);
}

/* List Group Styles */
.list-group-item {
    border: 1px solid #e9ecef;
    transition: all 0.3s ease;
    cursor: pointer;
}

.list-group-item:hover {
    background: #f8f9fa;
    transform: translateX(5px);
}

.list-group-item-action:focus {
    background: var(--primary-color);
    color: white;
}

/* Tab Styles */
.nav-tabs .nav-link {
    border: none;
    color: #6c757d;
    font-weight: 500;
    padding: 0.75rem 1.5rem;
    border-radius: 0;
}

.nav-tabs .nav-link.active {
    color: var(--primary-color);
    background: white;
    border-bottom: 3px solid var(--primary-color);
}

.nav-tabs .nav-link:hover {
    border-color: transparent;
    color: var(--primary-color);
}

/* Notable Works Card Styles */
.notable-work-card {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    height: 100%;
}

.notable-work-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.work-image-wrapper {
    position: relative;
    overflow: hidden;
    height: 250px;
}

.work-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.notable-work-card:hover .work-image {
    transform: scale(1.05);
}

.work-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.3));
    display: flex;
    align-items: flex-start;
    justify-content: flex-end;
    padding: 15px;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.notable-work-card:hover .work-overlay {
    opacity: 1;
}

.work-logo-wrapper {
    position: absolute;
    bottom: 15px;
    right: 15px;
    width: 50px;
    height: 50px;
    background: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.2);
}

.work-logo-modern {
    width: 30px;
    height: 30px;
    object-fit: contain;
}

.work-content {
    padding: 25px;
}

.work-title {
    font-size: 1.4rem;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 15px;
    line-height: 1.3;
}

.work-author {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
    font-size: 0.9rem;
    color: #6c757d;
}

.author-label {
    font-weight: 500;
    margin-right: 5px;
}

.author-name {
    font-weight: 600;
    color: var(--primary-color);
}

.work-description {
    color: #6c757d;
    line-height: 1.6;
    margin-bottom: 20px;
}

.work-meta {
    display: flex;
    align-items: center;
    color: #6c757d;
    font-size: 0.85rem;
    margin-bottom: 20px;
}

.completion-date {
    font-weight: 500;
}

.work-footer {
    padding: 0 25px 25px;
}

/* Work Details Page Styles */
.work-details-hero {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    position: relative;
    overflow: hidden;
}

.work-details-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="workPattern" width="40" height="40" patternUnits="userSpaceOnUse"><circle cx="20" cy="20" r="2" fill="%23ffffff" opacity="0.1"/><circle cx="5" cy="5" r="1" fill="%23ffffff" opacity="0.1"/><circle cx="35" cy="35" r="1" fill="%23ffffff" opacity="0.1"/></pattern></defs><rect width="100" height="100" fill="url(%23workPattern)"/></svg>');
    pointer-events: none;
}

.work-details-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    position: relative;
    z-index: 1;
}

.work-media-section {
    position: relative;
}

.work-detail-image {
    width: 100%;
    height: 400px;
    object-fit: cover;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease;
}

.work-detail-image:hover {
    transform: scale(1.02);
}

.work-image-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0.1));
    border-radius: 20px;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.work-main-image:hover .work-image-overlay {
    opacity: 1;
}

.work-logo-overlay {
    position: absolute;
    bottom: 20px;
    right: 20px;
    width: 80px;
    height: 80px;
    background: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s ease;
}

.work-logo-overlay:hover {
    transform: scale(1.1);
}

.work-detail-logo {
    width: 50px;
    height: 50px;
    object-fit: contain;
}

.work-info-card {
    background: white;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    margin-top: 30px;
    transition: all 0.3s ease;
    position: relative;
}

.work-info-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
}

.work-info-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.work-info-header {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: white;
    padding: 25px 30px;
    position: relative;
}

.work-info-header::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: rgba(255, 255, 255, 0.2);
}

.work-info-title {
    font-size: 1.3rem;
    font-weight: 600;
    margin: 0;
    display: flex;
    align-items: center;
    color: white !important;
}

.work-info-title i {
    color: white !important;
}

.work-info-body {
    padding: 30px;
}

.work-info-items {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.work-info-item {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 15px;
    background: #f8f9fa;
    border-radius: 12px;
    transition: all 0.3s ease;
}

.work-info-item:hover {
    background: #e9ecef;
    transform: translateX(5px);
}

.info-icon {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    background: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.work-info-item:hover .info-icon {
    transform: scale(1.1);
}

.info-content {
    flex: 1;
}

.info-label {
    font-size: 0.9rem;
    color: #6c757d;
    font-weight: 500;
    margin-bottom: 8px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.info-value {
    font-size: 1.1rem;
    font-weight: 600;
    color: #2c3e50;
}

.work-content-section {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.work-content-card {
    background: white;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    transition: all 0.3s ease;
    position: relative;
}

.work-content-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
}

.work-content-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.work-content-header {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: white;
    padding: 25px 30px;
    position: relative;
}

.work-content-header::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: rgba(255, 255, 255, 0.2);
}

.work-content-title {
    font-size: 1.3rem;
    font-weight: 600;
    margin: 0;
    display: flex;
    align-items: center;
    color: white !important;
}

.work-content-title i {
    color: white !important;
}

.work-content-body {
    padding: 30px;
}

.work-description-text {
    color: #6c757d;
    line-height: 1.8;
    font-size: 1.1rem;
    text-align: justify;
}

.achievement-highlights {
    background: white;
    border-radius: 20px;
    padding: 30px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    position: relative;
    overflow: hidden;
}

.achievement-highlights::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(135deg, #28a745, #20c997);
}

.highlights-title {
    font-size: 1.3rem;
    font-weight: 600;
    color: #2c3e50;
    margin-bottom: 25px;
    display: flex;
    align-items: center;
}

.highlights-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
}

.highlight-item {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 20px;
    background: linear-gradient(135deg, #f8f9fa, #e9ecef);
    border-radius: 12px;
    transition: all 0.3s ease;
    border-left: 4px solid var(--primary-color);
}

.highlight-item:hover {
    background: linear-gradient(135deg, #e9ecef, #dee2e6);
    transform: translateX(5px);
}

.highlight-icon {
    font-size: 1.3rem;
    color: var(--primary-color);
}

.highlight-text {
    font-weight: 500;
    color: #2c3e50;
    font-size: 1rem;
}

.work-back-navigation {
    margin-top: 40px;
    text-align: center;
}

.work-back-navigation .btn {
    padding: 15px 40px;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 12px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.work-back-navigation .btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

/* Responsive Design for Notable Works */
@media (max-width: 768px) {
    .work-details-title {
        font-size: 2rem;
    }
    
    .work-detail-image {
        height: 300px;
    }
    
    .work-logo-overlay {
        width: 60px;
        height: 60px;
        bottom: 15px;
        right: 15px;
    }
    
    .work-detail-logo {
        width: 35px;
        height: 35px;
    }
    
    .highlights-grid {
        grid-template-columns: 1fr;
    }
}

/* About Us Page Styles */
.about-hero-section {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    position: relative;
    overflow: hidden;
}

.about-hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="aboutPattern" width="50" height="50" patternUnits="userSpaceOnUse"><circle cx="25" cy="25" r="2" fill="%23ffffff" opacity="0.1"/><circle cx="10" cy="10" r="1" fill="%23ffffff" opacity="0.1"/><circle cx="40" cy="40" r="1" fill="%23ffffff" opacity="0.1"/></pattern></defs><rect width="100" height="100" fill="url(%23aboutPattern)"/></svg>');
    pointer-events: none;
}

.hero-title-secondary {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 1rem;
    position: relative;
    z-index: 1;
}

.hero-subtitle-secondary {
    font-size: 1.5rem;
    font-weight: 400;
    opacity: 0.9;
    position: relative;
    z-index: 1;
}

.about-image-wrapper {
    position: relative;
    z-index: 1;
}

.image-container {
    position: relative;
    display: inline-block;
}

.about-logo-image {
    width: 300px;
    height: 300px;
    object-fit: cover;
    border-radius: 50%;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
    border: 5px solid rgba(255, 255, 255, 0.2);
}

.image-decoration {
    position: absolute;
    top: -20px;
    left: -20px;
    right: -20px;
    bottom: -20px;
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    animation: rotate 20s linear infinite;
}

@keyframes rotate {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

.quote-wrapper-modern {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    padding: 25px;
    border-left: 4px solid rgba(255, 255, 255, 0.5);
    margin-top: 30px;
}

/* Mission and Vision Cards */
.mission-vision-section {
    background: #f8f9fa;
    position: relative;
}

.mission-vision-card {
    background: white;
    border-radius: 20px;
    padding: 40px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    height: 100%;
    position: relative;
    overflow: hidden;
}

.mission-vision-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
}

.mission-vision-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.card-icon-wrapper {
    text-align: center;
    margin-bottom: 25px;
}

.card-icon {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
    transition: all 0.3s ease;
}

.mission-vision-card:hover .card-icon {
    transform: scale(1.1);
}

.card-icon i {
    font-size: 2rem;
}

.card-content {
    text-align: center;
}

.card-title-modern {
    font-size: 1.8rem;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 20px;
}

.card-text-modern {
    color: #6c757d;
    line-height: 1.8;
    font-size: 1rem;
    margin-bottom: 15px;
}

.vision-list {
    list-style: none;
    padding: 0;
    text-align: left;
}

.vision-list li {
    padding: 8px 0;
    color: #6c757d;
    font-size: 1rem;
    display: flex;
    align-items: center;
}

.vision-list li i {
    font-size: 1.1rem;
    margin-right: 10px;
}

/* Goals Section */
.bg-light {
    background: #f8f9fa !important;
}

.bg-light .card {
    border: none;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    background: white;
}

.bg-light .card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.bg-light .card .display-4 {
    font-size: 3rem;
    margin-bottom: 1rem;
    transition: all 0.3s ease;
}

.bg-light .card:hover .display-4 {
    transform: scale(1.1);
    color: var(--primary-color) !important;
}

.bg-light .card .h4 {
    color: #2c3e50;
    font-weight: 600;
    margin-bottom: 15px;
}

.bg-light .card p {
    color: #6c757d;
    line-height: 1.6;
    margin-bottom: 0;
}

/* Join Us Section */
.join-us-section {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    position: relative;
    overflow: hidden;
}

.join-us-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="joinPattern" width="60" height="60" patternUnits="userSpaceOnUse"><circle cx="30" cy="30" r="3" fill="%23ffffff" opacity="0.1"/><circle cx="15" cy="15" r="1" fill="%23ffffff" opacity="0.1"/><circle cx="45" cy="45" r="1" fill="%23ffffff" opacity="0.1"/></pattern></defs><rect width="100" height="100" fill="url(%23joinPattern)"/></svg>');
    pointer-events: none;
}

.join-us-card {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 25px;
    padding: 50px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    position: relative;
    z-index: 1;
}

.join-icon-wrapper {
    text-align: center;
}

.join-icon-bg {
    width: 100px;
    height: 100px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
    transition: all 0.3s ease;
}

.join-us-card:hover .join-icon-bg {
    transform: scale(1.1);
    background: rgba(255, 255, 255, 0.3);
}

.join-us-card .section-title {
    color: white;
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
}

.join-us-card .lead {
    font-size: 1.2rem;
    opacity: 0.9;
    margin-bottom: 1.5rem;
}

.join-us-card p {
    font-size: 1.1rem;
    opacity: 0.8;
    margin-bottom: 2rem;
}

/* Responsive Design for About Us */
@media (max-width: 768px) {
    .hero-title-secondary {
        font-size: 2.2rem;
    }
    
    .hero-subtitle-secondary {
        font-size: 1.2rem;
    }
    
    .about-logo-image {
        width: 250px;
        height: 250px;
    }
    
    .mission-vision-card {
        padding: 30px;
        margin-bottom: 30px;
    }
    
    .card-icon {
        width: 60px;
        height: 60px;
    }
    
    .card-icon i {
        font-size: 1.5rem;
    }
    
    .card-title-modern {
        font-size: 1.5rem;
    }
    
    .join-us-card {
        padding: 30px;
    }
    
    .join-us-card .section-title {
        font-size: 2rem;
    }
    
    .bg-light .card .display-4 {
        font-size: 2.5rem;
    }
}

/* Committee Page Styles */
.committee-hero-section {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    position: relative;
    overflow: hidden;
}

.committee-hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="committeePattern" width="50" height="50" patternUnits="userSpaceOnUse"><circle cx="25" cy="25" r="2" fill="%23ffffff" opacity="0.1"/><circle cx="10" cy="10" r="1" fill="%23ffffff" opacity="0.1"/><circle cx="40" cy="40" r="1" fill="%23ffffff" opacity="0.1"/></pattern></defs><rect width="100" height="100" fill="url(%23committeePattern)"/></svg>');
    pointer-events: none;
}

.committee-hero-section .section-title {
    color: white;
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 1rem;
    position: relative;
    z-index: 1;
}

.committee-hero-section .section-subtitle {
    color: white;
    font-size: 1.2rem;
    position: relative;
    z-index: 1;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

/* Committee Image Section */
.committee-image-section {
    position: relative;
    text-align: center;
    padding: 20px;
}

.committee-main-image {
    position: relative;
    display: inline-block;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease;
    max-width: 100%;
    width: 100%;
    aspect-ratio: 1;
}

.committee-main-image:hover {
    transform: scale(1.02);
}

.committee-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
}

.image-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0.1));
    opacity: 0;
    transition: opacity 0.3s ease;
}

.committee-main-image:hover .image-overlay {
    opacity: 1;
}

.committee-logo-wrapper {
    margin-top: 20px;
}

.committee-logo {
    width: 80px;
    height: 80px;
    object-fit: contain;
    border-radius: 50%;
    background: white;
    padding: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.2);
}

/* Committee Info Section */
.committee-info {
    padding: 20px 0;
}

.committee-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 20px;
    line-height: 1.2;
}

.committee-description {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #6c757d;
    text-align: justify;
}

/* Leadership Cards */
.leadership-card {
    background: white;
    border-radius: 15px;
    padding: 25px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 20px;
    height: 100%;
}

.leadership-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.leadership-icon {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: linear-gradient(135deg, #f8f9fa, #e9ecef);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    flex-shrink: 0;
}

.leadership-content {
    flex: 1;
}

.leadership-title {
    font-size: 1rem;
    font-weight: 600;
    color: #6c757d;
    margin-bottom: 8px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.leadership-name {
    font-size: 1.2rem;
    font-weight: 700;
    color: #2c3e50;
    margin: 0;
}

/* Committee Action */
.committee-action {
    margin-top: 30px;
}

.btn-whatsapp {
    background: linear-gradient(135deg, #25d366, #128c7e);
    border: none;
    color: white;
    font-weight: 600;
    border-radius: 12px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.3);
}

.btn-whatsapp:hover {
    background: linear-gradient(135deg, #128c7e, #25d366);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.4);
    color: white;
}

/* Members Section */
.members-section {
    margin-top: 60px;
    padding-top: 40px;
    border-top: 1px solid #e9ecef;
}

.member-card {
    background: white;
    border-radius: 20px;
    padding: 30px 20px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.member-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
}

.member-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.member-avatar {
    margin-bottom: 20px;
}

.avatar-placeholder {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
    color: white;
    font-size: 2rem;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
}

.member-card:hover .avatar-placeholder {
    transform: scale(1.1);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
}

.member-info {
    text-align: center;
}

.member-name {
    font-size: 1.3rem;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 8px;
    line-height: 1.3;
}

.member-designation {
    font-size: 0.95rem;
    color: var(--primary-color);
    font-weight: 600;
    margin-bottom: 15px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.member-contact {
    margin-top: 15px;
}

.contact-link {
    color: #6c757d;
    text-decoration: none;
    font-size: 0.9rem;
    display: inline-flex;
    align-items: center;
    padding: 8px 15px;
    background: #f8f9fa;
    border-radius: 20px;
    transition: all 0.3s ease;
}

.contact-link:hover {
    color: var(--primary-color);
    background: #e9ecef;
    transform: translateY(-2px);
}

/* No Members Found */
.no-members-found {
    text-align: center;
    padding: 60px 20px;
    background: #f8f9fa;
    border-radius: 20px;
    margin-top: 40px;
}

.no-members-found i {
    color: #dee2e6;
    margin-bottom: 20px;
}

.no-members-found h4 {
    color: #6c757d;
    margin-bottom: 10px;
}

.no-members-found p {
    color: #adb5bd;
    margin: 0;
}

/* Responsive Design for Committee */
@media (max-width: 768px) {
    .committee-hero-section .section-title {
        font-size: 2.2rem;
    }
    
    .committee-title {
        font-size: 2rem;
    }
    
    .committee-image-section {
        padding: 10px;
        margin-bottom: 30px;
    }
    
    .committee-main-image {
        max-width: 300px;
        width: 100%;
    }
    
    .leadership-card {
        flex-direction: column;
        text-align: center;
        gap: 15px;
        margin-bottom: 20px;
    }
    
    .leadership-icon {
        width: 50px;
        height: 50px;
        font-size: 1.2rem;
    }
    
    .member-card {
        padding: 25px 15px;
        margin-bottom: 20px;
    }
    
    .avatar-placeholder {
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
    }
    
    .member-name {
        font-size: 1.1rem;
    }
}

@media (max-width: 576px) {
    .committee-image-section {
        padding: 5px;
    }
    
    .committee-main-image {
        max-width: 250px;
    }
    
    .committee-logo {
        width: 60px;
        height: 60px;
        padding: 10px;
    }
}

/* Accounts Page Styles */
.accounts-hero-section {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    position: relative;
    overflow: hidden;
}

.accounts-hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="accountsPattern" width="60" height="60" patternUnits="userSpaceOnUse"><circle cx="30" cy="30" r="2" fill="%23ffffff" opacity="0.1"/><circle cx="15" cy="15" r="1" fill="%23ffffff" opacity="0.1"/><circle cx="45" cy="45" r="1" fill="%23ffffff" opacity="0.1"/></pattern></defs><rect width="100" height="100" fill="url(%23accountsPattern)"/></svg>');
    pointer-events: none;
}

.accounts-hero-section .section-title {
    color: white;
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 1rem;
    position: relative;
    z-index: 1;
}

.accounts-hero-section .section-subtitle {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.2rem;
    position: relative;
    z-index: 1;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

/* Accounts Card */
.accounts-card {
    background: white;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    position: relative;
}

.accounts-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
}

.accounts-header {
    background: linear-gradient(135deg, #f8f9fa, #e9ecef);
    padding: 30px;
    border-bottom: 1px solid #dee2e6;
}

.accounts-header h3 {
    color: #2c3e50;
    font-weight: 700;
    font-size: 1.5rem;
    margin-bottom: 10px;
}

.accounts-header p {
    color: #6c757d;
    font-size: 1rem;
    margin: 0;
}

.accounts-features {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
    justify-content: flex-end;
}

.feature-badge {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: white;
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    box-shadow: 0 2px 8px rgba(102, 126, 234, 0.3);
    transition: all 0.3s ease;
}

.feature-badge:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(102, 126, 234, 0.4);
}

.accounts-content {
    padding: 40px;
}

/* Organizations Section */
.organizations-section {
    margin-bottom: 40px;
}

.organizations-section h4 {
    color: #2c3e50;
    font-weight: 700;
    font-size: 1.3rem;
    margin-bottom: 15px;
}

.organizations-section p {
    color: #6c757d;
    font-size: 1rem;
    margin-bottom: 0;
}

.logo-card {
    background: white;
    border-radius: 15px;
    padding: 25px 20px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    text-align: center;
    height: 100%;
    border: 2px solid transparent;
}

.logo-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
    border-color: var(--primary-color);
}

.logo-container {
    width: 80px;
    height: 80px;
    margin: 0 auto 20px;
    background: linear-gradient(135deg, #f8f9fa, #e9ecef);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.logo-card:hover .logo-container {
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.1), rgba(118, 75, 162, 0.1));
    transform: scale(1.1);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
}

.org-logo {
    width: 50px;
    height: 50px;
    object-fit: contain;
    transition: all 0.3s ease;
}

.logo-card:hover .org-logo {
    transform: scale(1.1);
}

.logo-title {
    color: #2c3e50;
    font-weight: 600;
    font-size: 0.95rem;
    margin: 0;
    line-height: 1.3;
}

/* Google Sheets iframe */
.ratio {
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    margin-bottom: 30px;
}

.ratio iframe {
    border: none;
    border-radius: 15px;
}

/* AMAN Committee Notice */
.aman-notice {
    margin-top: 40px;
    padding-top: 30px;
    border-top: 2px solid #e9ecef;
}

.notice-card {
    background: linear-gradient(135deg, rgba(40, 167, 69, 0.05), rgba(32, 201, 151, 0.03));
    border: 2px solid rgba(40, 167, 69, 0.2);
    border-radius: 15px;
    padding: 25px;
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
}

.notice-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background: linear-gradient(135deg, #28a745, #20c997);
}

.notice-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(40, 167, 69, 0.15);
    border-color: rgba(40, 167, 69, 0.3);
}

.notice-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #28a745, #20c997);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
    color: white;
    font-size: 1.5rem;
    box-shadow: 0 5px 15px rgba(40, 167, 69, 0.3);
    transition: all 0.3s ease;
}

.notice-card:hover .notice-icon {
    transform: scale(1.1);
    box-shadow: 0 8px 25px rgba(40, 167, 69, 0.4);
}

.notice-title {
    color: #2c3e50;
    font-weight: 700;
    font-size: 1.2rem;
    margin-bottom: 10px;
}

.notice-text {
    color: #6c757d;
    font-size: 1rem;
    line-height: 1.6;
    margin: 0;
}

.notice-card .btn {
    border-radius: 8px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.notice-card .btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 123, 255, 0.3);
}

/* Responsive Design for Accounts */
@media (max-width: 768px) {
    .accounts-hero-section .section-title {
        font-size: 2.2rem;
    }
    
    .accounts-header {
        padding: 20px;
    }
    
    .accounts-content {
        padding: 25px;
    }
    
    .accounts-features {
        justify-content: center;
        margin-top: 15px;
    }
    
    .feature-badge {
        font-size: 0.8rem;
        padding: 6px 12px;
    }
    
    .logo-card {
        padding: 20px 15px;
        margin-bottom: 20px;
    }
    
    .logo-container {
        width: 60px;
        height: 60px;
        margin-bottom: 15px;
    }
    
    .org-logo {
        width: 35px;
        height: 35px;
    }
    
    .logo-title {
        font-size: 0.85rem;
    }
    
    .notice-card {
        padding: 20px;
    }
    
    .notice-card .row {
        text-align: center;
    }
    
    .notice-card .col-md-2,
    .notice-card .col-md-8 {
        margin-bottom: 15px;
    }
    
    .notice-icon {
        width: 50px;
        height: 50px;
        font-size: 1.2rem;
    }
    
    .notice-title {
        font-size: 1.1rem;
    }
    
    .notice-text {
        font-size: 0.9rem;
    }
}

/* Projected Data Slider Styles */
.projected-data-slider {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 20px;
    padding: 30px;
    color: white;
    position: relative;
    overflow: hidden;
    box-shadow: 0 15px 40px rgba(102, 126, 234, 0.3);
    margin-bottom: 30px;
}

.projected-data-slider::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="projectedPattern" width="40" height="40" patternUnits="userSpaceOnUse"><circle cx="20" cy="20" r="1.5" fill="%23ffffff" opacity="0.1"/><circle cx="10" cy="10" r="0.8" fill="%23ffffff" opacity="0.1"/><circle cx="30" cy="30" r="0.8" fill="%23ffffff" opacity="0.1"/></pattern></defs><rect width="100" height="100" fill="url(%23projectedPattern)"/></svg>');
    pointer-events: none;
}

.slider-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 25px;
    position: relative;
    z-index: 1;
}

.slider-title {
    color: white;
    font-size: 1.5rem;
    font-weight: 700;
    margin: 0;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.year-progress-info {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.progress-percentage {
    font-size: 1.8rem;
    font-weight: 800;
    color: #ffd700;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
    line-height: 1;
}

.progress-label {
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.8);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-top: 4px;
}

.sheets-error {
    display: flex;
    align-items: center;
    background: rgba(220, 53, 69, 0.2);
    color: #ff6b6b;
    padding: 8px 16px;
    border-radius: 8px;
    font-size: 0.9rem;
    font-weight: 600;
    border: 1px solid rgba(220, 53, 69, 0.3);
    backdrop-filter: blur(10px);
}

.slider-container {
    position: relative;
    z-index: 1;
}

.slider-track {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    padding: 25px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    margin-bottom: 20px;
    position: relative;
}

.slider-left,
.slider-right {
    text-align: center;
    flex: 1;
    padding: 0 20px;
}

.slider-center {
    text-align: center;
    flex: 2;
    padding: 0 30px;
    position: relative;
}

.slider-center::before {
    display: none;
}

.date-label {
    font-size: 0.9rem;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 8px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.date-value {
    font-size: 1.1rem;
    font-weight: 700;
    color: white;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.amount-display {
    background: rgba(255, 255, 255, 0.15);
    border-radius: 15px;
    padding: 20px;
    backdrop-filter: blur(10px);
    border: 2px solid rgba(255, 255, 255, 0.3);
    position: relative;
    overflow: hidden;
}

.amount-display::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, #ffd700, #ffed4e);
}

.amount-label {
    font-size: 0.9rem;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 8px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.amount-value {
    font-size: 2.2rem;
    font-weight: 800;
    color: white;
    text-shadow: 0 3px 6px rgba(0, 0, 0, 0.3);
    margin-bottom: 5px;
    line-height: 1.2;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.currency-symbol {
    font-size: 1.8rem;
    font-weight: 700;
    color: #ffd700;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.amount-subtitle {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.7);
    font-weight: 500;
}

.progress-container {
    position: relative;
}

.progress-bar {
    height: 12px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 6px;
    overflow: visible;
    position: relative;
    margin: 8px 0;
}

.progress-fill {
    height: 100%;
    background: linear-gradient(90deg, #ffd700, #ffed4e, #ffd700);
    border-radius: 6px;
    position: relative;
    animation: shimmer 2s infinite;
}

.progress-fill::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
    animation: progressShimmer 3s infinite;
}

@keyframes shimmer {
    0% { background-position: -200% 0; }
    100% { background-position: 200% 0; }
}

@keyframes progressShimmer {
    0% { transform: translateX(-100%); }
    100% { transform: translateX(100%); }
}

.progress-labels {
    display: flex;
    justify-content: space-between;
    margin-top: 8px;
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.7);
    font-weight: 500;
}

.progress-today {
    position: absolute;
    top: -12px;
    transform: translateX(-50%);
    z-index: 2;
}

.today-marker {
    width: 16px;
    height: 16px;
    background: #ffd700;
    border: 3px solid white;
    border-radius: 50%;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
    margin: 0 auto 4px;
    animation: pulse 2s infinite;
}

.today-label {
    font-size: 0.7rem;
    color: white;
    font-weight: 600;
    text-align: center;
    background: rgba(0, 0, 0, 0.6);
    padding: 2px 6px;
    border-radius: 4px;
    white-space: nowrap;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.5);
}

@keyframes pulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.1); }
    100% { transform: scale(1); }
}

/* Responsive Design for Projected Data Slider */
@media (max-width: 768px) {
    .projected-data-slider {
        padding: 20px;
        margin-bottom: 20px;
    }
    
    .slider-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 15px;
    }
    
    .slider-title {
        font-size: 1.3rem;
    }
    
    .year-progress-info {
        margin-top: 10px;
    }
    
    .progress-percentage {
        font-size: 1.5rem;
    }
    
    .progress-label {
        font-size: 0.7rem;
    }
    
    .slider-track {
        flex-direction: column;
        gap: 20px;
        padding: 20px;
    }
    
    .slider-center::before {
        display: none;
    }
    
    .slider-left,
    .slider-right,
    .slider-center {
        flex: none;
        padding: 0;
    }
    
    .amount-value {
        font-size: 1.8rem;
    }
    
    .currency-symbol {
        font-size: 1.4rem;
    }
    
    .date-value {
        font-size: 1rem;
    }
}

/* Financial Comparison Sliders */
.comparison-sliders {
    background: white;
    border-radius: 20px;
    padding: 20px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    margin-bottom: 30px;
}

.comparison-title {
    color: #2c3e50;
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 20px;
    text-align: center;
}

.comparison-slider {
    margin-bottom: 15px;
    padding: 15px;
    border-radius: 12px;
    background: linear-gradient(135deg, #f8f9fa, #e9ecef);
    border: 1px solid #dee2e6;
    transition: all 0.3s ease;
}

.comparison-slider:hover {
    transform: translateY(-1px);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
}

.comparison-slider:last-child {
    margin-bottom: 0;
}

/* Projected Slider */
.projected-slider {
    border-left: 4px solid #28a745;
}

.projected-slider .progress-fill {
    background: linear-gradient(90deg, #28a745, #20c997);
}

/* Confirmed Slider */
.confirmed-slider {
    border-left: 4px solid #007bff;
}

.confirmed-slider .progress-fill {
    background: linear-gradient(90deg, #007bff, #0056b3);
}

/* Received Slider */
.received-slider {
    border-left: 4px solid #ffc107;
}

.received-slider .progress-fill {
    background: linear-gradient(90deg, #ffc107, #e0a800);
}

.comparison-slider .slider-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 15px;
}

.slider-info h5 {
    color: #2c3e50;
    font-size: 1.1rem;
    font-weight: 700;
    margin: 0 0 5px 0;
}

.slider-info p {
    color: #6c757d;
    font-size: 0.9rem;
    margin: 0;
}

.comparison-slider .amount-display {
    background: rgba(255, 255, 255, 0.8);
    padding: 8px 16px;
    border-radius: 8px;
    border: 1px solid rgba(0, 0, 0, 0.1);
}

.comparison-slider .amount-value {
    font-size: 1.2rem;
    font-weight: 700;
    color: #2c3e50;
    margin: 0;
}

.percentage-display {
    font-size: 0.85rem;
    font-weight: 500;
    color: #7f8c8d;
    margin-top: 4px;
    text-align: center;
    background: rgba(255, 255, 255, 0.9);
    padding: 3px 8px;
    border-radius: 12px;
    display: inline-block;
    min-width: 40px;
    border: 1px solid rgba(0, 0, 0, 0.1);
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}

/* Compact Financial Sliders */
.compact-financial-sliders {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 15px;
    padding: 20px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.sliders-title {
    color: white;
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 20px;
    text-align: center;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.sliders-container {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.compact-slider {
    background: rgba(255, 255, 255, 0.95);
    border-radius: 10px;
    padding: 12px 15px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.compact-slider:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.slider-label {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 8px;
}

.slider-name {
    font-weight: 600;
    font-size: 0.9rem;
    color: #2c3e50;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.slider-amount {
    font-weight: 700;
    font-size: 1rem;
    color: #2c3e50;
}

.slider-percentage {
    font-size: 0.8rem;
    font-weight: 600;
    background: rgba(52, 152, 219, 0.1);
    color: #3498db;
    padding: 2px 8px;
    border-radius: 10px;
    min-width: 35px;
    text-align: center;
}

.slider-bar {
    height: 8px;
    background: rgba(0, 0, 0, 0.1);
    border-radius: 4px;
    overflow: hidden;
    position: relative;
}

.compact-slider .progress-fill {
    height: 100%;
    border-radius: 4px;
    transition: width 0.8s ease;
    position: relative;
}

.compact-slider.projected-slider .progress-fill {
    background: linear-gradient(90deg, #27ae60, #2ecc71);
}

.compact-slider.confirmed-slider .progress-fill {
    background: linear-gradient(90deg, #f39c12, #e67e22);
}

.compact-slider.received-slider .progress-fill {
    background: linear-gradient(90deg, #3498db, #2980b9);
}

/* Responsive Design */
@media (max-width: 768px) {
    .compact-financial-sliders {
        padding: 15px;
    }
    
    .sliders-title {
        font-size: 1.1rem;
        margin-bottom: 15px;
    }
    
    .compact-slider {
        padding: 10px 12px;
    }
    
    .slider-label {
        flex-direction: column;
        align-items: flex-start;
        gap: 5px;
    }
    
    .slider-amount {
        font-size: 0.9rem;
    }
    
    .slider-percentage {
        align-self: flex-end;
    }
}

/* User Details Table */
.user-details-table {
    background: white;
    border-radius: 12px;
    padding: 20px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.user-details-table h6 {
    color: #2c3e50;
    font-weight: 600;
    margin-bottom: 20px;
    font-size: 1.1rem;
    border-bottom: 2px solid #3498db;
    padding-bottom: 10px;
}

.user-details-table .table {
    margin-bottom: 0;
    border: none;
}

.user-details-table .table thead th {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    font-weight: 600;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    border: none;
    padding: 15px 12px;
}

.user-details-table .table tbody tr {
    border-bottom: 1px solid #f8f9fa;
    transition: all 0.3s ease;
}

.user-details-table .table tbody tr:hover {
    background-color: #f8f9fa;
    transform: translateY(-1px);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.user-details-table .table tbody td {
    padding: 15px 12px;
    vertical-align: middle;
    border: none;
}

.user-details-table .table tfoot tr {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    border-top: 2px solid #dee2e6;
}

.user-details-table .table tfoot td {
    padding: 15px 12px;
    font-weight: 600;
    border: none;
}

.user-info {
    display: flex;
    align-items: center;
    gap: 10px;
}

.user-avatar {
    width: 35px;
    height: 35px;
    background: linear-gradient(135deg, #3498db, #2980b9);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 0.9rem;
}

.user-name {
    font-weight: 500;
    color: #2c3e50;
    font-size: 0.95rem;
}

.amount {
    font-weight: 600;
    font-size: 0.9rem;
}

.amount.projected {
    color: #27ae60;
}

.amount.confirmed {
    color: #f39c12;
}

.amount.received {
    color: #3498db;
}

.amount.remaining {
    color: #e74c3c;
}

.progress-container {
    display: flex;
    align-items: center;
    gap: 8px;
}

.progress-bar-mini {
    width: 60px;
    height: 6px;
    background: #e9ecef;
    border-radius: 3px;
    overflow: hidden;
    position: relative;
}

.progress-fill-mini {
    height: 100%;
    background: linear-gradient(90deg, #3498db, #2980b9);
    border-radius: 3px;
    transition: width 0.8s ease;
}

.progress-text {
    font-size: 0.8rem;
    font-weight: 500;
    color: #6c757d;
    min-width: 35px;
}

/* Responsive Table */
@media (max-width: 768px) {
    .user-details-table {
        padding: 15px;
    }
    
    .user-details-table .table thead th {
        font-size: 0.8rem;
        padding: 12px 8px;
    }
    
    .user-details-table .table tbody td {
        padding: 12px 8px;
        font-size: 0.85rem;
    }
    
    .user-avatar {
        width: 30px;
        height: 30px;
        font-size: 0.8rem;
    }
    
    .progress-bar-mini {
        width: 50px;
    }
    
    .progress-text {
        font-size: 0.75rem;
        min-width: 30px;
    }
}

/* User Financial Summary - Full Width Layout */
.welcome-info {
    text-align: center;
    margin-bottom: 20px;
}

.user-financial-summary {
    background: rgba(255, 255, 255, 0.95);
    border-radius: 12px;
    padding: 20px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(0, 0, 0, 0.05);
    width: 100%;
}

.summary-header {
    margin-bottom: 20px;
    text-align: center;
}

.summary-title {
    color: #2c3e50;
    font-weight: 600;
    font-size: 1.2rem;
    margin: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.summary-cards {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 15px;
    margin-bottom: 20px;
}

.summary-card {
    background: white;
    border-radius: 12px;
    padding: 15px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 12px;
}

.summary-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.summary-card .card-icon {
    width: 40px;
    height: 40px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    color: white;
    flex-shrink: 0;
}

.summary-card.projected-card .card-icon {
    background: linear-gradient(135deg, #27ae60, #2ecc71);
}

.summary-card.confirmed-card .card-icon {
    background: linear-gradient(135deg, #f39c12, #e67e22);
}

.summary-card.received-card .card-icon {
    background: linear-gradient(135deg, #3498db, #2980b9);
}

.summary-card.remaining-card .card-icon {
    background: linear-gradient(135deg, #e74c3c, #c0392b);
}

.card-content {
    flex: 1;
}

.card-label {
    font-size: 0.85rem;
    color: #7f8c8d;
    font-weight: 500;
    margin-bottom: 4px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.card-value {
    font-size: 1.1rem;
    font-weight: 700;
    color: #2c3e50;
    margin: 0;
}

.progress-summary {
    background: white;
    border-radius: 10px;
    padding: 15px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.progress-info {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 10px;
}

.progress-label {
    font-weight: 600;
    color: #2c3e50;
    font-size: 0.95rem;
}

.progress-percentage {
    font-weight: 700;
    color: #3498db;
    font-size: 1.1rem;
}

.progress-bar {
    height: 10px;
    background: #e9ecef;
    border-radius: 5px;
    overflow: hidden;
    position: relative;
    box-shadow: inset 0 1px 3px rgba(0, 0, 0, 0.1);
}

.progress-fill {
    height: 100%;
    background: linear-gradient(90deg, #3498db, #2980b9);
    border-radius: 5px;
    transition: width 0.8s ease;
    min-width: 2px;
    box-shadow: 0 1px 3px rgba(52, 152, 219, 0.3);
}

/* Responsive Design for Full Width Layout */
@media (max-width: 768px) {
    .welcome-info {
        margin-bottom: 15px;
    }
    
    .user-financial-summary {
        padding: 15px;
    }
    
    .summary-cards {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
    }
    
    .summary-card {
        padding: 12px;
    }
    
    .summary-card .card-icon {
        width: 35px;
        height: 35px;
        font-size: 1rem;
    }
    
    .card-value {
        font-size: 1rem;
    }
    
    .progress-info {
        flex-direction: column;
        align-items: flex-start;
        gap: 5px;
    }
}

@media (max-width: 480px) {
    .summary-cards {
        grid-template-columns: 1fr;
        gap: 10px;
    }
}

.slider-track {
    display: flex;
    align-items: center;
    gap: 15px;
    position: relative;
}

.slider-start,
.slider-end {
    font-size: 0.9rem;
    font-weight: 600;
    color: #6c757d;
    min-width: 80px;
    text-align: center;
}

.slider-progress {
    flex: 1;
    height: 12px;
    background: rgba(0, 0, 0, 0.1);
    border-radius: 6px;
    position: relative;
    overflow: visible;
}

.comparison-slider .progress-fill {
    height: 100%;
    border-radius: 6px;
    position: relative;
    transition: width 0.5s ease;
}

.comparison-slider .progress-fill::after {
    display: none;
}

.progress-marker {
    position: absolute;
    top: -8px;
    transform: translateX(-50%);
    z-index: 2;
}

.marker-dot {
    width: 16px;
    height: 16px;
    background: white;
    border: 3px solid #2c3e50;
    border-radius: 50%;
    margin: 0 auto 4px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
    animation: pulse 2s infinite;
}

.marker-label {
    font-size: 0.7rem;
    color: #2c3e50;
    font-weight: 600;
    text-align: center;
    background: rgba(255, 255, 255, 0.9);
    padding: 2px 6px;
    border-radius: 4px;
    white-space: nowrap;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.2);
}

/* Responsive Design for Comparison Sliders */
@media (max-width: 768px) {
    .comparison-sliders {
        padding: 20px;
    }
    
    .comparison-title {
        font-size: 1.3rem;
    }
    
    .comparison-slider {
        padding: 15px;
    }
    
    .comparison-slider .slider-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
    }
    
    .comparison-slider .amount-display {
        align-self: flex-end;
    }
    
    .slider-track {
        flex-direction: column;
        gap: 10px;
    }
    
    .slider-start,
    .slider-end {
        min-width: auto;
        font-size: 0.8rem;
    }
    
    .slider-progress {
        width: 100%;
    }
}

/* Financial Details Dashboard */
.financial-dashboard {
    background: white;
    border-radius: 20px;
    padding: 30px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    margin-bottom: 30px;
}

.financial-dashboard .dashboard-title {
    color: #2c3e50;
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 25px;
    text-align: center;
}

/* Financial Cards */
.financial-card {
    background: linear-gradient(135deg, #f8f9fa, #e9ecef);
    border-radius: 15px;
    padding: 20px;
    border: 1px solid #dee2e6;
    transition: all 0.3s ease;
    height: 100%;
    display: flex;
    align-items: center;
    gap: 15px;
}

.financial-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.financial-card .card-icon {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: white;
    flex-shrink: 0;
}

.financial-card .card-content {
    flex: 1;
}

.financial-card h5 {
    color: #2c3e50;
    font-size: 1rem;
    font-weight: 600;
    margin: 0 0 8px 0;
}

.financial-card .amount {
    color: #2c3e50;
    font-size: 1.4rem;
    font-weight: 700;
    margin: 0 0 5px 0;
}

.financial-card .subtitle {
    color: #6c757d;
    font-size: 0.85rem;
    margin: 0;
}

/* Card Color Themes */
.projected-card {
    border-left: 4px solid #28a745;
}

.projected-card .card-icon {
    background: linear-gradient(135deg, #28a745, #20c997);
}

.confirmed-card {
    border-left: 4px solid #007bff;
}

.confirmed-card .card-icon {
    background: linear-gradient(135deg, #007bff, #0056b3);
}

.received-card {
    border-left: 4px solid #ffc107;
}

.received-card .card-icon {
    background: linear-gradient(135deg, #ffc107, #e0a800);
}

.remaining-card {
    border-left: 4px solid #dc3545;
}

.remaining-card .card-icon {
    background: linear-gradient(135deg, #dc3545, #c82333);
}

/* Stats Cards */
.stats-card {
    background: linear-gradient(135deg, #f8f9fa, #e9ecef);
    border-radius: 15px;
    padding: 20px;
    border: 1px solid #dee2e6;
    height: 100%;
}

.stats-card h6 {
    color: #2c3e50;
    font-size: 1rem;
    font-weight: 600;
    margin: 0 0 15px 0;
}

.progress-stat {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 10px;
}

.progress-bar-stat {
    flex: 1;
    height: 8px;
    background: rgba(0, 0, 0, 0.1);
    border-radius: 4px;
    overflow: hidden;
}

.progress-fill-stat {
    height: 100%;
    background: linear-gradient(90deg, #28a745, #20c997);
    border-radius: 4px;
    transition: width 0.5s ease;
}

.progress-text {
    font-size: 1.1rem;
    font-weight: 700;
    color: #2c3e50;
    min-width: 60px;
    text-align: right;
}

.stat-details {
    color: #6c757d;
    font-size: 0.85rem;
}

/* Breakdown Card */
.breakdown-card {
    background: linear-gradient(135deg, #f8f9fa, #e9ecef);
    border-radius: 15px;
    padding: 20px;
    border: 1px solid #dee2e6;
}

.breakdown-card h6 {
    color: #2c3e50;
    font-size: 1.1rem;
    font-weight: 600;
    margin: 0 0 20px 0;
}

.breakdown-content {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.breakdown-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 12px 15px;
    background: white;
    border-radius: 8px;
    border: 1px solid #e9ecef;
    transition: all 0.3s ease;
}

.breakdown-item:hover {
    transform: translateX(5px);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.breakdown-item .month {
    font-weight: 600;
    color: #2c3e50;
    min-width: 80px;
}

.breakdown-item .amount {
    font-weight: 700;
    color: #2c3e50;
    min-width: 120px;
    text-align: center;
}

.breakdown-item .status {
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    min-width: 80px;
    text-align: center;
}

.status.confirmed {
    background: rgba(0, 123, 255, 0.1);
    color: #007bff;
    border: 1px solid rgba(0, 123, 255, 0.2);
}

.status.received {
    background: rgba(255, 193, 7, 0.1);
    color: #ffc107;
    border: 1px solid rgba(255, 193, 7, 0.2);
}

.status.pending {
    background: rgba(220, 53, 69, 0.1);
    color: #dc3545;
    border: 1px solid rgba(220, 53, 69, 0.2);
}

/* Responsive Design for Financial Dashboard */
@media (max-width: 768px) {
    .financial-dashboard {
        padding: 20px;
    }
    
    .financial-dashboard .dashboard-title {
        font-size: 1.3rem;
    }
    
    .financial-card {
        padding: 15px;
        flex-direction: column;
        text-align: center;
        gap: 10px;
    }
    
    .financial-card .card-icon {
        width: 50px;
        height: 50px;
        font-size: 1.2rem;
    }
    
    .financial-card .amount {
        font-size: 1.2rem;
    }
    
    .stats-card {
        padding: 15px;
    }
    
    .breakdown-card {
        padding: 15px;
    }
    
    .breakdown-item {
        flex-direction: column;
        gap: 8px;
        text-align: center;
    }
    
    .breakdown-item .month,
    .breakdown-item .amount,
    .breakdown-item .status {
        min-width: auto;
    }
}

/* ========================================
   BENEFICIARY PAGE STYLES
   ======================================== */

/* Page Header */
.page-header {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 40px 0;
    margin-bottom: 30px;
    border-radius: 0 0 20px 20px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.page-header-content {
    text-align: center;
    margin-bottom: 20px;
}

.page-header-actions {
    text-align: center;
}

.page-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 10px;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.page-subtitle {
    font-size: 1.1rem;
    opacity: 0.9;
    margin: 0;
}

/* Search Section */
.search-section {
    margin-bottom: 30px;
}

.search-card {
    background: white;
    border-radius: 15px;
    padding: 25px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.search-title {
    color: #2c3e50;
    font-weight: 600;
    margin-bottom: 20px;
    font-size: 1.3rem;
}

.search-form {
    margin: 0;
}

.search-input-group {
    display: flex;
    gap: 15px;
    align-items: center;
}

.search-input {
    flex: 1;
    padding: 12px 20px;
    border: 2px solid #e9ecef;
    border-radius: 10px;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.search-input:focus {
    border-color: #667eea;
    box-shadow: 0 0 0 3px rgba(102, 126, 234, 0.1);
    outline: none;
}

.search-btn {
    padding: 12px 25px;
    border-radius: 10px;
    font-weight: 600;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.search-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(102, 126, 234, 0.3);
}

/* Search Results */
.search-results-section {
    margin-bottom: 30px;
}

.no-results {
    text-align: center;
    padding: 60px 20px;
    background: white;
    border-radius: 15px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.no-results-icon {
    font-size: 4rem;
    color: #e74c3c;
    margin-bottom: 20px;
}

.no-results h4 {
    color: #2c3e50;
    margin-bottom: 10px;
}

.no-results p {
    color: #7f8c8d;
    margin: 0;
}

/* Beneficiary Detail Card */
.beneficiary-detail-card {
    background: white;
    border-radius: 15px;
    padding: 25px;
    margin-bottom: 20px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.beneficiary-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 20px;
    padding-bottom: 20px;
    border-bottom: 2px solid #f8f9fa;
}

.beneficiary-info h4 {
    color: #2c3e50;
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 5px;
}

.beneficiary-cnic {
    color: #7f8c8d;
    font-size: 1rem;
    margin-bottom: 5px;
    font-family: 'Courier New', monospace;
}

.beneficiary-father {
    color: #7f8c8d;
    font-size: 0.95rem;
    margin: 0;
}

.beneficiary-amount {
    text-align: right;
}

.amount-label {
    color: #7f8c8d;
    font-size: 0.9rem;
    margin-bottom: 5px;
}

.amount-value {
    color: #27ae60;
    font-size: 1.8rem;
    font-weight: 700;
}

.beneficiary-details {
    margin-bottom: 20px;
}

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

.detail-item {
    display: flex;
    flex-direction: column;
    min-width: 150px;
}

.detail-label {
    color: #7f8c8d;
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 3px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.detail-value {
    color: #2c3e50;
    font-size: 1rem;
    font-weight: 500;
}

/* Relief History */
.relief-history {
    margin-top: 20px;
}

.relief-title {
    color: #2c3e50;
    font-weight: 600;
    margin-bottom: 15px;
    font-size: 1.1rem;
}

.relief-table {
    background: #f8f9fa;
    border-radius: 10px;
    padding: 15px;
    overflow-x: auto;
}

.relief-table .table {
    margin: 0;
    background: white;
    border-radius: 8px;
    overflow: hidden;
}

.relief-table th {
    background: #667eea;
    color: white;
    border: none;
    font-weight: 600;
    font-size: 0.9rem;
    padding: 12px 15px;
}

.relief-table td {
    border: none;
    padding: 12px 15px;
    vertical-align: middle;
}

.relief-table tbody tr {
    border-bottom: 1px solid #f1f3f4;
}

.relief-table tbody tr:last-child {
    border-bottom: none;
}

/* Status Badges */
.status-badge {
    display: inline-block;
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.status-badge.active {
    background: #d4edda;
    color: #155724;
}

.status-badge.inactive {
    background: #f8d7da;
    color: #721c24;
}

.status-badge.approved {
    background: #d1ecf1;
    color: #0c5460;
}

.status-badge.received {
    background: #d4edda;
    color: #155724;
}

.status-badge.pending {
    background: #fff3cd;
    color: #856404;
}

.status-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
}

.status-container .btn {
    font-size: 0.75rem;
    padding: 4px 8px;
}

/* Beneficiary Table Section */
.beneficiary-table-section {
    margin-bottom: 30px;
}

.table-card {
    background: white;
    border-radius: 15px;
    padding: 25px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.table-header {
    margin-bottom: 20px;
    padding-bottom: 15px;
    border-bottom: 2px solid #f8f9fa;
}

.table-title {
    color: #2c3e50;
    font-weight: 600;
    margin: 0;
    font-size: 1.3rem;
}

.beneficiary-table {
    margin: 0;
}

.beneficiary-table th {
    background: #667eea;
    color: white;
    border: none;
    font-weight: 600;
    font-size: 0.9rem;
    padding: 15px 12px;
    text-align: left;
}

.beneficiary-table td {
    border: none;
    padding: 15px 12px;
    vertical-align: middle;
    border-bottom: 1px solid #f1f3f4;
}

.beneficiary-table tbody tr:hover {
    background: #f8f9fa;
}

.beneficiary-name-cell strong {
    color: #2c3e50;
    font-size: 1rem;
}

.amount-display {
    color: #27ae60;
    font-weight: 600;
    font-size: 1rem;
}

.age-badge {
    background: linear-gradient(135deg, #667eea, #764ba2);
    color: white;
    padding: 4px 8px;
    border-radius: 12px;
    font-size: 0.8rem;
    font-weight: 500;
    display: inline-block;
    min-width: 50px;
    text-align: center;
}

.count-badge {
    display: inline-block;
    padding: 4px 8px;
    border-radius: 12px;
    font-size: 0.8rem;
    font-weight: 600;
    min-width: 25px;
    text-align: center;
}

.count-badge.approved {
    background: #d1ecf1;
    color: #0c5460;
}

.count-badge.received {
    background: #d4edda;
    color: #155724;
}

.count-badge.relief {
    background: #e2e3e5;
    color: #495057;
}

.amount-display {
    color: #27ae60;
    font-weight: 600;
    font-size: 1rem;
    background: rgba(39, 174, 96, 0.1);
    padding: 4px 8px;
    border-radius: 6px;
    display: inline-block;
}

/* No Data */
.no-data {
    text-align: center;
    padding: 60px 20px;
    background: white;
    border-radius: 15px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.no-data-icon {
    font-size: 4rem;
    color: #7f8c8d;
    margin-bottom: 20px;
}

.no-data h4 {
    color: #2c3e50;
    margin-bottom: 10px;
}

.no-data p {
    color: #7f8c8d;
    margin: 0;
}

/* Responsive Design for Beneficiary Page */
@media (max-width: 768px) {
    
    .page-title {
        font-size: 2rem;
    }
    
    .search-input-group {
        flex-direction: column;
        align-items: stretch;
    }
    
    .search-btn {
        width: 100%;
    }
    
    .beneficiary-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 15px;
    }
    
    .beneficiary-amount {
        text-align: left;
    }
    
    .detail-row {
        flex-direction: column;
        gap: 15px;
    }
    
    .beneficiary-table {
        font-size: 0.85rem;
    }
    
    .beneficiary-table th,
    .beneficiary-table td {
        padding: 10px 8px;
    }
}

@media (max-width: 576px) {
    .page-header {
        padding: 30px 0;
    }
    
    .page-title {
        font-size: 1.8rem;
    }
    
    .search-card,
    .table-card,
    .beneficiary-detail-card {
        padding: 20px;
    }
    
    .beneficiary-table {
        font-size: 0.8rem;
    }
    
    .beneficiary-table th,
    .beneficiary-table td {
        padding: 8px 6px;
    }
}

/* Complaints Page Styling */
.complaint-title-cell {
    max-width: 300px;
}

.complaint-description-preview {
    font-size: 0.85rem;
    color: #6c757d;
    margin-top: 4px;
    line-height: 1.3;
}

.user-info {
    font-weight: 500;
}

.contact-info {
    font-size: 0.9rem;
    color: #495057;
}

.date-info {
    font-size: 0.9rem;
}

.date-info small {
    font-size: 0.75rem;
}

.view-image-btn {
    border-radius: 50%;
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0;
}

.view-details-btn {
    border-radius: 50%;
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0;
}

/* Table responsive improvements */
.table-responsive {
    border-radius: 0.375rem;
}

.table th {
    border-top: none;
    font-weight: 600;
    font-size: 0.9rem;
    color: #495057;
    background-color: #f8f9fa;
    padding: 1rem 0.75rem;
}

.table td {
    padding: 1rem 0.75rem;
    vertical-align: middle;
    border-top: 1px solid #dee2e6;
}

.table tbody tr:hover {
    background-color: #f8f9fa;
}

/* Modal improvements */
.modal-lg {
    max-width: 800px;
}

.modal-body img {
    max-width: 100%;
    height: auto;
    border-radius: 0.375rem;
    box-shadow: 0 0.125rem 0.25rem rgba(0, 0, 0, 0.075);
}

/* Status badges */
.badge {
    font-size: 0.75rem;
    padding: 0.375rem 0.75rem;
}

/* Button group styling */
.btn-group .btn {
    margin-right: 2px;
}

.btn-group .btn:last-child {
    margin-right: 0;
} 