/* Roboto Font Face Declarations */
@font-face {
    font-family: 'Roboto';
    src: url('/font/static/Roboto-Regular.ttf') format('truetype');
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Roboto';
    src: url('/font/static/Roboto-Italic.ttf') format('truetype');
    font-weight: 400;
    font-style: italic;
    font-display: swap;
}

@font-face {
    font-family: 'Roboto';
    src: url('/font/static/Roboto-Medium.ttf') format('truetype');
    font-weight: 500;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Roboto';
    src: url('/font/static/Roboto-MediumItalic.ttf') format('truetype');
    font-weight: 500;
    font-style: italic;
    font-display: swap;
}

@font-face {
    font-family: 'Roboto';
    src: url('/font/static/Roboto-SemiBold.ttf') format('truetype');
    font-weight: 600;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Roboto';
    src: url('/font/static/Roboto-SemiBoldItalic.ttf') format('truetype');
    font-weight: 600;
    font-style: italic;
    font-display: swap;
}

@font-face {
    font-family: 'Roboto';
    src: url('/font/static/Roboto-Bold.ttf') format('truetype');
    font-weight: 700;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Roboto';
    src: url('/font/static/Roboto-BoldItalic.ttf') format('truetype');
    font-weight: 700;
    font-style: italic;
    font-display: swap;
}

.contact-hero {
        padding: 220px 0 90px 0;
        display: flex;
        align-items: center;
        background: linear-gradient(135deg, rgba(16, 162, 74, 0.8), rgba(11, 77, 36, 0.8)),
            url('/bg-hero.jpg') center/cover no-repeat;
     
}

.contact-hero-overlay {
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 10% 20%, rgba(176, 201, 53, 0.18), transparent 55%);
    pointer-events: none;
}

.contact-hero .hero-copy .hero-pill {
    backdrop-filter: blur(8px);
    border: 1px solid rgba(255, 255, 255, 0.35);
}

.contact-hero-card {
    background: rgba(255, 255, 255, 0.9);
    position: relative;
    border-radius: var(--border-radius);
    backdrop-filter: blur(12px);
}

.contact-channel {
    background: #fff;
    transition: var(--transition);
    border: 1px solid rgba(16, 162, 74, 0.12); 
}

.contact-channel:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-lg);
    border-color: rgba(16, 162, 74, 0.35);
}

.contact-channel .channel-icon {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
}

.library-section {
    background: #f4f9f5;
}

.library-filters .form-label {
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--text-light);
}

.library-filters .input-group-text {
    border-right: 0;
}

.library-filters .form-control {
    border-left: 0;
    padding-left: 0.25rem;
}

.library-chip {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    padding: 0.35rem 0.75rem;
    border-radius: 999px;
    background: rgba(16, 162, 74, 0.15);
    color: var(--primary-dark);
    font-weight: 600;
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.library-type {
    font-size: 0.8rem;
    color: var(--text-muted);
    font-weight: 600;
    display: inline-flex;
    align-items: center;
}

.library-card {
    background: #ffffff;
    border: 1px solid rgba(16, 162, 74, 0.12);
    border-radius: var(--border-radius);
    padding: 1.75rem;
    display: flex;
    flex-direction: column;
    height: 100%;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.library-card::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(16, 162, 74, 0.08), transparent);
    opacity: 0;
    transition: var(--transition);
    pointer-events: none;
}

.library-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-lg);
}

.library-card:hover::after {
    opacity: 1;
}

.library-title {
    font-weight: 600;
}

.library-description {
    font-size: 0.95rem;
    line-height: 1.6;
}

.library-meta {
    margin: 0;
    padding: 0;
}

.library-meta-item {
    display: flex;
    justify-content: space-between;
    font-size: 0.85rem;
    margin-bottom: 0.35rem;
}

.library-meta-item dt {
    color: var(--text-light);
    margin: 0;
}

.library-meta-item dd {
    margin: 0;
    color: var(--text-muted);
    font-weight: 600;
}

.library-actions {
    margin-top: auto;
    display: flex;
    gap: 0.75rem;
}

.library-actions .btn {
    flex: 1;
    justify-content: center;
}

.library-detail-hero {
    padding: 160px 0 0 0;
    background: linear-gradient(135deg, rgba(16, 162, 74, 0.85), rgba(11, 77, 36, 0.88)),
        url('/bg-hero.jpg') center/cover no-repeat;
    position: relative;
}

.library-detail-overlay {
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 20% 20%, rgba(176, 201, 53, 0.2), transparent 55%);
}

.library-hero-copy .badge {
    backdrop-filter: blur(6px);
    border: 1px solid rgba(255, 255, 255, 0.35);
}

.library-meta-card {
    border-radius: var(--border-radius);
    border: 1px solid rgba(255, 255, 255, 0.45);
    background: rgba(255, 255, 255, 0.92);
    backdrop-filter: blur(12px);
}

.library-meta-card dt {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--text-light);
}

.library-meta-card dd {
    font-weight: 600;
    color: var(--text-dark);
}

.library-meta-card .badge {
    font-size: 0.7rem;
}

.library-document-content h2,
.library-document-content h3 {
    font-weight: 600;
}

.library-document-content .library-preview iframe {
    border: 0;
}

.library-sidebar-card {
    background: #ffffff;
}

.breadcrumb {
    --bs-breadcrumb-divider: '>';
    color: rgba(255, 255, 255, 0.7);
}

.breadcrumb .breadcrumb-item a {
    color: rgba(255, 255, 255, 0.85);
    text-decoration: none;
}

.breadcrumb .breadcrumb-item.active {
    color: rgba(255, 255, 255, 0.9);
}

@media (max-width: 991.98px) {
    .library-filters .form-label {
        font-size: 0.75rem;
    }

    .library-card {
        padding: 1.5rem;
    }
}
/* ===== ROOT VARIABLES ===== */
:root {
    --primary-color: #10a24a;
    --primary-dark: #0c7d39;
    --primary-light: #b0c935;
    --secondary-color: #64748b;
    --accent-color: #b0c935;
    --success-color: #10b981;
    --warning-color: #f59e0b;
    --error-color: #ef4444;
    --light-blue: #e6f5ec;
    --dark-blue: #0b4d24;
    --text-dark: #1e293b;
    --text-light: #64748b;
    --text-muted: #94a3b8;
    --bg-light: #f8fafc;
    --bg-white: #ffffff;
    --bg-dark: #272727;
    --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
    --shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    --shadow-md: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
    --shadow-xl: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
    --border-radius: 16px;
    --border-radius-sm: 8px;
    --border-radius-lg: 24px;
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-fast: all 0.15s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-slow: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    /* Header heights */
    --topbar-height: 32px;
    --navbar-height: 64px;
}

/* ===== RBP HOMEPAGE ===== */
.rbp-hero {
    padding: 220px 0 90px 0;
    display: flex;
    align-items: center;
    position: relative;
}

.rbp-hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(16, 162, 74, 0.8), rgba(11, 77, 36, 0.8)),
                radial-gradient(circle at 20% 20%, rgba(176, 201, 53, 0.15), transparent 55%);
    pointer-events: none;
    z-index: 1;
}

.rbp-hero .container {
    position: relative;
    z-index: 2;
}

.hero-copy .hero-pill {
    backdrop-filter: blur(6px);
    border: 1px solid rgba(255, 255, 255, 0.35);
}

.hero-insight {
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(12px);
    border-radius: var(--border-radius);
}

.hero-insight .metric-label {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

.hero-insight .metric-value {
    font-size: 1.5rem;
    font-weight: 700;
}

.avatar-circle {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
}

.project-overview .overview-card {
    background: #ffffff;
    border-radius: var(--border-radius);
    padding: 2.5rem;
    box-shadow: var(--shadow-lg);
    border: 1px solid rgba(16, 162, 74, 0.08);
}

.overview-list li {
    display: flex;
    gap: 0.75rem;
    align-items: flex-start;
    font-size: 0.95rem;
    color: var(--text-muted);
    margin-bottom: 1rem;
}

.overview-list li i {
    color: var(--primary-color);
    font-size: 1.2rem;
    margin-top: 0.15rem;
}

.infographic-card {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.95), rgba(224, 241, 229, 0.95));
    border-radius: var(--border-radius-sm);
    padding: 1.75rem;
    box-shadow: var(--shadow);
    border: 1px solid rgba(16, 162, 74, 0.1);
    transition: var(--transition);
}

.infographic-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-lg);
}

.infographic-card .icon-wrapper {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
    margin-bottom: 1rem;
}

.infographic-card .value {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 0.35rem;
}

.infographic-card .detail {
    font-size: 0.9rem;
}

.key-achievements .row {
    display: flex;
    flex-wrap: wrap;
}

.key-achievements .row > [class*='col-'] {
    display: flex;
    flex-direction: column;
}

.key-achievements .achievement-card {
    background: #ffffff;
    border-radius: var(--border-radius);
    padding: 2rem;
    box-shadow: var(--shadow-lg);
    border: 1px solid rgba(16, 162, 74, 0.08);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.key-achievements .achievement-card::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(16, 162, 74, 0.08), transparent);
    opacity: 0;
    transition: var(--transition);
}

.key-achievements .achievement-card:hover {
    transform: translateY(-6px);
}

.key-achievements .achievement-card:hover::after {
    opacity: 1;
}

.achievement-card .icon {
    width: 56px;
    height: 56px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
}

.achievement-card .mini-chart {
    width: 100%;
    height: 6px;
    background: rgba(16, 162, 74, 0.12);
    border-radius: 999px;
    overflow: hidden;
}

.achievement-card .mini-bar {
    height: 100%;
    background: linear-gradient(135deg, var(--primary-light), var(--primary-dark));
}

.rbp-map-section .rbp-map {
    height: 480px;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-lg);
    border: 1px solid rgba(16, 162, 74, 0.12);
    overflow: hidden;
}

.rbp-map-section .map-summary {
    border-radius: var(--border-radius);
}

.rbp-map-section .map-summary-scroll {
    max-height: 300px;
    overflow-y: auto;
}

.rbp-map-section .table th,
.rbp-map-section .table td {
    font-size: 0.95rem;
    vertical-align: middle;
}

.rbp-map-section .legend-dot {
    width: 12px;
    height: 12px;
    border-radius: 999px;
    display: inline-block;
}

.rbp-map-section .leaflet-control {
    border-radius: 12px !important;
    overflow: hidden;
}

.rbp-map-section .leaflet-popup-content-wrapper {
    border-radius: var(--border-radius-sm);
    box-shadow: var(--shadow);
}

.rbp-map-section .leaflet-popup-content {
    margin: 0.75rem;
    font-size: 0.9rem;
}

.rbp-map-section .leaflet-popup-tip {
    background: #ffffff;
}


.key-achievements .counter-value {
    font-size: 1.5rem;
    line-height: 1.1;
}

.key-achievements .counter-label {
    font-size: 0.95rem;
}

/* Timeline Section Background Decoration */
.timeline-highlight {
    position: relative;
    overflow: hidden;
}

.timeline-background-decoration {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(16, 162, 74, 0.02) 0%, rgba(176, 201, 53, 0.02) 100%);
    pointer-events: none;
    z-index: 0;
}

.timeline-background-decoration::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(16, 162, 74, 0.08) 0%, transparent 70%);
    border-radius: 50%;
}

.timeline-background-decoration::after {
    content: '';
    position: absolute;
    bottom: -30%;
    left: -5%;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(176, 201, 53, 0.06) 0%, transparent 70%);
    border-radius: 50%;
}

.timeline-highlight .timeline-wrapper {
    padding: 0;
    position: relative;
    z-index: 1;
}

.timeline-carousel {
    position: relative;
}

.timeline-carousel .owl-stage-outer {
    padding: 0 0 1rem 0;
    overflow: hidden;
}

.timeline-carousel .owl-item {
    height: auto;
    box-sizing: border-box;
}

.timeline-slide {
    background: linear-gradient(135deg, #ffffff 0%, #fafafa 100%);
    border-radius: var(--border-radius-lg);
    border: 1px solid rgba(16, 162, 74, 0.08);
    padding: 1.5rem;
    margin: 0;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
    position: relative;
    overflow: visible;
}

/* Timeline Slide Header */
.timeline-slide-header {
    margin-bottom: 1.75rem;
    padding-bottom: 1.25rem;
    position: relative;
    flex-shrink: 0;
    z-index: 1;
}

.timeline-slide-header::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, var(--primary-color), var(--primary-light));
    border-radius: 2px;
    transition: width 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.timeline-slide:hover .timeline-slide-header::after {
    width: 100%;
}

/* Elegant Year Badge */
.timeline-year-badge {
    position: relative;
    display: inline-block;
}

.timeline-year {
    font-size: 1.75rem;
    font-weight: 800;
    color: var(--primary-color);
    position: relative;
    z-index: 2;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    letter-spacing: -0.02em;
}

.timeline-year-decoration {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(16, 162, 74, 0.15), rgba(176, 201, 53, 0.15));
    border-radius: var(--border-radius);
    filter: blur(8px);
    opacity: 0;
    transition: opacity 0.4s ease;
    z-index: 1;
}

.timeline-slide:hover .timeline-year-decoration {
    opacity: 1;
}

/* Timeline Content */
.timeline-slide .timeline-content {
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    position: relative;
    z-index: 1;
}

/* Timeline Slide Footer */
.timeline-slide-footer {
    margin-top: 1.5rem;
    padding-top: 1.25rem;
    border-top: 1px solid rgba(16, 162, 74, 0.08);
    display: flex;
    justify-content: flex-end;
    flex-shrink: 0;
    position: relative;
    z-index: 1;
}

.timeline-slide-number {
    font-size: 0.875rem;
    font-weight: 600;
    color: rgba(16, 162, 74, 0.4);
    letter-spacing: 0.1em;
    transition: color 0.4s ease;
}

.timeline-slide:hover .timeline-slide-number {
    color: var(--primary-color);
}


/* Owl Carousel Navigation for Timeline */
.timeline-carousel .owl-nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    transform: translateY(-50%);
    pointer-events: none;
    z-index: 10;
    margin: 0;
    padding: 0;
}

.timeline-carousel .owl-nav button {
    pointer-events: all;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: #ffffff !important;
    border: 2px solid rgba(16, 162, 74, 0.2) !important;
    color: var(--primary-color) !important;
    font-size: 1.25rem;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    margin: 0;
    padding: 0;
}

.timeline-carousel .owl-nav button:hover,
.timeline-carousel .owl-nav button:focus {
    background: var(--primary-color) !important;
    color: #ffffff !important;
    border-color: var(--primary-color) !important;
    transform: scale(1.1);
    box-shadow: 0 6px 20px rgba(16, 162, 74, 0.3);
}

.timeline-carousel .owl-nav button:disabled {
    opacity: 0.3;
    cursor: not-allowed;
    pointer-events: none;
}

.timeline-carousel .owl-nav button.owl-prev {
    margin-left: -24px;
}

.timeline-carousel .owl-nav button.owl-next {
    margin-right: -24px;
}

.timeline-carousel .owl-dots {
    justify-content: center;
    gap: 0.75rem;
    margin-top: 2rem;
}

.timeline-carousel .owl-dots[style*="display: none"],
.timeline-carousel .owl-dots[style*="display:none"] {
    display: none !important;
    visibility: hidden !important;
}

.timeline-carousel .owl-dots button {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(16, 162, 74, 0.2) !important;
    border: 2px solid transparent !important;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    padding: 0;
    margin: 0;
}

.timeline-carousel .owl-dots button.active,
.timeline-carousel .owl-dots button:hover {
    background: var(--primary-color) !important;
    transform: scale(1.3);
    box-shadow: 0 0 0 4px rgba(16, 162, 74, 0.1);
}

.timeline-carousel .owl-dots button span {
    display: none;
}

/* Mobile Responsive for Timeline */
@media (max-width: 768px) {
    .timeline-carousel .owl-item {
        padding: 0 0.25rem;
    }
    
    .timeline-carousel .owl-nav button {
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }
    
    .timeline-carousel .owl-nav button.owl-prev {
        margin-left: -20px;
    }
    
    .timeline-carousel .owl-nav button.owl-next {
        margin-right: -20px;
    }
    
    .timeline-slide {
        padding: 1.75rem;
        margin: 0;
        border-radius: var(--border-radius);
    }
    
    .timeline-slide .timeline-year {
        font-size: 1.35rem;
        padding: 0.6rem 1.25rem;
    }
    
    .timeline-slide-header {
        margin-bottom: 1.25rem;
        padding-bottom: 1rem;
    }
    
    .timeline-slide-footer {
        margin-top: 1.25rem;
        padding-top: 1rem;
    }
    
    .timeline-background-decoration::before,
    .timeline-background-decoration::after {
        width: 300px;
        height: 300px;
    }
}

/* Timeline Content Styling */
.timeline-content {
    font-size: 0.95rem;
    line-height: 1.7;
    color: var(--text-dark);
}

.timeline-content p {
    margin-bottom: 1rem;
}

.timeline-content p:last-child {
    margin-bottom: 0;
}

.timeline-content ul,
.timeline-content ol {
    margin-bottom: 1rem;
    padding-left: 1.5rem;
}

.timeline-content li {
    margin-bottom: 0.5rem;
}

.timeline-content a {
    color: var(--primary-color, #10A24A);
    text-decoration: none;
}

.timeline-content a:hover {
    text-decoration: underline;
}

.timeline-content strong,
.timeline-content b {
    font-weight: 600;
}

.timeline-content em,
.timeline-content i {
    font-style: italic;
}

.timeline-content table {
    width: 100%;
    margin-bottom: 1rem;
    border-collapse: collapse;
    font-size: 0.9rem;
}

.timeline-content table td,
.timeline-content table th {
    padding: 0.75rem;
    border: 1px solid #dee2e6;
}

.timeline-content table th {
    background-color: #f8f9fa;
    font-weight: 600;
}

.voices-field .voice-card {
    background: #ffffff;
    border-radius: var(--border-radius);
    padding: 1.75rem;
    box-shadow: var(--shadow-lg);
    border: 1px solid rgba(16, 162, 74, 0.08);
    transition: var(--transition);
    height: 100%;
}

.voices-field .voice-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-xl);
}

.voice-media {
    background: #000;
}

.voice-media iframe {
    border: 0;
    border-radius: inherit;
}

.object-fit-cover {
    object-fit: cover;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(12px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ===== GLOBAL STYLES ===== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Nunito Sans', sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
    overflow-x: hidden;
    background: var(--bg-white);
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Roboto', sans-serif;
    font-weight: 600;
    line-height: 1.2;
    letter-spacing: -0.025em;
}

/* ===== GRADIENT TEXT ===== */
.gradient-text {
    color: var(--primary-light);
    font-weight: 700;
    display: inline-block;
}

/* Specific targeting for hero title */
.hero-title .gradient-text {
    color: var(--primary-light);
    font-weight: 700;
}

/* Specific targeting for section titles */
.section-title .gradient-text {
    color: var(--primary-light);
    font-weight: 700;
}

/* ===== NAVIGATION ===== */
.navbar {
    padding: 1rem 0;
    transition: var(--transition);
    backdrop-filter: blur(20px);
    background: rgba(255, 255, 255, 0.8) !important;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

/* Top contact bar + navbar stacking */
.top-contact-bar {
    z-index: 1041; /* above .navbar (default 1030 for fixed) */
}

.top-contact-bar + .navbar.fixed-top {
    top: 38px;
}

@media (max-width: 767.98px) {
    .top-contact-bar { display: none !important; }
    .top-contact-bar + .navbar.fixed-top { top: 0; }
}

/* ===== OFFCANVAS MOBILE MENU ===== */
/* Modern Offcanvas Styles */
.modern-offcanvas {
    background: linear-gradient(135deg, #ffffff 0%, #f8fafc 100%);
    border-left: none;
    box-shadow: -4px 0 20px rgba(0, 0, 0, 0.1);
    width: 320px !important;
}

.modern-offcanvas-header {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
    padding: 1.5rem;
    border-bottom: none;
    position: relative;
    overflow: hidden;
}

.modern-offcanvas-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 20% 20%, rgba(176, 201, 53, 0.15), transparent 55%);
    pointer-events: none;
}

.modern-offcanvas-header .offcanvas-title {
    position: relative;
    z-index: 1;
}

.modern-offcanvas-header .offcanvas-title img {
    filter: brightness(0) invert(1);
}

.modern-offcanvas-header .btn-close {
    position: relative;
    z-index: 1;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    width: 36px;
    height: 36px;
    opacity: 1;
    transition: var(--transition);
    backdrop-filter: blur(10px);
}

.modern-offcanvas-header .btn-close:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: rotate(90deg) scale(1.1);
}

.modern-offcanvas-body {
    padding: 1rem 0;
    overflow-y: auto;
}

.modern-nav-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.modern-nav-item {
    margin: 0.25rem 0;
    opacity: 0;
    animation: slideInRight 0.4s ease-out forwards;
}

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(-20px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.modern-nav-link {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem 1.5rem;
    color: var(--text-dark);
    text-decoration: none;
    transition: var(--transition);
    position: relative;
    border-left: 3px solid transparent;
    background: transparent;
}

.modern-nav-link::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 0;
    background: linear-gradient(90deg, var(--primary-color), var(--primary-light));
    transition: width 0.3s ease;
    border-radius: 0 8px 8px 0;
}

.modern-nav-link:hover,
.modern-nav-link:focus {
    color: var(--primary-color);
    background: rgba(16, 162, 74, 0.05);
    border-left-color: var(--primary-color);
    padding-left: 1.75rem;
    transform: translateX(4px);
}

.modern-nav-link:hover::before {
    width: 4px;
}

.modern-nav-icon {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(16, 162, 74, 0.1);
    border-radius: 10px;
    color: var(--primary-color);
    font-size: 1.1rem;
    transition: var(--transition);
    flex-shrink: 0;
}

.modern-nav-link:hover .modern-nav-icon {
    background: linear-gradient(135deg, var(--primary-color), var(--primary-light));
    color: white;
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 4px 12px rgba(16, 162, 74, 0.3);
}

.modern-nav-text {
    flex: 1;
    font-weight: 500;
    font-size: 1rem;
    transition: var(--transition);
}

.modern-nav-link:hover .modern-nav-text {
    font-weight: 600;
}

.modern-nav-arrow {
    color: var(--text-muted);
    font-size: 0.875rem;
    transition: var(--transition);
    opacity: 0.5;
}

.modern-nav-link:hover .modern-nav-arrow {
    color: var(--primary-color);
    opacity: 1;
    transform: translateX(4px);
}

/* Language Switcher in Offcanvas */
.modern-language-switcher {
    border-top: 1px solid rgba(16, 162, 74, 0.1);
}

.modern-lang-btn {
    flex: 1;
    display: flex;
    align-items: center;
    padding: 0.75rem 1rem;
    border: 2px solid rgba(16, 162, 74, 0.2);
    border-radius: 10px;
    background: white;
    color: var(--text-dark);
    text-decoration: none;
    transition: var(--transition);
    font-weight: 500;
    font-size: 0.9rem;
}

.modern-lang-btn:hover {
    border-color: var(--primary-color);
    background: rgba(16, 162, 74, 0.05);
    color: var(--primary-color);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(16, 162, 74, 0.15);
}

.modern-lang-btn.active {
    border-color: var(--primary-color);
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    color: white;
    box-shadow: 0 4px 12px rgba(16, 162, 74, 0.3);
}

.modern-lang-btn.active:hover {
    background: linear-gradient(135deg, var(--primary-dark), var(--primary-color));
    transform: translateY(-2px) scale(1.02);
}

.modern-lang-btn img {
    flex-shrink: 0;
}

.modern-lang-btn.active img {
    filter: brightness(0) invert(1);
}

.modern-lang-btn .bi-check-circle-fill {
    font-size: 1.1rem;
    opacity: 0.9;
}

/* Legacy offcanvas styles for backward compatibility */
.offcanvas {
    border-left: 1px solid rgba(16, 162, 74, 0.1);
}

.offcanvas-header {
    padding: 1.5rem;
    border-bottom: 1px solid rgba(16, 162, 74, 0.1);
}

.offcanvas-title {
    margin: 0;
    line-height: 1;
}

.offcanvas-title img {
    display: block;
}

.offcanvas-body {
    padding: 0;
}

.offcanvas-body .navbar-nav {
    padding: 0.5rem 0;
}

.offcanvas-body .nav-link {
    padding: 1rem 1.5rem;
    border-bottom: 1px solid rgba(16, 162, 74, 0.05);
    transition: var(--transition);
    color: var(--text-dark);
}

.offcanvas-body .nav-link:hover,
.offcanvas-body .nav-link:focus {
    background: rgba(16, 162, 74, 0.05);
    color: var(--primary-color);
    padding-left: 2rem;
}

.offcanvas-body .nav-item:last-child {
    padding: 1rem 1.5rem;
    border-top: 1px solid rgba(16, 162, 74, 0.1);
    margin-top: 0.5rem;
}

.offcanvas-body .btn-close {
    font-size: 1.25rem;
    opacity: 0.7;
    transition: var(--transition);
}

.offcanvas-body .btn-close:hover {
    opacity: 1;
    transform: rotate(90deg);
}

.navbar-brand {
    font-family: 'Poppins', sans-serif;
    font-size: 1.75rem !important;
    font-weight: 700 !important;
    letter-spacing: -0.025em;
}

.nav-link {
    font-weight: 500 !important;
    color: var(--text-dark) !important;
    transition: var(--transition);
    position: relative;
    padding: 0.5rem 1rem !important;
    border-radius: var(--border-radius-sm);
}

.nav-link:hover {
    color: var(--primary-color) !important;
    background: rgba(16, 162, 74, 0.1);
}

.navbar-scrolled {
    background: rgba(255, 255, 255, 0.95) !important;
    backdrop-filter: blur(20px);
    box-shadow: var(--shadow-lg);
}

/* ===== HERO SECTION ===== */
.hero-section {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 50%, var(--accent-color) 100%);
    position: relative;
    overflow: hidden;
    padding: 160px 0 90px;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 50%, var(--accent-color) 100%);
}

.hero-shapes {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    overflow: hidden;
}

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

.shape-1 {
    width: 200px;
    height: 200px;
    top: 10%;
    left: 10%;
    animation-delay: 0s;
}

.shape-2 {
    width: 150px;
    height: 150px;
    top: 60%;
    right: 15%;
    animation-delay: 2s;
}

.shape-3 {
    width: 100px;
    height: 100px;
    bottom: 20%;
    left: 20%;
    animation-delay: 4s;
}

.shape-4 {
    width: 80px;
    height: 80px;
    top: 30%;
    right: 30%;
    animation-delay: 1s;
}

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

.hero-content {
    position: relative;
    z-index: 2;
    color: white;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 50px;
    padding: 0.5rem 1rem;
    font-size: 0.875rem;
    font-weight: 500;
    margin-bottom: 1.5rem;
    color: #ffffff;
}

.hero-title {
    font-size: 3rem;
    font-weight: 600;
    color: white;
    margin-bottom: 1.5rem;
    line-height: 1.2;
    letter-spacing: -0.025em;
}

.hero-subtitle {
    font-family: 'Nunito Sans', sans-serif;
    font-size: 1.25rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 2rem;
    font-weight: 400;
    line-height: 1.6;
}

.hero-stats {
    display: flex;
    gap: 2rem;
    margin-bottom: 2rem;
}

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

.stat-number {
    display: block;
    font-size: 1.5rem;
    font-weight: 700;
    color: white;
    font-family: 'Poppins', sans-serif;
}

.stat-label {
    display: block;
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.8);
    font-weight: 500;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

/* ===== HERO VISUAL ===== */
.hero-visual {
    position: relative;
    height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
    max-width: 100%;
    overflow: visible;
}

.modern-card {
    position: absolute;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: var(--border-radius);
    padding: 1rem;
    box-shadow: var(--shadow-xl);
    display: flex;
    align-items: center;
    gap: 1rem;
    animation: floatCard 4s ease-in-out infinite;
    transition: var(--transition);
    width: 240px;
    min-width: 200px;
}

.modern-card:hover {
    transform: translateY(-10px) scale(1.05);
    box-shadow: var(--shadow-xl);
}

.card-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    border-radius: var(--border-radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.25rem;
}

.card-content h6 {
    margin: 0;
    font-weight: 600;
    color: var(--text-dark);
    font-size: 0.875rem;
}

.card-content span {
    font-size: 0.75rem;
    color: var(--text-light);
}

.card-badge {
    position: absolute;
    top: -8px;
    right: -8px;
    background: var(--success-color);
    color: white;
    font-size: 0.625rem;
    font-weight: 600;
    padding: 0.25rem 0.5rem;
    border-radius: 12px;
    text-transform: uppercase;
}

.card-badge.trending {
    background: var(--warning-color);
}

.card-badge.new {
    background: var(--error-color);
}

.modern-main-card {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: var(--border-radius);
    padding: 2.5rem;
    text-align: center;
    box-shadow: var(--shadow-xl);
    position: relative;
    z-index: 3;
    animation: floatCard 6s ease-in-out infinite;
    width: 300px;
    max-width: 300px;
}

.main-card-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1.5rem;
}

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

.card-status {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(16, 185, 129, 0.1);
    color: var(--success-color);
    padding: 0.25rem 0.75rem;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 500;
}

.status-dot {
    width: 6px;
    height: 6px;
    background: var(--success-color);
    border-radius: 50%;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% {
        opacity: 1;
    }
    50% {
        opacity: 0.5;
    }
}

.main-card-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 0.5rem;
}

.main-card-subtitle {
    color: var(--text-light);
    margin-bottom: 1.5rem;
}

.main-card-stats {
    display: flex;
    gap: 1rem;
    justify-content: center;
}

.mini-stat {
    text-align: center;
}

.mini-stat-value {
    display: block;
    font-size: 1rem;
    font-weight: 700;
    color: var(--primary-color);
}

.mini-stat-label {
    display: block;
    font-size: 0.75rem;
    color: var(--text-light);
}

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

.card-1 {
    top: 25%;
    left: 15%;
    animation-delay: 0s;
}

.card-2 {
    top: 50%;
    right: 15%;
    animation-delay: 1s;
}

.card-3 {
    top:75%;
    left: 20%;
    animation-delay: 2s;
}

/* ===== SECTION STYLES ===== */
.section-badge {
    display: inline-flex;
    align-items: center;
    background: rgba(16, 162, 74, 0.1);
    color: var(--primary-color);
    border-radius: 50px;
    padding: 0.5rem 1rem;
    font-size: 0.875rem;
    font-weight: 500;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 1rem;
    letter-spacing: -0.025em;
}

.section-subtitle {
    font-size: 1.1rem;
    color: var(--text-light);
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.6;
}

/* ===== PROBLEMS SECTION ===== */
.problems-section {
    background: linear-gradient(135deg, #fef2f2 0%, #fef7f7 100%);
    position: relative;
}

.problems-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="dots" width="20" height="20" patternUnits="userSpaceOnUse"><circle cx="10" cy="10" r="1" fill="%23fecaca" opacity="0.3"/></pattern></defs><rect width="100" height="100" fill="url(%23dots)"/></svg>');
    opacity: 0.5;
}

/* ===== PROBLEM CARDS ===== */
.problem-card {
    background: var(--bg-white);
    border-radius: var(--border-radius);
    padding: 2rem;
    box-shadow: var(--shadow);
    transition: var(--transition);
    border: 1px solid rgba(239, 68, 68, 0.1);
    position: relative;
    overflow: hidden;
    height: 100%;
}

.problem-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--error-color), #f87171);
    transform: scaleX(0);
    transition: var(--transition);
}

.problem-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-xl);
    border-color: rgba(239, 68, 68, 0.2);
}

.problem-card:hover::before {
    transform: scaleX(1);
}

.problem-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--error-color), #f87171);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    position: relative;
    overflow: hidden;
}

.problem-icon::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(255,255,255,0.2), transparent);
    transform: translateX(-100%);
    transition: var(--transition);
}

.problem-card:hover .problem-icon::before {
    transform: translateX(100%);
}

.problem-icon i {
    font-size: 2rem;
    color: white;
    z-index: 2;
    position: relative;
}

.problem-title {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 1rem;
    letter-spacing: -0.025em;
}

.problem-description {
    color: var(--text-light);
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.problem-impact {
    background: rgba(239, 68, 68, 0.1);
    border-radius: var(--border-radius-sm);
    padding: 1rem;
    border-left: 4px solid var(--error-color);
}

.impact-label {
    font-weight: 600;
    color: var(--error-color);
    font-size: 0.875rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.impact-text {
    color: var(--text-dark);
    font-weight: 500;
    margin-left: 0.5rem;
}

/* ===== SOLUTION PREVIEW ===== */
.solution-preview {
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    border-radius: var(--border-radius-lg);
    padding: 3rem;
    color: white;
    position: relative;
    overflow: hidden;
    text-align: center;
}

.solution-preview::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255,255,255,0.1) 0%, transparent 70%);
    animation: pulse 4s ease-in-out infinite;
}

.solution-content {
    position: relative;
    z-index: 2;
}

.solution-badge {
    display: inline-flex;
    align-items: center;
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 50px;
    padding: 0.5rem 1rem;
    font-size: 0.875rem;
    font-weight: 500;
    margin-bottom: 1rem;
}

.solution-title {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 1rem;
    letter-spacing: -0.025em;
}

.solution-description {
    font-size: 1.1rem;
    margin-bottom: 2rem;
    opacity: 0.9;
    line-height: 1.6;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

/* ===== INDUSTRIES SECTION ===== */
.industries-section {
    background: linear-gradient(135deg, #f0f9ff 0%, #e0f2fe 100%);
    position: relative;
}

.industries-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="industry-grid" width="25" height="25" patternUnits="userSpaceOnUse"><path d="M 25 0 L 0 0 0 25" fill="none" stroke="%23bae6fd" stroke-width="0.5"/></pattern></defs><rect width="100" height="100" fill="url(%23industry-grid)"/></svg>');
    opacity: 0.3;
}

/* ===== INDUSTRY CARDS ===== */
.industry-card {
    background: var(--bg-white);
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
    transition: var(--transition);
    border: 1px solid rgba(176, 201, 53, 0.1);
    position: relative;
    overflow: hidden;
    height: 100%;
}

.industry-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--accent-color), var(--primary-color));
    transform: scaleX(0);
    transition: var(--transition);
}

.industry-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-xl);
    border-color: rgba(176, 201, 53, 0.2);
}

.industry-card:hover::before {
    transform: scaleX(1);
}

.industry-header {
    position: relative;
    padding: 2rem 2rem 1rem;
}

.industry-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--accent-color), var(--primary-color));
    border-radius: var(--border-radius);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
    position: relative;
    overflow: hidden;
}

.industry-icon::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(255,255,255,0.2), transparent);
    transform: translateX(-100%);
    transition: var(--transition);
}

.industry-card:hover .industry-icon::before {
    transform: translateX(100%);
}

.industry-icon i {
    font-size: 2rem;
    color: white;
    z-index: 2;
    position: relative;
}

.industry-badge {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: var(--success-color);
    color: white;
    font-size: 0.625rem;
    font-weight: 600;
    padding: 0.25rem 0.75rem;
    border-radius: 12px;
    text-transform: uppercase;
}

.industry-badge.trending {
    background: var(--warning-color);
}

.industry-badge.new {
    background: var(--error-color);
}

.industry-body {
    padding: 0 2rem;
}

.industry-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 1rem;
    letter-spacing: -0.025em;
}

.industry-description {
    color: var(--text-light);
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.industry-features {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    margin-bottom: 2rem;
}

.industry-features .feature-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem;
    background: rgba(176, 201, 53, 0.05);
    border-radius: var(--border-radius-sm);
    transition: var(--transition);
}

.industry-features .feature-item:hover {
    background: rgba(176, 201, 53, 0.1);
}

.industry-features .feature-item .feature-icon {
    width: 32px;
    height: 32px;
    background: var(--accent-color);
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 0.875rem;
    flex-shrink: 0;
}

.industry-features .feature-item span {
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--text-dark);
}

.industry-footer {
    padding: 0 2rem 2rem;
}

.industry-footer .d-flex {
    flex-wrap: wrap;
}

.industry-footer .btn {
    min-width: 0;
}

@media (max-width: 576px) {
    .industry-footer .d-flex {
        flex-direction: column;
    }
    
    .industry-footer .btn {
        width: 100%;
    }
}

/* ===== INDUSTRY BUTTON ===== */
.btn-industry {
    position: relative;
    overflow: hidden;
    background: linear-gradient(135deg, var(--success-color), #059669);
    color: white;
    font-weight: 600;
    border-radius: var(--border-radius-sm);
    transition: var(--transition);
    box-shadow: 0 4px 15px rgba(16, 185, 129, 0.3);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 12px 24px;
    font-size: 14px;
    cursor: pointer;
    text-decoration: none;
}

.btn-industry .btn-content,
.btn-industry .btn-text {
    position: relative;
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: center;
}

.btn-industry .btn-bg {
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    transition: var(--transition);
    z-index: 1;
}

.btn-industry:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 8px 25px rgba(16, 185, 129, 0.4);
    background: linear-gradient(135deg, #059669, #047857);
    color: white;
    text-decoration: none;
}

.btn-industry:hover .btn-bg {
    left: 0;
}

.btn-industry .btn-icon {
    transition: var(--transition);
}

.btn-industry:hover .btn-icon {
    transform: translateX(4px);
}

/* ===== CUSTOM INDUSTRY CTA ===== */
.custom-industry-cta {
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    border-radius: var(--border-radius-lg);
    padding: 3rem;
    color: white;
    position: relative;
    overflow: hidden;
    text-align: center;
}

.custom-industry-cta::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255,255,255,0.1) 0%, transparent 70%);
    animation: pulse 4s ease-in-out infinite;
}

.cta-content {
    position: relative;
    z-index: 2;
}

.cta-icon {
    width: 100px;
    height: 100px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 2rem;
    position: relative;
    z-index: 2;
}

.cta-icon i {
    font-size: 3rem;
    color: white;
}

.cta-title {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 1rem;
    letter-spacing: -0.025em;
}

.cta-description {
    font-size: 1.1rem;
    margin-bottom: 2rem;
    opacity: 0.9;
    line-height: 1.6;
}

.cta-features {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-bottom: 2rem;
    flex-wrap: wrap;
}

.cta-feature {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(255, 255, 255, 0.1);
    padding: 0.75rem 1.5rem;
    border-radius: 25px;
    backdrop-filter: blur(10px);
}

.cta-feature i {
    color: var(--success-color);
    font-size: 1.25rem;
}

.cta-feature span {
    font-weight: 500;
}


/* ===== MODERN BUTTONS ===== */
.modern-btn, .btn-primary-modern {
    position: relative;
    overflow: hidden;
    background: linear-gradient(135deg, var(--primary-light), var(--primary-dark));
    color: white;
    font-weight: 600;
    border-radius: var(--border-radius-sm);
    transition: var(--transition);
    box-shadow: 0 4px 15px rgba(16, 162, 74, 0.3);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.modern-btn .btn-content, .btn-primary-modern .btn-content {
    position: relative;
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: center;
}

.modern-btn .btn-bg, .btn-primary-modern .btn-bg {
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--primary-dark), var(--primary-color));
    transition: var(--transition);
    z-index: 1;
}

.modern-btn:hover, .btn-primary-modern:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 8px 25px rgba(16, 162, 74, 0.4);
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
}

.modern-btn:hover .btn-bg, .btn-primary-modern:hover .btn-bg {
    left: 0;
}

.modern-btn-outline {
    background: rgba(255, 255, 255, 0.1);
    border: 2px solid var(--primary-light);
    color: var(--primary-light);
    font-weight: 600;
    border-radius: var(--border-radius-sm);
    transition: var(--transition);
    backdrop-filter: blur(10px);
    box-shadow: 0 4px 15px rgba(16, 162, 74, 0.2);
}

.modern-btn-outline:hover {
    background: var(--primary-light);
    color: white;
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 8px 25px rgba(16, 162, 74, 0.4);
    border-color: var(--primary-color);
}

.btn-icon {
    transition: var(--transition);
}

.btn-primary-modern:hover .btn-icon {
    transform: translateX(4px);
}

/* ===== BOOTSTRAP THEMED BUTTONS ===== */
/* Base Button Styles */
.btn-primary, .btn-info, .btn-success, .btn-warning, .btn-danger {
    position: relative;
    overflow: hidden;
    color: white;
    font-weight: 600;
    border-radius: 12px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 12px 24px;
    font-size: 14px;
    cursor: pointer;
    text-decoration: none;
}

/* Primary Button */
.btn-primary {
    background: linear-gradient(135deg, var(--primary-light), var(--primary-dark));
    box-shadow: 0 4px 15px rgba(16, 162, 74, 0.3);
}

.btn-primary:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 8px 25px rgba(16, 162, 74, 0.4);
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
}

/* Info Button */
.btn-info {
    background: linear-gradient(135deg, var(--accent-color), #0891b2);
    box-shadow: 0 4px 15px rgba(176, 201, 53, 0.3);
}

.btn-info:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 8px 25px rgba(176, 201, 53, 0.4);
    background: linear-gradient(135deg, #0891b2, #075985);
}

/* Success Button */
.btn-success {
    background: linear-gradient(135deg, var(--success-color), #059669);
    box-shadow: 0 4px 15px rgba(16, 185, 129, 0.3);
}

.btn-success:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 8px 25px rgba(16, 185, 129, 0.4);
    background: linear-gradient(135deg, #059669, #047857);
}

/* Warning Button */
.btn-warning {
    background: linear-gradient(135deg, var(--warning-color), #d97706);
    box-shadow: 0 4px 15px rgba(245, 158, 11, 0.3);
}

.btn-warning:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 8px 25px rgba(245, 158, 11, 0.4);
    background: linear-gradient(135deg, #d97706, #b45309);
}

/* Danger Button */
.btn-danger {
    background: linear-gradient(135deg, var(--error-color), #dc2626);
    box-shadow: 0 4px 15px rgba(239, 68, 68, 0.3);
}

.btn-danger:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 8px 25px rgba(239, 68, 68, 0.4);
    background: linear-gradient(135deg, #dc2626, #b91c1c);
}

/* Button Sizes */
.btn-sm {
    padding: 8px 16px;
    font-size: 12px;
    border-radius: 8px;
}

.btn-lg {
    padding: 16px 32px;
    font-size: 16px;
    border-radius: 16px;
}

/* Button Variants */
.btn-outline-primary {
    background: rgba(16, 162, 74, 0.1);
    border: 2px solid var(--primary-light);
    color: var(--primary-light);
    font-weight: 600;
    border-radius: var(--border-radius-sm);
    transition: var(--transition);
}

.btn-outline-primary:hover {
    background: var(--primary-light);
    color: white;
    border-color: var(--primary-color);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(16, 162, 74, 0.3);
}

.btn-outline-info {
    background: rgba(176, 201, 53, 0.1);
    border: 2px solid var(--accent-color);
    color: var(--accent-color);
    font-weight: 600;
    border-radius: var(--border-radius-sm);
    transition: var(--transition);
}

.btn-outline-info:hover {
    background: var(--accent-color);
    color: white;
    border-color: #0891b2;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(176, 201, 53, 0.3);
}

.btn-outline-success {
    background: rgba(16, 185, 129, 0.1);
    border: 2px solid var(--success-color);
    color: var(--success-color);
    font-weight: 600;
    border-radius: var(--border-radius-sm);
    transition: var(--transition);
}

.btn-outline-success:hover {
    background: var(--success-color);
    color: white;
    border-color: #059669;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(16, 185, 129, 0.3);
}

.btn-outline-warning {
    background: rgba(245, 158, 11, 0.1);
    border: 2px solid var(--warning-color);
    color: var(--warning-color);
    font-weight: 600;
    border-radius: var(--border-radius-sm);
    transition: var(--transition);
}

.btn-outline-warning:hover {
    background: var(--warning-color);
    color: white;
    border-color: #d97706;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(245, 158, 11, 0.3);
}

.btn-outline-danger {
    background: rgba(239, 68, 68, 0.1);
    border: 2px solid var(--error-color);
    color: var(--error-color);
    font-weight: 600;
    border-radius: var(--border-radius-sm);
    transition: var(--transition);
}

.btn-outline-danger:hover {
    background: var(--error-color);
    color: white;
    border-color: #dc2626;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(239, 68, 68, 0.3);
}

/* ===== PRODUCT DETAIL PAGE ===== */
.product-detail-hero {
    background: linear-gradient(135deg, var(--primary-light) 0%, var(--primary-dark) 50%, var(--accent-color) 100%);
    padding: 180px 0 90px 0;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
}

.product-detail-hero .product-image-gallery {
    margin-top: 0;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.product-detail-hero .product-image-gallery img {
    border-radius: var(--border-radius);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.hero-stat {
    text-align: center;
    padding: 1rem;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: var(--border-radius);
    border: 1px solid rgba(255, 255, 255, 0.2);
    min-width: 120px;
}

.hero-stat .stat-number {
    font-size: 2rem;
    font-weight: 700;
    color: white;
    line-height: 1;
    margin-bottom: 0.5rem;
}

.hero-stat .stat-label {
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.9);
}

.product-price-display {
    display: flex;
    flex-direction: column;
}

.product-price-display .price-label {
    font-size: 0.875rem;
    margin-bottom: 0.25rem;
}

.product-price-display .price-amount {
    font-size: 2rem;
    font-weight: 700;
    color: var(--primary-light);
    line-height: 1;
}

.price-bonus {
    display: flex;
    align-items: center;
    padding: 0.5rem 1rem;
    background: rgba(16, 185, 129, 0.1);
    border-radius: var(--border-radius);
    border-left: 3px solid var(--success-color);
}

.specs-card {
    background: white;
    border-radius: var(--border-radius-lg);
    padding: 3rem;
    box-shadow: var(--shadow);
    border: 1px solid rgba(16, 162, 74, 0.1);
}

.specs-header {
    padding-bottom: 2rem;
    border-bottom: 2px solid rgba(16, 162, 74, 0.1);
    margin-bottom: 2rem;
}

.spec-category {
    padding: 1.5rem;
    background: var(--bg-light);
    border-radius: var(--border-radius);
    border-left: 4px solid var(--primary-light);
    height: 100%;
    transition: var(--transition);
}

.spec-category:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
    border-left-color: var(--primary-color);
}

.spec-category-title {
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
}

.spec-category .spec-value {
    color: var(--text-light);
    margin: 0;
    font-size: 0.95rem;
}

.spec-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.spec-list li {
    padding: 0.5rem 0;
    color: var(--text-light);
    font-size: 0.95rem;
    position: relative;
    padding-left: 1.5rem;
}

.spec-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--success-color);
    font-weight: 700;
}

.benefit-card {
    background: white;
    border-radius: var(--border-radius);
    padding: 2rem;
    box-shadow: var(--shadow);
    border: 1px solid rgba(16, 162, 74, 0.1);
    transition: var(--transition);
    height: 100%;
    text-align: center;
}

.benefit-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-xl);
    border-color: var(--primary-light);
}

.benefit-icon {
    width: 70px;
    height: 70px;
    margin: 0 auto 1.5rem;
    background: linear-gradient(135deg, var(--primary-light), var(--primary-color));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: white;
    box-shadow: 0 4px 15px rgba(16, 162, 74, 0.3);
}

.benefit-title {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 1rem;
}

.benefit-text {
    color: var(--text-light);
    line-height: 1.6;
    margin: 0;
}

.product-hero-image {
    position: relative;
}

.product-hero-image img {
    max-width: 100%;
    height: auto;
    border-radius: var(--border-radius);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

/* ===== MOBILE OPTIMIZATION FOR PRODUCT DETAIL PAGE ===== */
@media (max-width: 991.98px) {
    .product-detail-hero {
        padding: 140px 0 60px 0;
    }
    
    .product-detail-hero h1 {
        font-size: 2rem !important;
    }
    
    .product-detail-hero .lead {
        font-size: 1rem;
    }
    
    .product-hero-image {
        margin-top: 2rem;
    }
}

@media (max-width: 767.98px) {
    .product-detail-hero {
        padding: 120px 0 40px 0;
        text-align: center;
    }
    
    .product-detail-content {
        text-align: center !important;
    }
    
    .product-badge {
        font-size: 0.75rem;
        padding: 6px 12px;
    }
    
    .product-detail-hero h1 {
        font-size: 1.75rem !important;
        margin-bottom: 1rem !important;
    }
    
    .product-detail-hero .lead {
        font-size: 0.95rem;
        margin-bottom: 1.5rem !important;
    }
    
    .product-price-display {
        align-items: center;
        text-align: center;
        margin-bottom: 1rem;
    }
    
    .product-price-display .price-amount {
        font-size: 1.5rem;
    }
    
    .price-section .btn {
        width: 100%;
        font-size: 0.9rem;
        padding: 0.75rem 1rem;
    }
    
    .specs-card {
        padding: 1.5rem;
    }
    
    .specs-header h3 {
        font-size: 1.25rem;
    }
    
    .spec-category {
        padding: 1rem;
        margin-bottom: 1rem;
    }
    
    .spec-category-title {
        font-size: 1rem;
    }
    
    .spec-list li {
        font-size: 0.875rem;
        padding: 0.4rem 0;
    }
    
    .benefit-card {
        padding: 1.5rem;
        margin-bottom: 1.5rem;
    }
    
    .benefit-icon {
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
        margin-bottom: 1rem;
    }
    
    .benefit-title {
        font-size: 1.1rem;
    }
    
    .benefit-text {
        font-size: 0.9rem;
    }
}

@media (max-width: 575.98px) {
    .product-detail-hero {
        padding: 100px 0 30px 0;
    }
    
    .product-detail-hero h1 {
        font-size: 1.5rem !important;
        line-height: 1.3;
    }
    
    .product-detail-hero .lead {
        font-size: 0.9rem;
    }
    
    .product-price-display .price-amount {
        font-size: 1.25rem;
    }
    
    .product-price-display .currency {
        font-size: 1rem;
    }
    
    .price-section .d-flex {
        flex-direction: column;
        gap: 0.75rem !important;
    }
    
    .price-section .btn {
        font-size: 0.85rem;
        padding: 0.65rem 0.85rem;
    }
    
    .modern-feature-card {
        margin-bottom: 1.5rem;
    }
    
    .specs-card {
        padding: 1rem;
        border-radius: var(--border-radius);
    }
    
    .specs-header {
        padding-bottom: 1rem;
        margin-bottom: 1rem;
    }
    
    .specs-header h3 {
        font-size: 1.1rem;
    }
    
    .spec-category {
        padding: 0.875rem;
    }
    
    .benefit-card {
        padding: 1.25rem;
    }
    
    .section-title,
    .benefits-section h2 {
        font-size: 1.5rem;
    }
}

.product-detail-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="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="50" cy="50" r="1" fill="rgba(255,255,255,0.1)"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
    opacity: 0.3;
}

.product-detail-content {
    position: relative;
    z-index: 2;
}

.product-image-gallery {
    background: white;
    border-radius: 20px;
    padding: 2rem;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    margin-top: -100px;
    position: relative;
    z-index: 3;
}

.main-image {
    width: 100%;
    height: 400px;
    object-fit: cover;
    border-radius: 15px;
    margin-bottom: 1rem;
}

.thumbnail-gallery {
    display: flex;
    gap: 10px;
    overflow-x: auto;
    padding: 10px 0;
}

.thumbnail {
    width: 80px;
    height: 80px;
    object-fit: cover;
    border-radius: 10px;
    border: 3px solid transparent;
    transition: all 0.3s ease;
}

.thumbnail-btn {
    background: none;
    border: none;
    padding: 0;
    cursor: pointer;
    border-radius: 10px;
    transition: all 0.3s ease;
}

.thumbnail-btn:hover .thumbnail,
.thumbnail-btn.active .thumbnail {
    border-color: var(--primary-light);
    transform: scale(1.05);
}

.thumbnail-btn:focus {
    outline: 2px solid var(--primary-light);
    outline-offset: 2px;
}

.product-info {
    background: white;
    border-radius: 20px;
    padding: 2rem;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    margin-top: -100px;
    position: relative;
    z-index: 3;
}

.product-badge {
    display: inline-block;
    background: linear-gradient(135deg, var(--success-color), #059669);
    color: white;
    padding: 8px 16px;
    border-radius: 25px;
    font-size: 12px;
    font-weight: 600;
    margin-bottom: 1rem;
}

.product-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #1f2937;
    margin-bottom: 1rem;
    line-height: 1.2;
}

.product-price {
    font-size: 2rem;
    font-weight: 700;
    color: var(--primary-light);
    margin-bottom: 1rem;
}

.product-price .currency {
    font-size: 1.2rem;
    color: #6b7280;
}

.product-description {
    color: #6b7280;
    line-height: 1.6;
    margin-bottom: 2rem;
}

.product-features {
    margin-bottom: 2rem;
}

.feature-item {
    display: flex;
    align-items: center;
    padding: 12px;
    background: #f8fafc;
    border-radius: 10px;
    border-left: 4px solid var(--primary-light);
}

.feature-icon {
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, var(--primary-light), var(--primary-dark));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    margin-right: 1rem;
    font-size: 16px;
}

.feature-text {
    flex: 1;
}

.feature-title {
    font-weight: 600;
    color: #1f2937;
    margin-bottom: 0.25rem;
}

.feature-desc {
    color: #6b7280;
    font-size: 14px;
}

.product-actions {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    margin-bottom: 2rem;
}

.product-specs {
    background: #f8fafc;
    border-radius: 15px;
    padding: 2rem;
    margin-top: 2rem;
}

.spec-item {
    display: flex;
    padding: 1rem 0;
    border-bottom: 1px solid #e5e7eb;
}

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

.spec-label {
    width: 140px;
    font-weight: 600;
    color: #1f2937;
}

.spec-value {
    color: #6b7280;
}

.related-products {
    margin-top: 4rem;
}

.related-product-card {
    background: white;
    border-radius: 15px;
    padding: 1.5rem;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    text-decoration: none;
    color: inherit;
}

.related-product-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
    color: inherit;
    text-decoration: none;
}

.related-product-image {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 10px;
    margin-bottom: 1rem;
}

.related-product-title {
    font-weight: 600;
    color: #1f2937;
    margin-bottom: 0.5rem;
}

.related-product-price {
    color: var(--primary-light);
    font-weight: 700;
}

/* Product Detail Responsive */
@media (max-width: 768px) {
    .product-detail-hero {
        min-height: 40vh;
    }
    
    .product-image-gallery,
    .product-info {
        margin-top: -50px;
    }
    
    .product-title {
        font-size: 2rem;
    }
    
    .product-actions {
        flex-direction: column;
    }
    
    .product-actions .btn {
        width: 100%;
    }
}

/* ===== FEATURES SECTION ===== */
.features-section {
    background: var(--bg-white);
    position: relative;
}

.modern-feature-card {
    background: var(--bg-white);
    border-radius: var(--border-radius);
    padding: 2rem;
    text-align: center;
    box-shadow: var(--shadow);
    transition: var(--transition);
    border: 1px solid rgba(255, 255, 255, 0.2);
    height: 100%;
    position: relative;
    overflow: hidden;
}

.modern-feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(16, 162, 74, 0.05), transparent);
    opacity: 0;
    transition: var(--transition);
}

.modern-feature-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-xl);
}

.modern-feature-card:hover::before {
    opacity: 1;
}

.feature-icon-modern {
    position: relative;
    margin-bottom: 1.5rem;
}

.icon-wrapper {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.icon-wrapper i {
    font-size: 1.75rem;
    color: white;
}

.icon-bg {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 120px;
    height: 120px;
    background: linear-gradient(135deg, rgba(16, 162, 74, 0.1), rgba(176, 201, 53, 0.1));
    border-radius: 50%;
    z-index: 1;
    animation: pulse 3s infinite;
}

.feature-title-modern {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 1rem;
}

.feature-description-modern {
    color: var(--text-light);
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.feature-highlight {
    background: rgba(16, 162, 74, 0.1);
    color: var(--primary-color);
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.875rem;
    font-weight: 500;
}

/* ===== MODERN FEATURE SHOWCASE ===== */
.modern-feature-showcase {
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    border-radius: var(--border-radius-lg);
    padding: 4rem 3rem;
    color: white;
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    gap: 3rem;
}

.modern-feature-showcase::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255,255,255,0.1) 0%, transparent 70%);
    animation: pulse 4s ease-in-out infinite;
}

.showcase-content {
    flex: 1;
    position: relative;
    z-index: 2;
}

.showcase-badge {
    display: inline-flex;
    align-items: center;
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 50px;
    padding: 0.5rem 1rem;
    font-size: 0.875rem;
    font-weight: 500;
    margin-bottom: 1rem;
}

.showcase-title {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 1rem;
    letter-spacing: -0.025em;
}

.showcase-description {
    font-size: 1.1rem;
    margin-bottom: 2rem;
    opacity: 0.9;
    line-height: 1.6;
}

.showcase-features {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-bottom: 2rem;
}

.showcase-feature {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.showcase-feature i {
    color: var(--success-color);
    font-size: 1.25rem;
}

.showcase-visual {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    position: relative;
    z-index: 2;
}

.visual-card {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: var(--border-radius);
    padding: 1.5rem;
    display: flex;
    align-items: center;
    gap: 1rem;
    transition: var(--transition);
}

.visual-card:hover {
    background: rgba(255, 255, 255, 0.15);
    transform: translateX(10px);
}

.visual-card .card-icon {
    width: 50px;
    height: 50px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: var(--border-radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.25rem;
}

.card-info {
    display: flex;
    flex-direction: column;
}

.card-value {
    font-size: 1.5rem;
    font-weight: 700;
    color: white;
}

.card-label {
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.8);
}

.btn-showcase {
    position: relative;
    overflow: hidden;
    background: rgba(255, 255, 255, 0.2);
    border: 1px solid rgba(255, 255, 255, 0.3);
    color: white;
    font-weight: 600;
    border-radius: var(--border-radius-sm);
    padding: 1rem 2rem;
    transition: var(--transition);
}

.btn-showcase:hover {
    background: rgba(255, 255, 255, 0.3);
    color: white;
    transform: translateY(-2px);
}

/* ===== CTA SECTION ===== */
.cta-section {
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    position: relative;
    overflow: hidden;
}

/* ===== FAQ SECTION ===== */
.faq-section {
    background: var(--bg-white);
}

.modern-accordion .accordion-item {
    background: var(--bg-white);
    border: 1px solid rgba(16, 162, 74, 0.15);
    border-radius: var(--border-radius) !important;
    box-shadow: var(--shadow);
    overflow: hidden;
}

.modern-accordion .accordion-item + .accordion-item {
    margin-top: 1rem;
}

.modern-accordion .accordion-button {
    padding: 1.25rem 1.25rem;
    font-weight: 600;
    color: var(--text-dark);
    background: rgba(16, 162, 74, 0.03);
}

.modern-accordion .accordion-button:not(.collapsed) {
    color: var(--primary-color);
    background: rgba(16, 162, 74, 0.08);
    box-shadow: inset 0 -1px 0 rgba(0,0,0,0.05);
}

.modern-accordion .accordion-button:focus {
    border-color: rgba(16, 162, 74, 0.35);
    box-shadow: 0 0 0 0.25rem rgba(16, 162, 74, 0.15);
}

.modern-accordion .accordion-body {
    color: var(--text-light);
    line-height: 1.7;
}

/* ===== NEWS CARDS ===== */
.news-card {
    background: var(--bg-white);
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
    transition: var(--transition);
    border: 1px solid rgba(16, 162, 74, 0.1);
    position: relative;
    overflow: hidden;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.news-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-color), var(--accent-color));
    transform: scaleX(0);
    transition: var(--transition);
}

.news-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-xl);
    border-color: rgba(16, 162, 74, 0.2);
}

.news-card:hover::before {
    transform: scaleX(1);
}

.news-image {
    position: relative;
    overflow: hidden;
    border-radius: var(--border-radius) var(--border-radius) 0 0;
    height: 200px;
}

.news-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.news-card:hover .news-image img {
    transform: scale(1.05);
}

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

.news-title {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 0.75rem;
    line-height: 1.4;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.news-description {
    color: var(--text-light);
    margin-bottom: 1.5rem;
    line-height: 1.6;
    flex: 1;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.news-card .btn {
    margin-top: auto;
    align-self: flex-start;
}

/* News Card Responsive */
@media (max-width: 768px) {
    .news-image {
        height: 180px;
    }
    
    .news-content {
        padding: 1.25rem;
    }
    
    .news-title {
        font-size: 1.1rem;
    }
    
    .news-description {
        -webkit-line-clamp: 2;
        line-clamp: 2;
    }
}

@media (max-width: 576px) {
    .news-image {
        height: 160px;
    }
    
    .news-content {
        padding: 1rem;
    }
    
    .news-title {
        font-size: 1rem;
    }
}

/* ===== MODERN NEWS CARDS ===== */
.modern-news-card {
    background: var(--bg-white);
    border-radius: 1rem;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid rgba(16, 162, 74, 0.08);
    position: relative;
    overflow: hidden;
    height: 100%;
    display: flex;
    flex-direction: column;
}
.content-page{
    margin-top: 140px;
}
.modern-news-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--primary-color), var(--accent-color));
    transform: scaleX(0);
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 2;
}

.modern-news-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 32px rgba(16, 162, 74, 0.15);
    border-color: rgba(16, 162, 74, 0.25);
}

.modern-news-card:hover::before {
    transform: scaleX(1);
}

.modern-news-image {
    position: relative;
    overflow: hidden;
    border-radius: 1rem 1rem 0 0;
    height: 240px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
}

.news-image-link {
    display: block;
    width: 100%;
    height: 100%;
    position: relative;
}

.modern-news-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.modern-news-card:hover .modern-news-image img {
    transform: scale(1.1);
}

.news-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to bottom, transparent 0%, rgba(0, 0, 0, 0.5) 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1;
}

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

.news-read-more {
    width: 56px;
    height: 56px;
    background: var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.5rem;
    transform: scale(0.8);
    transition: transform 0.3s ease;
    box-shadow: 0 4px 12px rgba(16, 162, 74, 0.4);
}

.modern-news-card:hover .news-read-more {
    transform: scale(1);
}

.news-date-badge {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    padding: 0.5rem 1rem;
    border-radius: 2rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--text-dark);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    z-index: 2;
    transition: all 0.3s ease;
}

.modern-news-card:hover .news-date-badge {
    background: var(--primary-color);
    color: white;
    transform: scale(1.05);
}

.news-date-badge i {
    font-size: 1rem;
}

.modern-news-content {
    padding: 1.75rem;
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.modern-news-title {
    font-size: 1.25rem;
    font-weight: 600;
    margin: 0;
    line-height: 1.4;
}

.modern-news-title a {
    color: var(--text-dark);
    text-decoration: none;
    transition: color 0.3s ease;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.modern-news-title a:hover {
    color: var(--primary-color);
}

.modern-news-excerpt {
    color: var(--text-light);
    line-height: 1.7;
    margin: 0;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
    flex: 1;
}

.modern-news-btn {
    display: inline-flex;
    align-items: center;
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9375rem;
    transition: all 0.3s ease;
    margin-top: auto;
    align-self: flex-start;
}

.modern-news-btn i {
    transition: transform 0.3s ease;
}

.modern-news-btn:hover {
    color: var(--primary-dark);
    transform: translateX(4px);
}

.modern-news-btn:hover i {
    transform: translateX(4px);
}

/* Modern News Card Responsive */
@media (max-width: 991.98px) {
    .modern-news-image {
        height: 220px;
    }
    
    .modern-news-content {
        padding: 1.5rem;
    }
}

@media (max-width: 767.98px) {
    .content-page{
        margin-top: 60px;
    }
    .modern-news-image {
        height: 200px;
    }
    
    .modern-news-content {
        padding: 1.25rem;
        gap: 0.875rem;
    }
    
    .modern-news-title {
        font-size: 1.125rem;
    }
    
    .modern-news-excerpt {
        -webkit-line-clamp: 2;
        line-clamp: 2;
    }
}

@media (max-width: 575.98px) {
    .modern-news-image {
        height: 180px;
    }
    
    .modern-news-content {
        padding: 1rem;
    }
    
    .modern-news-title {
        font-size: 1rem;
    }
    
    .news-date-badge {
        top: 0.75rem;
        right: 0.75rem;
        padding: 0.375rem 0.875rem;
        font-size: 0.8125rem;
    }
}

/* ===== NEWS DETAIL PAGE STYLING ===== */
.news-detail-content {
    position: relative;
}

.news-meta {
    padding-bottom: 1rem;
    border-bottom: 1px solid rgba(16, 162, 74, 0.1);
}

.news-date-meta {
    display: flex;
    align-items: center;
    font-size: 0.9375rem;
}

.news-share-section {
    border-top: 1px solid rgba(16, 162, 74, 0.1);
}

.news-share {
    display: flex;
    align-items: center;
}

.share-buttons {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.share-btn {
    width: 38px;
    height: 38px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    border: 1px solid rgba(16, 162, 74, 0.2);
    background: var(--bg-white);
    color: var(--text-dark);
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 1rem;
    cursor: pointer;
}

.share-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    border-color: transparent;
}

.share-facebook:hover {
    background: #1877f2;
    color: white;
}

.share-twitter:hover {
    background: #1da1f2;
    color: white;
}

.share-whatsapp:hover {
    background: #25d366;
    color: white;
}

.share-linkedin:hover {
    background: #0a66c2;
    color: white;
}

.share-copy:hover {
    background: var(--primary-color);
    color: white;
    border-color: var(--primary-color);
}

.share-btn:active {
    transform: translateY(0) scale(0.95);
}

.news-content-wrapper {
    line-height: 1.8;
    color: var(--text-dark);
}

.news-content-wrapper p {
    margin-bottom: 1.25rem;
}

.news-content-wrapper img {
    max-width: 100%;
    height: auto;
    border-radius: 0.5rem;
    margin: 1.5rem 0;
}

.news-content-wrapper h2,
.news-content-wrapper h3,
.news-content-wrapper h4 {
    margin-top: 2rem;
    margin-bottom: 1rem;
    color: var(--text-dark);
    font-weight: 600;
}

.news-content-wrapper ul,
.news-content-wrapper ol {
    margin-bottom: 1.25rem;
    padding-left: 2rem;
}

.news-content-wrapper li {
    margin-bottom: 0.5rem;
}

/* News Detail Responsive */
@media (max-width: 767.98px) {
    .news-meta {
        flex-direction: column;
        align-items: flex-start !important;
        gap: 1rem !important;
    }
    
    .news-share-section {
        margin-top: 2rem;
        padding-top: 1.5rem;
    }
    
    .news-share-section > div {
        flex-direction: column;
        align-items: flex-start !important;
        gap: 1rem !important;
    }
    
    .share-buttons {
        width: 100%;
        justify-content: flex-start;
    }
    
    .share-btn {
        width: 40px;
        height: 40px;
    }
}

.modern-cta {
    position: relative;
    z-index: 2;
    color: white;
}

.cta-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
}

.cta-shapes {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
}

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

.cta-shape.shape-1 {
    width: 300px;
    height: 300px;
    top: -150px;
    left: -150px;
    animation-delay: 0s;
}

.cta-shape.shape-2 {
    width: 200px;
    height: 200px;
    bottom: -100px;
    right: -100px;
    animation-delay: 3s;
}

.cta-shape.shape-3 {
    width: 150px;
    height: 150px;
    top: 50%;
    right: 20%;
    animation-delay: 6s;
}

.cta-badge {
    display: inline-flex;
    align-items: center;
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 50px;
    padding: 0.5rem 1rem;
    font-size: 0.875rem;
    font-weight: 500;
    margin-bottom: 1rem;
}


.cta-stats {
    display: flex;
    gap: 2rem;
}

.cta-stat {
    text-align: center;
}

.cta-stat .stat-number {
    display: block;
    font-size: 1.5rem;
    font-weight: 700;
    color: white;
}

.cta-stat .stat-label {
    display: block;
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.8);
}

.btn-cta-primary, .btn-cta-outline {
    position: relative;
    overflow: hidden;
    font-weight: 600;
    border-radius: var(--border-radius-sm);
    transition: var(--transition);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.btn-cta-primary {
    background: rgba(255, 255, 255, 0.2);
    border: 1px solid rgba(255, 255, 255, 0.3);
    color: white;
    backdrop-filter: blur(10px);
}

.btn-cta-primary .btn-content {
    position: relative;
    z-index: 2;
}

.btn-cta-primary .btn-bg {
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.3);
    transition: var(--transition);
    z-index: 1;
}

.btn-cta-primary:hover .btn-bg {
    left: 0;
}

.btn-cta-outline {
    background: transparent;
    border: 2px solid rgba(255, 255, 255, 0.5);
    color: white;
}

.btn-cta-primary:hover, .btn-cta-outline:hover {
    background: rgba(255, 255, 255, 0.3);
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(255, 255, 255, 0.2);
}

/* ===== MODERN FOOTER ===== */
.modern-footer {
    background: var(--bg-dark);
    color: white;
    position: relative;
    overflow: hidden;
    border-top: 4px solid #10A24A;
}

.modern-footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, #1d1d1d 0%, #272727 100%);
}

.footer-main {
    position: relative;
    z-index: 2;
    padding: 4rem 0 2rem;
}

.footer-logo {
    font-size: 1.75rem;
    font-weight: 700;
    letter-spacing: -0.025em;
}

.footer-description {
    color: var(--text-muted);
    line-height: 1.6;
    margin-bottom: 2rem;
}

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

.social-link {
    width: 40px;
    height: 40px;
    background: rgba(16, 162, 74, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-color);
    transition: var(--transition);
    text-decoration: none;
}

.social-link:hover {
    background: var(--primary-color);
    color: white;
    transform: translateY(-3px);
}

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

.footer-links {
    list-style: none;
    padding: 0;
}

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

.footer-link {
    color: var(--text-muted);
    text-decoration: none;
    transition: var(--transition);
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

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

.footer-contact {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

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

.contact-icon {
    width: 40px;
    height: 40px;
    background: rgba(16, 162, 74, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-color);
}

.contact-info {
    display: flex;
    flex-direction: column;
}

.contact-label {
    font-size: 0.75rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

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

.footer-bottom {
    position: relative;
    z-index: 2;
    padding: 2rem 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-copyright {
    color: var(--text-muted);
}

.footer-legal {
    display: flex;
    gap: 2rem;
}

.legal-link {
    color: var(--text-muted);
    text-decoration: none;
    transition: var(--transition);
}

.legal-link:hover {
    color: var(--primary-color);
}

/* ===== RESPONSIVE DESIGN ===== */
@media (max-width: 768px) {
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-subtitle {
        font-size: 1.1rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .hero-buttons {
        flex-direction: column;
        align-items: stretch;
    }
    
    .hero-stats {
        justify-content: center;
        gap: 1rem;
    }
    
    .hero-visual {
        height: 400px;
        margin-top: 3rem;
    }
    
    .modern-card {
        width: 160px;
        min-width: 160px;
        padding: 1rem;
    }
    
    .modern-main-card {
        width: 250px;
        max-width: 250px;
        padding: 2rem;
    }
    
    .card-1 {
        top: 20%;
        left: 8%;
    }
    
    .card-2 {
        top: 35%;
        right: 8%;
    }
    
    .card-3 {
        top: 50%;
        left: 12%;
    }
    
    .problem-card {
        padding: 1.5rem;
    }
    
    .problem-icon {
        width: 60px;
        height: 60px;
        margin-bottom: 1rem;
    }
    
    .problem-icon i {
        font-size: 1.5rem;
    }
    
    .problem-title {
        font-size: 1.1rem;
    }
    
    .solution-preview {
        padding: 2rem;
    }
    
    .solution-title {
        font-size: 1.5rem;
    }
    
    .industry-icon {
        width: 60px;
        height: 60px;
        margin-bottom: 1rem;
    }
    
    .industry-icon i {
        font-size: 1.5rem;
    }
    
    .industry-title {
        font-size: 1.25rem;
    }
    
    .custom-industry-cta {
        padding: 2rem;
    }
    
    .cta-icon {
        width: 80px;
        height: 80px;
        margin-bottom: 1.5rem;
    }
    
    .cta-icon i {
        font-size: 2.5rem;
    }
    
    .cta-title {
        font-size: 1.5rem;
    }
    
    .cta-features {
        gap: 1rem;
    }
    
    .modern-feature-showcase {
        flex-direction: column;
        text-align: center;
        padding: 3rem 2rem;
    }
    
    .showcase-visual {
        flex-direction: row;
        justify-content: center;
    }
    
    
    .cta-stats {
        justify-content: center;
    }
    
    .footer-legal {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }
}

@media (max-width: 576px) {
    .hero-title {
        font-size: 2rem;
    }
    
    .section-title {
        font-size: 1.75rem;
    }
    
    .modern-card {
        width: 240px;
        min-width: 140px;
        padding: 0.75rem;
        font-size: 0.75rem;
    }
    
    .modern-main-card {
        width: 240px;
        max-width: 200px;
        padding: 1.5rem;
    }
    
    .card-1 {
        top: 0%;
        left: 5%;
    }
    
    .card-2 {
        top: 25%;
        right: 5%;
    }
    
    .card-3 {
        top: 50%;
        left: 8%;
    }
    
    .product-features-modern {
        grid-template-columns: 1fr;
    }
    
    .showcase-visual {
        flex-direction: column;
    }
    
    .problem-card {
        padding: 1.25rem;
    }
    
    .problem-icon {
        width: 50px;
        height: 50px;
        margin-bottom: 0.75rem;
    }
    
    .problem-icon i {
        font-size: 1.25rem;
    }
    
    .problem-title {
        font-size: 1rem;
    }
    
    .solution-preview {
        padding: 1.5rem;
    }
    
    .solution-title {
        font-size: 1.25rem;
    }
    
    .industry-icon {
        width: 50px;
        height: 50px;
        margin-bottom: 0.75rem;
    }
    
    .industry-icon i {
        font-size: 1.25rem;
    }
    
    .industry-title {
        font-size: 1.1rem;
    }
    
    .industry-features .feature-item {
        padding: 0.5rem;
        gap: 0.5rem;
    }
    
    .industry-features .feature-item .feature-icon {
        width: 24px;
        height: 24px;
        font-size: 0.75rem;
    }
    
    .industry-features .feature-item span {
        font-size: 0.75rem;
    }
    
    .custom-industry-cta {
        padding: 1.5rem;
    }
    
    .cta-icon {
        width: 60px;
        height: 60px;
        margin-bottom: 1rem;
    }
    
    .cta-icon i {
        font-size: 2rem;
    }
    
    .cta-title {
        font-size: 1.25rem;
    }
    
    .cta-features {
        flex-direction: column;
        gap: 0.75rem;
    }
    
    .cta-actions {
        margin-top: 2rem;
    }
}

/* ===== UTILITY CLASSES ===== */
.text-primary {
    color: var(--primary-color) !important;
}

.bg-primary {
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark)) !important;
}

.bg-light {
    background-color: var(--bg-light) !important;
}

.shadow-sm {
    box-shadow: var(--shadow-sm) !important;
}

/* ===== SMOOTH SCROLLING ===== */
html {
    scroll-behavior: smooth;
}

/* Offset anchors so content isn't hidden under fixed headers */
section[id] {
    scroll-margin-top: calc(var(--topbar-height) + var(--navbar-height) + 12px);
}

/* ===== CUSTOM SCROLLBAR ===== */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: var(--bg-light);
}

::-webkit-scrollbar-thumb {
    background: var(--primary-color);
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--primary-dark);
}

/* ===== SCROLL ANIMATIONS ===== */
@media (prefers-reduced-motion: no-preference) {
    .modern-product-card,
    .modern-feature-card {
        opacity: 0;
        transform: translateY(30px);
        animation: fadeInUp 0.6s ease forwards;
    }
    
    .modern-product-card:nth-child(1) { animation-delay: 0.1s; }
    .modern-product-card:nth-child(2) { animation-delay: 0.2s; }
    .modern-product-card:nth-child(3) { animation-delay: 0.3s; }
    
    .modern-feature-card:nth-child(1) { animation-delay: 0.1s; }
    .modern-feature-card:nth-child(2) { animation-delay: 0.2s; }
    .modern-feature-card:nth-child(3) { animation-delay: 0.3s; }
    .modern-feature-card:nth-child(4) { animation-delay: 0.4s; }
}

@keyframes fadeInUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ===== CURSOR BLINK EFFECT ===== */
.cursor-blink {
    animation: blink 1s infinite;
    color: var(--primary-color);
    font-weight: normal;
}

@keyframes blink {
    0%, 50% {
        opacity: 1;
    }
    51%, 100% {
        opacity: 0;
    }
}

/* ===== MODERN NAVBAR TRANSITION ===== */

/* ===== ENHANCED HOVER EFFECTS ===== */
.modern-product-card,
.modern-feature-card {
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.modern-btn,
.btn-primary-modern,
.btn-showcase {
    transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ===== GLASSMORPHISM EFFECTS ===== */
.glass-effect {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

/* ===== MODERN GRADIENTS ===== */
.gradient-bg-1 {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
}

.gradient-bg-2 {
    background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
}

.gradient-bg-3 {
    background: linear-gradient(135deg, #4facfe 0%, #00f2fe 100%);
}

/* ===== MODERN SHADOWS ===== */
.shadow-modern {
    box-shadow: 0 10px 25px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
}

.shadow-modern-lg {
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
}

/* ===== MODERN ANIMATIONS ===== */
@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes scaleIn {
    from {
        opacity: 0;
        transform: scale(0.8);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

@keyframes rotateIn {
    from {
        opacity: 0;
        transform: rotate(-180deg) scale(0.8);
    }
    to {
        opacity: 1;
        transform: rotate(0deg) scale(1);
    }
}

/* ===== MODERN LOADING STATES ===== */
.loading {
    position: relative;
    overflow: hidden;
}

.loading::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    animation: loading 1.5s infinite;
}

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

/* ===== BODY LOADED STATE ===== */
body:not(.loaded) .modern-product-card,
body:not(.loaded) .modern-feature-card {
    opacity: 0;
    transform: translateY(30px);
}

body.loaded .modern-product-card,
body.loaded .modern-feature-card {
    opacity: 1;
    transform: translateY(0);
    transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ===== CUSTOM CURSOR ===== */
@media (hover: hover) {
    .cursor-follow {
        cursor: none !important;
    }
}

/* ===== MODERN SCROLL PROGRESS ===== */
.scroll-progress {
    position: fixed;
    top: 0;
    left: 0;
    width: 0%;
    height: 3px;
    background: linear-gradient(90deg, var(--primary-color), var(--accent-color));
    z-index: 9999;
    transition: width 0.1s ease;
}

/* ===== ENHANCED GLASSMORPHISM ===== */
.glass-morphism {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    box-shadow: 0 8px 32px 0 rgba(31, 38, 135, 0.37);
}

/* ===== MODERN NEUMORPHISM ===== */
.neumorphism {
    background: #f0f0f3;
    border-radius: var(--border-radius);
    box-shadow: 
        20px 20px 60px #d1d9e6,
        -20px -20px 60px #ffffff;
}

.neumorphism-inset {
    background: #f0f0f3;
    border-radius: var(--border-radius);
    box-shadow: 
        inset 20px 20px 60px #d1d9e6,
        inset -20px -20px 60px #ffffff;
}

/* ===== MODERN GRADIENT BORDERS ===== */
.gradient-border {
    position: relative;
    background: var(--bg-white);
    border-radius: var(--border-radius);
}

.gradient-border::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    border-radius: var(--border-radius);
    padding: 2px;
    mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    mask-composite: exclude;
    -webkit-mask-composite: xor;
}

/* ===== MODERN TEXT EFFECTS ===== */
.text-gradient {
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.text-shadow {
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

/* ===== MODERN FOCUS STATES ===== */
.modern-focus:focus {
    outline: none;
    box-shadow: 0 0 0 3px rgba(16, 162, 74, 0.1);
    border-color: var(--primary-color);
}

/* ===== MODERN HOVER STATES ===== */
.hover-lift:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

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

.hover-rotate:hover {
    transform: rotate(5deg);
}

/* ===== MODERN TRANSITIONS ===== */
.transition-all {
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.transition-fast {
    transition: all 0.15s cubic-bezier(0.4, 0, 0.2, 1);
}

.transition-slow {
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}


/* ===== MODERN RESPONSIVE UTILITIES ===== */
@media (max-width: 768px) {
    .hero-section {
        padding-top: 160px;
    }
    .mobile-hidden {
        display: none !important;
    }
    
    .mobile-full {
        width: 100% !important;
    }
    
    .mobile-center {
        text-align: center !important;
    }
    .library-detail-hero {
        padding: 100px 0 0 0;
    }
}

@media (min-width: 769px) {
    .desktop-hidden {
        display: none !important;
    }
}

/* Modern Sidebar Styles */
.latest-articles-list {
    display: flex;
    flex-direction: column;
    gap: 0;
}

.latest-article-item {
    padding: 1rem 0;
    border-bottom: 1px solid #e9ecef;
    transition: all 0.3s ease;
}

.latest-article-item:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.latest-article-item:first-child {
    padding-top: 0;
}

.latest-article-item:hover {
    background-color: #f8f9fa;
    margin: 0 -1rem;
    padding-left: 1rem;
    padding-right: 1rem;
    border-radius: 0.5rem;
}

.latest-article-link {
    color: inherit;
    display: block;
    transition: all 0.3s ease;
}

.latest-article-link:hover {
    text-decoration: none;
}

.latest-article-thumbnail {
    width: 60px;
    height: 60px;
    overflow: hidden;
    border-radius: 0.5rem;
    background-color: #f8f9fa;
}

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

.latest-article-item:hover .latest-article-image {
    transform: scale(1.1);
}

.latest-article-info {
    min-width: 0;
}

.latest-article-title {
    color: #212529;
    font-size: 0.95rem;
    font-weight: 500;
    line-height: 1.4;
    margin: 0;
    transition: all 0.3s ease;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
}

.latest-article-item:hover .latest-article-title {
    color: var(--bs-primary);
    font-weight: 600;
}

.latest-article-date {
    font-size: 0.75rem;
    margin-top: 0.25rem;
}

.latest-article-arrow {
    display: flex;
    align-items: center;
    opacity: 0.5;
    transition: all 0.3s ease;
    padding-top: 0.125rem;
}

.latest-article-item:hover .latest-article-arrow {
    opacity: 1;
    transform: translateX(5px);
}

/* Modern Language Dropdown in Topbar */
.modern-lang-dropdown {
    position: relative;
}

.modern-lang-toggle {
    background: rgba(16, 162, 74, 0.1);
    border: 1px solid rgba(16, 162, 74, 0.2);
    color: var(--primary-color);
    padding: 0.25rem 0.5rem;
    border-radius: 6px;
    transition: var(--transition);
    font-weight: 500;
    font-size: 0.75rem;
}

.modern-lang-toggle:hover {
    background: rgba(16, 162, 74, 0.15);
    border-color: var(--primary-color);
    color: var(--primary-dark);
    transform: translateY(-1px);
    box-shadow: 0 2px 8px rgba(16, 162, 74, 0.2);
}

.modern-lang-toggle:focus {
    box-shadow: 0 0 0 3px rgba(16, 162, 74, 0.2);
}

.modern-lang-toggle .bi-chevron-down {
    transition: transform 0.3s ease;
    font-size: 0.75rem;
}

.modern-lang-dropdown.show .modern-lang-toggle .bi-chevron-down {
    transform: rotate(180deg);
}

.modern-lang-menu {
    min-width: 160px;
    padding: 0.375rem;
    border: 1px solid rgba(16, 162, 74, 0.15);
    border-radius: 10px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
    background: white;
    margin-top: 0.5rem !important;
    font-size: 0.875rem;
}

.modern-lang-item {
    padding: 0.5rem 0.75rem;
    border-radius: 6px;
    transition: var(--transition);
    margin-bottom: 0.125rem;
    text-decoration: none;
    color: var(--text-dark);
    font-size: 0.875rem;
}

.modern-lang-item .flex-grow-1 {
    font-size: 0.75rem;
    font-weight: 500;
}

.modern-lang-item:last-child {
    margin-bottom: 0;
}

.modern-lang-item:hover {
    background: rgba(16, 162, 74, 0.08);
    color: var(--primary-color);
    transform: translateX(4px);
}

.modern-lang-item.active {
    background: linear-gradient(135deg, rgba(16, 162, 74, 0.1), rgba(11, 77, 36, 0.1));
    color: var(--primary-color);
    font-weight: 600;
    border-left: 3px solid var(--primary-color);
}

.modern-lang-item .lang-flag {
    width: 20px !important;
    height: auto;
    border-radius: 3px;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
    flex-shrink: 0;
}

.modern-lang-item.active .lang-flag {
    box-shadow: 0 2px 6px rgba(16, 162, 74, 0.3);
}

/* Siena Accessibility Widget - Position to Right */
.asw-menu-btn {
    left: auto !important;
    right: 30px !important;
    bottom: 30px !important;
}

/* Also target the widget container if needed */
.asw-widget {
    left: auto !important;
    right: 30px !important;
}

/* Position the menu to the right when opened */
.asw-menu {
    left: auto !important;
    right: 0px !important;
    bottom: 100px !important;
    transform-origin: bottom right !important;
}
.asw-footer{
    display: none !important;
}
/* Mobile responsive */
/* Budget & Expenditure Section */
.budget-expenditure {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.budget-card {
    background: #ffffff;
    border-radius: var(--border-radius);
    transition: var(--transition);
    border: 1px solid rgba(16, 162, 74, 0.1);
}

.budget-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.1) !important;
    border-color: rgba(16, 162, 74, 0.2);
}

.budget-metric {
    padding: 0.75rem;
    background: rgba(16, 162, 74, 0.05);
    border-radius: var(--border-radius-sm);
    border-left: 3px solid var(--primary-color);
}

.budget-metric .metric-label {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.budget-metric .metric-value {
    font-size: 1.25rem;
    display: block;
    margin-top: 0.25rem;
}

.budget-card progress {
    width: 100%;
    height: 10px;
    border-radius: 999px;
    border: none;
    background: rgba(16, 162, 74, 0.1);
    overflow: hidden;
}

.budget-card progress::-webkit-progress-bar {
    background: rgba(16, 162, 74, 0.1);
    border-radius: 999px;
}

.budget-card progress::-webkit-progress-value {
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    border-radius: 999px;
    transition: width 0.6s ease;
}

.budget-card progress::-moz-progress-bar {
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    border-radius: 999px;
}

.budget-card .yearly-expenditure {
    background: rgba(16, 162, 74, 0.02);
    border-radius: var(--border-radius-sm);
}

.budget-card .yearly-expenditure table {
    font-size: 0.875rem;
}

.budget-card .yearly-expenditure tbody tr {
    border-bottom: 1px solid rgba(16, 162, 74, 0.05);
}

.budget-card .yearly-expenditure tbody tr:last-child {
    border-bottom: none;
}

.budget-note {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.98), rgba(224, 241, 229, 0.6));
    border-radius: var(--border-radius);
    padding: 1.75rem;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    border-left: 4px solid var(--primary-color);
}

.budget-note h6 {
    color: var(--primary-color);
    font-size: 1rem;
    font-weight: 600;
}

.budget-note p {
    line-height: 1.8;
    margin-bottom: 1rem;
    font-size: 0.9375rem;
}

.budget-note p:last-child {
    margin-bottom: 0;
}

.budget-note strong {
    color: var(--primary-dark);
    font-weight: 600;
}

/* About Section */
.about-section {
    position: relative;
}

.about-image-wrapper {
    position: relative;
    overflow: hidden;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-lg);
}

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

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

.about-content {
    padding: 1rem 0;
}

.about-content h2 {
    color: var(--text-dark);
    font-size: 2rem;
}

.about-text {
    color: var(--text-muted);
    line-height: 1.8;
    font-size: 1.05rem;
}

.about-text p {
    margin-bottom: 1rem;
}

.about-text ul,
.about-text ol {
    margin-bottom: 1rem;
    padding-left: 1.5rem;
}

.about-text a {
    color: var(--primary-color);
    text-decoration: none;
}

.about-text a:hover {
    text-decoration: underline;
}

/* Mobile Responsive for About */
@media (max-width: 768px) {
    .about-content h2 {
        font-size: 1.75rem;
    }
    
    .about-text {
        font-size: 1rem;
    }
    
    .about-image-wrapper {
        margin-bottom: 2rem;
    }
}

/* Project Achievement Output 2 Section */
.project-output2 {
    background: #f8f9fa;
}


.output2-stat-wrapper {
    background: #ffffff;
    border-radius: var(--border-radius);
    padding: 2.5rem;
    box-shadow: var(--shadow-lg);
    border: 1px solid rgba(16, 162, 74, 0.08);
    display: flex;
    flex-direction: column;
    height: 100%;
}

.compact-stat-list {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    overflow-y: auto;
    overflow-x: hidden;
    min-height: 0;
    max-height: 500px;
    padding-right: 0.5rem;
}

.compact-stat-list::-webkit-scrollbar {
    width: 6px;
}

.compact-stat-list::-webkit-scrollbar-track {
    background: rgba(16, 162, 74, 0.05);
    border-radius: 10px;
}

.compact-stat-list::-webkit-scrollbar-thumb {
    background: rgba(16, 162, 74, 0.2);
    border-radius: 10px;
}

.compact-stat-list::-webkit-scrollbar-thumb:hover {
    background: rgba(16, 162, 74, 0.3);
}

.compact-stat-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    background: rgba(255, 255, 255, 0.8);
    border-radius: var(--border-radius-sm);
    border: 1px solid rgba(16, 162, 74, 0.1);
    transition: var(--transition);
}

.compact-stat-item:hover {
    background: rgba(255, 255, 255, 1);
    border-color: rgba(16, 162, 74, 0.2);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    transform: translateX(4px);
}

.compact-stat-icon {
    width: 48px;
    height: 48px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    flex-shrink: 0;
}

.compact-stat-content {
    flex: 1;
    min-width: 0;
}

.compact-stat-value {
    font-size: 1.125rem;
    font-weight: 700;
    color: var(--primary-color);
    line-height: 1.3;
    margin-bottom: 0.25rem;
}

.compact-stat-label {
    font-size: 0.875rem;
    color: var(--text-muted);
    line-height: 1.4;
}

/* Beneficiaries List in Hero */
.beneficiaries-list {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.beneficiary-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 0.875rem;
    background: rgba(16, 162, 74, 0.03);
    border-radius: var(--border-radius-sm);
    border: 1px solid rgba(16, 162, 74, 0.1);
    transition: var(--transition);
}

.beneficiary-item:hover {
    background: rgba(16, 162, 74, 0.08);
    border-color: rgba(16, 162, 74, 0.2);
    transform: translateX(4px);
}

.beneficiary-icon {
    width: 40px;
    height: 40px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    flex-shrink: 0;
}

.beneficiary-content {
    flex: 1;
}

.beneficiary-label {
    font-size: 0.9375rem;
    font-weight: 500;
    color: var(--text-dark);
    line-height: 1.4;
}

/* Map Filters */
.map-filters {
    max-height: 80vh;
    overflow-y: auto;
}

.legend-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    display: inline-block;
    flex-shrink: 0;
}

.legend-success {
    background-color: #198754 !important;
}

.legend-info {
    background-color: #0dcaf0 !important;
}

.legend-danger {
    background-color: #dc3545 !important;
}

.legend-dark {
    background-color: #212529 !important;
}

.legend-warning {
    background-color: #ffc107 !important;
}

.legend-purple {
    background-color: #6f42c1 !important;
}

.legend-orange {
    background-color: #fd7e14 !important;
}

.legend-brown {
    background-color: #8b4513 !important;
}

/* Map Mode Switcher */
.map-mode-btn {
    transition: var(--transition);
}

.map-mode-btn.active {
    background-color: var(--primary-color);
    color: white;
    border-color: var(--primary-color);
}

.map-filters .form-check-label {
    cursor: pointer;
    user-select: none;
}

.map-filters .form-check-input:checked + .form-check-label {
    font-weight: 500;
}

/* Custom scrollbar for map filters */
.map-filters::-webkit-scrollbar {
    width: 6px;
}

.map-filters::-webkit-scrollbar-track {
    background: #f1f1f1;
    border-radius: 10px;
}

.map-filters::-webkit-scrollbar-thumb {
    background: #10A24A;
    border-radius: 10px;
}

.map-filters::-webkit-scrollbar-thumb:hover {
    background: #0d8a3d;
}

/* Achievement Content Styling */
.achievement-content-wrapper {
    position: relative;
    display: flex;
    flex-direction: column;
    min-height: 0;
}

.achievement-content {
    font-size: 0.9rem;
    line-height: 1.6;
    overflow: hidden;
    position: relative;
    flex-grow: 1;
    min-height: 0;
}

.achievement-content.readmore-collapsed {
    max-height: 120px;
}

.achievement-content.readmore-expanded {
    max-height: none;
}

.achievement-content::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 40px;
    background: linear-gradient(to bottom, rgba(255, 255, 255, 0), rgba(255, 255, 255, 0.95));
    opacity: 0;
    transition: opacity 0.3s;
    pointer-events: none;
    z-index: 1;
}

.achievement-content.readmore-collapsed::after {
    opacity: 1;
}

.achievement-readmore-btn {
    margin-top: 0.75rem;
    padding: 0.5rem 1rem;
    background: transparent;
    border: 1px solid var(--primary-color, #10A24A);
    color: var(--primary-color, #10A24A);
    border-radius: 6px;
    font-size: 0.875rem;
    font-weight: 500;
    cursor: pointer;
    transition: var(--transition);
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    position: relative;
    z-index: 10;
    align-self: flex-start;
    pointer-events: auto;
    user-select: none;
}

.achievement-readmore-btn:hover {
    background: var(--primary-color, #10A24A);
    color: #ffffff;
}

.achievement-readmore-btn:active {
    transform: scale(0.98);
}

.achievement-readmore-btn i {
    font-size: 0.75rem;
    transition: transform 0.3s;
}

.achievement-readmore-btn.expanded i {
    transform: rotate(180deg);
}

.achievement-content p {
    margin-bottom: 0.75rem;
}

.achievement-content p:last-child {
    margin-bottom: 0;
}

.achievement-content ul,
.achievement-content ol {
    margin-bottom: 0.75rem;
    padding-left: 1.5rem;
}

.achievement-content li {
    margin-bottom: 0.25rem;
}

.achievement-content a {
    color: var(--primary-color, #10A24A);
    text-decoration: none;
}

.achievement-content a:hover {
    text-decoration: underline;
}

.achievement-content strong,
.achievement-content b {
    font-weight: 600;
}

.achievement-content em,
.achievement-content i {
    font-style: italic;
}

.achievement-content table {
    width: 100%;
    margin-bottom: 0.75rem;
    border-collapse: collapse;
    font-size: 0.85rem;
}

.achievement-content table td,
.achievement-content table th {
    padding: 0.5rem;
    border: 1px solid #dee2e6;
}

.achievement-content table th {
    background-color: #f8f9fa;
    font-weight: 600;
}

/* Video Carousel Section */
.video-section {
    position: relative;
}

.videos-carousel {
    position: relative;
}

.videos-carousel .owl-stage-outer {
    padding: 0 0 1rem 0;
    overflow: hidden;
}

.videos-carousel .owl-item {
    height: auto;
    box-sizing: border-box;
}

.video-slide {
    padding: 0;
    height: 100%;
}

.video-card {
    background: #ffffff;
    border-radius: var(--border-radius);
    box-shadow: none;
    border: 1px solid rgba(16, 162, 74, 0.08);
    transition: var(--transition);
    overflow: hidden;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.video-slide > a {
    display: block;
    height: 100%;
    text-decoration: none;
    color: inherit;
}

.video-slide > a:hover .video-card {
    transform: translateY(-6px);
    box-shadow: none;
}

.video-wrapper {
    position: relative;
    width: 100%;
    background: #000;
    border-radius: var(--border-radius) var(--border-radius) 0 0;
    overflow: hidden;
}

.video-wrapper iframe {
    display: block;
    width: 100%;
    border: none;
}

.video-thumbnail-link {
    display: block;
    position: relative;
    width: 100%;
    text-decoration: none;
    overflow: hidden;
}

.video-thumbnail-link img {
    display: block;
    width: 100%;
    height: auto;
    transition: transform 0.3s ease;
}

.video-thumbnail-link:hover img {
    transform: scale(1.05);
}

.video-play-overlay {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 80px;
    height: 80px;
    background: rgba(0, 0, 0, 0.7);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
    z-index: 2;
    pointer-events: none;
}

.video-play-overlay i {
    font-size: 2.5rem;
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0;
    padding: 0;
    line-height: 1;
}

.video-slide > a:hover .video-play-overlay {
    background: rgba(16, 162, 74, 0.9);
    transform: translate(-50%, -50%) scale(1.1);
}

.video-content {
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.video-title {
    font-size: 1rem;
    line-height: 1.4;
    color: var(--text-dark);
    margin-bottom: 0.5rem;
}

.video-description {
    font-size: 0.875rem;
    line-height: 1.5;
    color: var(--text-muted);
    margin: 0;
}

/* Owl Carousel Navigation for Videos - Same as Timeline */
.videos-carousel .owl-nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    transform: translateY(-50%);
    pointer-events: none;
    z-index: 10;
    margin: 0;
    padding: 0;
}

.videos-carousel .owl-nav button {
    pointer-events: all;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: #ffffff !important;
    border: 2px solid rgba(16, 162, 74, 0.2) !important;
    color: var(--primary-color) !important;
    font-size: 1.25rem;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    margin: 0;
    padding: 0;
}

.videos-carousel .owl-nav button:hover,
.videos-carousel .owl-nav button:focus {
    background: var(--primary-color) !important;
    color: #ffffff !important;
    border-color: var(--primary-color) !important;
    transform: scale(1.1);
    box-shadow: 0 6px 20px rgba(16, 162, 74, 0.3);
}

.videos-carousel .owl-nav button:disabled {
    opacity: 0.3;
    cursor: not-allowed;
    pointer-events: none;
}

.videos-carousel .owl-nav button.owl-prev {
    margin-left: -24px;
}

.videos-carousel .owl-nav button.owl-next {
    margin-right: -24px;
}

.videos-carousel .owl-dots {
    justify-content: center;
    gap: 0.75rem;
    margin-top: 2rem;
}

.videos-carousel .owl-dots[style*="display: none"],
.videos-carousel .owl-dots[style*="display:none"] {
    display: none !important;
    visibility: hidden !important;
}

.videos-carousel .owl-dots button {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(16, 162, 74, 0.2) !important;
    border: 2px solid transparent !important;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    padding: 0;
    margin: 0;
}

.videos-carousel .owl-dots button.active,
.videos-carousel .owl-dots button:hover {
    background: var(--primary-color) !important;
    transform: scale(1.3);
    box-shadow: 0 0 0 4px rgba(16, 162, 74, 0.1);
}

.videos-carousel .owl-dots button span {
    display: none;
}

/* Mobile Responsive for Video Carousel */
@media (max-width: 768px) {
    .videos-carousel .owl-item {
        padding: 0 0.25rem;
    }
    
    .video-card {
        border-radius: var(--border-radius-sm);
    }
    
    .video-content {
        padding: 1rem !important;
    }
    
    .video-title {
        font-size: 0.95rem;
    }
    
    .video-description {
        font-size: 0.8rem;
    }
}

/* REDD+ Architecture Photo Carousel Section */
.redd-architecture-cards-section {
    position: relative;
}

.redd-architecture-carousel-wrapper {
    position: relative;
    padding: 2rem 0;
}

.redd-architecture-slide-item {
    padding: 1rem 0;
}

.redd-architecture-content-wrapper {
    padding: 2rem;
}

.redd-architecture-content-wrapper h5 {
    color: var(--primary-color, #10A24A);
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
}

.redd-architecture-content-wrapper-inner {
    position: relative;
}

.redd-architecture-content {
    color: #6c757d;
    line-height: 1.8;
    font-size: 1rem;
}

.redd-architecture-content.readmore-collapsed {
    max-height: 120px;
    overflow: hidden;
    position: relative;
}

.redd-architecture-content.readmore-collapsed::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 40px;
    background: linear-gradient(to bottom, transparent, #ffffff);
}

.redd-architecture-content.readmore-expanded {
    max-height: none;
}

.redd-architecture-readmore-btn {
    background: none;
    border: none;
    color: var(--primary-color, #10A24A);
    font-weight: 600;
    padding: 0.5rem 0;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: var(--transition);
    font-size: 0.95rem;
}

.redd-architecture-readmore-btn:hover {
    color: var(--primary-dark, #0d7a3a);
}

.redd-architecture-readmore-btn.expanded i {
    transform: rotate(180deg);
}

.redd-architecture-readmore-btn i {
    transition: transform 0.3s ease;
}

.redd-architecture-image-wrapper {
    position: relative;
    width: 100%;
    height: 100%;
    min-height: 400px;
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--shadow-md);
}

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

.redd-architecture-image-wrapper:hover .redd-architecture-image {
    transform: scale(1.05);
}

/* Owl Carousel Navigation */
.redd-architecture-carousel-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: #ffffff;
    border: 2px solid rgba(16, 162, 74, 0.2);
    color: var(--primary-color, #10A24A);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: var(--transition);
    z-index: 10;
    font-size: 1.5rem;
}

.redd-architecture-carousel-nav:hover {
    background: var(--primary-color, #10A24A);
    color: #ffffff;
    border-color: var(--primary-color, #10A24A);
}

.redd-architecture-carousel-prev {
    left: -24px;
}

.redd-architecture-carousel-next {
    right: -24px;
}

/* Owl Carousel Dots */
.redd-architecture-carousel-dots {
    display: flex;
    justify-content: center;
    gap: 0.75rem;
    margin-top: 2rem;
}

.redd-architecture-carousel-dots[style*="display: none"],
.redd-architecture-carousel-dots[style*="display:none"] {
    display: none !important;
    visibility: hidden !important;
}

.redd-architecture-carousel-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(16, 162, 74, 0.2) !important;
    border: 2px solid transparent !important;
    padding: 0;
    margin: 0;
    cursor: pointer;
    transition: all 0.3s ease;
}

.redd-architecture-carousel-dot.active,
.redd-architecture-carousel-dot:hover {
    background: var(--primary-color, #10A24A) !important;
    transform: scale(1.3);
    box-shadow: 0 0 0 4px rgba(16, 162, 74, 0.1);
}

.redd-architecture-carousel-dot span {
    display: none;
}

@media (max-width: 991.98px) {
    .redd-architecture-content-wrapper {
        padding: 1.5rem;
    }
    
    .redd-architecture-image-wrapper {
        min-height: 300px;
        margin-bottom: 2rem;
    }
    
    .redd-architecture-carousel-nav {
        width: 40px;
        height: 40px;
        font-size: 1.25rem;
    }
    
    .redd-architecture-carousel-prev {
        left: -20px;
    }
    
    .redd-architecture-carousel-next {
        right: -20px;
    }
}

@media (max-width: 767.98px) {
    .redd-architecture-image-wrapper {
        min-height: 250px;
    }
    
    .redd-architecture-carousel-nav {
        width: 36px;
        height: 36px;
        font-size: 1rem;
    }
    
    .redd-architecture-carousel-prev {
        left: -18px;
    }
    
    .redd-architecture-carousel-next {
        right: -18px;
    }
}


/* Safeguard Section */
.safeguard-section {
    position: relative;
}

.safeguard-item {
    padding: 1rem 0.5rem;
    border: 1px solid rgba(16, 162, 74, 0.2);
    border-radius: var(--border-radius-sm);
    transition: border-color 0.3s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    background: #ffffff;
}

.safeguard-item:hover {
    border-color: var(--primary-color);
}

.safeguard-image-wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
    flex-shrink: 0;
}

.safeguard-image {
    width: 100px;
    height: 100px;
    object-fit: contain;
    transition: transform 0.3s ease;
}

.safeguard-item:hover .safeguard-image {
    transform: scale(1.1);
}

.safeguard-title {
    font-size: 0.95rem;
    line-height: 1.5;
    color: var(--text-dark);
    margin: 0;
    flex-grow: 1;
    display: flex;
    align-items: center;
    text-align: center;
}

/* Mobile Responsive for Safeguard */
@media (max-width: 768px) {
    .safeguard-item {
        padding: 0.75rem 0.5rem;
        min-height: 180px;
    }
    
    .safeguard-image-wrapper {
        margin-bottom: 0.75rem;
    }
    
    .safeguard-title {
        font-size: 0.85rem;
        line-height: 1.4;
    }
}

@media (max-width: 576px) {
    .safeguard-item {
        padding: 0.5rem 0.25rem;
        min-height: 160px;
    }
    
    .safeguard-title {
        font-size: 0.8rem;
    }
}

@media only screen and (max-width: 768px) {
    .asw-menu-btn {
        right: 20px !important;
        bottom: 20px !important;
    }
    
    .asw-menu {
        right: 0px !important;
        bottom: 80px !important;
    }

    .budget-metric .metric-value {
        font-size: 1.1rem;
    }

    .map-filters {
        max-height: none;
    }
    
    /* Smaller button on mobile for section headers */
    .d-flex.justify-content-between .btn-outline-success {
        font-size: 0.875rem;
        padding: 0.375rem 0.75rem;
    }
    
    .d-flex.justify-content-between .btn-outline-success i {
        font-size: 0.875rem;
    }
}


