/* 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);
}

/* 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;
    color: white;
    border-radius: 25px;
    font-weight: 600;
    padding: 0.75rem 1.5rem;
    transition: all 0.3s ease;
}

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

/* Complaint form */
.complaint-section {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.success-card {
    background: white;
    border-radius: 20px;
    padding: 3rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    animation: fadeInUp 0.5s ease-out;
}

.success-icon i {
    animation: bounceIn 0.8s ease-out;
}

.success-title {
    font-size: 1.8rem;
    font-weight: 600;
    color: var(--primary-color);
}

.success-message {
    color: #6c757d;
    line-height: 1.6;
}

.tracking-number-display {
    background: linear-gradient(135deg, #e8f5e8 0%, #d4edda 100%);
    border-radius: 10px;
    padding: 1rem;
    border: 1px solid #c3e6cb;
}

.tracking-label {
    font-weight: 600;
    color: #155724;
}

.tracking-number {
    font-family: 'Courier New', monospace;
    font-size: 1.2rem;
    font-weight: bold;
    color: #155724;
    background: white;
    padding: 0.25rem 0.5rem;
    border-radius: 5px;
    margin-left: 0.5rem;
}

.complaint-form-card {
    background: white;
    border-radius: 20px;
    padding: 2.5rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.modern-form .form-row {
    margin-bottom: 1.5rem;
}

.modern-form .form-group {
    margin-bottom: 1rem;
}

.modern-form .form-label {
    font-weight: 600;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
    display: flex;
    align-items: center;
}

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

.form-control-modern:focus {
    border-color: var(--secondary-color);
    box-shadow: 0 0 0 0.2rem rgba(32, 201, 151, 0.25);
}

.form-submit {
    margin-top: 2rem;
}

.tracking-card {
    background: white;
    border-radius: 20px;
    padding: 2rem;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    text-align: center;
}

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

.tracking-subtitle {
    font-size: 1rem;
}

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

.input-group-text {
    background: var(--secondary-color);
    border-color: var(--secondary-color);
    color: white;
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes bounceIn {
    0%, 20%, 40%, 60%, 80% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-10px);
    }
}

@keyframes float {
    0%, 100% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-20px);
    }
}

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

/* About Page Styles */
.about-hero-section {
    padding: 5rem 0;
}

.hero-title-secondary {
    font-size: 3rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.hero-subtitle-secondary {
    font-size: 1.8rem;
    font-weight: 300;
    color: #6c757d;
    margin-bottom: 1.5rem;
}

.quote-wrapper-modern {
    position: relative;
    margin-top: 1.5rem;
    padding: 1.5rem;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    border-radius: 15px;
}

.about-image-wrapper {
    position: relative;
}

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

.about-logo-image {
    max-height: 300px;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.about-logo-image:hover {
    transform: scale(1.05);
}

.image-decoration {
    position: absolute;
    top: -10px;
    right: -10px;
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--secondary-color) 0%, #2980b9 100%);
    border-radius: 50%;
    opacity: 0.8;
    z-index: -1;
}

/* Mission Vision Cards */
.mission-vision-card {
    background: white;
    border-radius: 20px;
    padding: 2rem;
    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);
}

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

.card-icon-wrapper {
    text-align: center;
    margin-bottom: 1.5rem;
}

.card-icon {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
}

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

.card-title-modern {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--primary-color);
    margin-bottom: 1rem;
    text-align: center;
}

.card-text-modern {
    color: #6c757d;
    line-height: 1.6;
    text-align: center;
}

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

.vision-list li {
    padding: 0.5rem 0;
    color: #6c757d;
    display: flex;
    align-items: center;
}

/* Join Us Section */
.join-us-card {
    background: white;
    border-radius: 20px;
    padding: 3rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

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

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

.join-icon-bg {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--secondary-color) 0%, #2980b9 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 5px 15px rgba(52, 152, 219, 0.3);
}

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

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

.accounts-content {
    padding: 0;
}

.accounts-features {
    display: flex;
    gap: 0.5rem;
    flex-wrap: wrap;
}

.feature-badge {
    background: rgba(52, 152, 219, 0.1);
    color: var(--secondary-color);
    padding: 0.25rem 0.75rem;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 500;
}

/* Committee Page Styles */
.committee-image-section {
    position: relative;
}

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

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

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

.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;
}

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

.committee-logo {
    width: auto;
    max-width: 150px;
    max-height: 100px;
    object-fit: contain;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

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

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

.leadership-card {
    background: white;
    border-radius: 15px;
    padding: 1.5rem;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    display: flex;
    align-items: center;
    gap: 1rem;
    transition: all 0.3s ease;
}

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

.leadership-icon {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: rgba(52, 152, 219, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
}

.leadership-title {
    font-size: 0.9rem;
    font-weight: 600;
    color: #6c757d;
    margin-bottom: 0.25rem;
}

.leadership-name {
    font-size: 1rem;
    font-weight: 600;
    color: var(--primary-color);
    margin: 0;
}

/* Committee Members */
.member-card {
    background: white;
    border-radius: 15px;
    padding: 1.5rem;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
}

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

.member-avatar {
    margin-bottom: 1rem;
}

.avatar-placeholder {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #e9ecef 0%, #dee2e6 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
    color: #6c757d;
    font-size: 1.5rem;
}

.member-name {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.member-designation {
    font-size: 0.9rem;
    color: #6c757d;
    margin-bottom: 0.75rem;
}

.contact-link {
    color: var(--secondary-color);
    text-decoration: none;
    font-size: 0.9rem;
}

.contact-link:hover {
    color: #2980b9;
}

.no-members-found {
    padding: 3rem;
    background: white;
    border-radius: 20px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
}

/* Contact Page Styles */
.contact-info-section {
    background: white;
    border-radius: 20px;
    padding: 2rem;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    height: fit-content;
}

.contact-section-title {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--primary-color);
}

.contact-info-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 2rem;
    padding: 1rem;
    border-radius: 10px;
    transition: background 0.3s ease;
}

.contact-info-item:hover {
    background: rgba(52, 152, 219, 0.05);
}

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

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

.contact-text {
    color: #6c757d;
    margin: 0;
    line-height: 1.5;
}

.social-connect {
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 1px solid #dee2e6;
}

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

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

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

.social-link.facebook {
    background: #1877f2;
}

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

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

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

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

/* Contact Form */
.contact-form-card {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

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

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

.form-subtitle {
    font-size: 1rem;
    opacity: 0.9;
    margin: 0;
}

.form-body {
    padding: 2rem;
}

.form-row {
    margin-bottom: 1.5rem;
}

.form-group {
    position: relative;
}

.form-label {
    font-weight: 600;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
    display: block;
}

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

.form-control-modern:focus {
    border-color: var(--secondary-color);
    box-shadow: 0 0 0 0.2rem rgba(32, 201, 151, 0.25);
    background: white;
}

.form-submit {
    margin-top: 2rem;
}

/* Success Card */
.success-card {
    background: white;
    border-radius: 20px;
    padding: 3rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.success-icon {
    animation: fadeInUp 0.6s ease-out;
}

.success-title {
    color: var(--primary-color);
    font-weight: 600;
}

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

/* Notable Works Page 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;
    display: flex;
    flex-direction: column;
    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;
}

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

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

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

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

.work-badge {
    position: absolute;
    top: 1rem;
    right: 1rem;
}

.work-logo-wrapper {
    position: absolute;
    bottom: 1rem;
    left: 1rem;
}

.work-logo-modern {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

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

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

.work-author {
    margin-bottom: 1rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid #e9ecef;
}

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

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

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

.work-meta {
    color: #6c757d;
    font-size: 0.9rem;
}

.completion-date {
    color: #28a745;
}

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

.no-works-found {
    padding: 3rem;
    background: white;
    border-radius: 20px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
}

/* Projects Page Enhancement */
.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;
    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.1);
}

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

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

.project-status {
    position: absolute;
    top: 1rem;
    right: 1rem;
}

.project-logo-wrapper {
    position: absolute;
    bottom: 1rem;
    left: 1rem;
}

.project-logo-modern {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    box-shadow: 0 2px 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.25rem;
    font-weight: 600;
    color: var(--primary-color);
    margin-bottom: 1rem;
    min-height: 3rem;
    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;
}

.project-progress {
    margin-bottom: 1.5rem;
}

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

.progress-label {
    font-weight: 600;
    color: var(--primary-color);
}

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

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

.progress-fill {
    height: 100%;
    background: linear-gradient(90deg, #28a745 0%, #20c997 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.9rem;
    color: #6c757d;
    margin-bottom: 0.25rem;
}

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

.project-cost {
    margin-top: 1rem;
    padding-top: 1rem;
    border-top: 1px solid #e9ecef;
}

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

.no-projects-found {
    padding: 3rem;
    background: white;
    border-radius: 20px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
}

/* Button Enhancements */
.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: 1.25rem 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);
}

.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 {
    gap: 0.5rem;
}

.modern-nav-link {
    color: #495057;
    font-weight: 500;
    padding: 0.75rem 1rem;
    border-radius: 25px;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    text-decoration: none;
    position: relative;
    white-space: nowrap;
    font-size: 0.95rem;
}

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

.modern-nav-link:hover {
    color: var(--primary-color);
    background: rgba(40, 167, 69, 0.1);
    transform: translateY(-2px);
}

.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;
    }
} 