/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: 'Poppins', sans-serif;
    line-height: 1.6;
    color: #333;
    overflow-x: hidden;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-weight: 600;
    line-height: 1.2;
    margin-bottom: 0.5em;
}

h1 { font-size: 2.5rem; }
h2 { font-size: 2rem; }
h3 { font-size: 1.5rem; }
h4 { font-size: 1.25rem; }
h5 { font-size: 1.1rem; }
h6 { font-size: 1rem; }

p {
    margin-bottom: 1rem;
    line-height: 1.6;
}

a {
    text-decoration: none;
    color: inherit;
    transition: all 0.3s ease;
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

/* Container */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    width: 100%;
}

/* Color Variables */
:root {
    --primary-color: #0A2E5D;
    --secondary-color: #14B8A6;
    --accent-color: #F97316;
    --success-color: #10B981;
    --warning-color: #F59E0B;
    --error-color: #EF4444;
    --text-dark: #1F2937;
    --text-light: #6B7280;
    --background-light: #F9FAFB;
    --white: #FFFFFF;
    --black: #000000;
}

/* Top Bar */
#topbar {
    position: sticky;
    top: 0;
    z-index: 1001;
    background: var(--primary-color);
    color: var(--white);
    padding: 10px 0;
    font-size: 0.75rem;
    font-weight: 400;
    text-transform: uppercase;
    height: 40px;
    display: flex;
    align-items: center;
}

.topbar-content {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    gap: 20px;
    width: 100%;
}

.topbar-social {
    display: flex;
    gap: 15px;
    align-items: center;
}

.topbar-social a {
    color: var(--white);
    font-size: 0.9rem;
    transition: all 0.3s ease;
}

.topbar-social a:hover {
    color: var(--accent-color);
    transform: scale(1.1);
}

.topbar-contact {
    display: flex;
    gap: 20px;
    align-items: center;
}

.topbar-contact span {
    display: flex;
    align-items: center;
    gap: 5px;
}

.topbar-contact i {
    font-size: 0.8rem;
}
/* Navbar Section */
.navbar-menu a {
    color: var(--white);
    font-weight: 500;
    font-size: 0.9rem;
    position: relative;
    padding: 5px 0;
    transition: all 0.3s ease;
}

#navbar.scrolled .navbar-menu a {
    color: var(--text-dark);
}

.navbar-menu a:hover,
.navbar-menu a.active {
    color: var(--accent-color);
}

.navbar-menu a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--accent-color);
    transition: width 0.3s ease;
}

.navbar-menu a:hover::after,
.navbar-menu a.active::after {
    width: 100%;
}

/* Hero section 


/* Page Headers */
/* ========================================
   PAGE HEADER SYSTEM - DARK MESH OVERLAY
   ======================================== */

/* Base Header Container */
.page-header {
    position: relative;
    height: 60vh;
    min-height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    background-color: #000;
}

/* Background Image with Smooth Zoom */
.page-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--hero-bg-image), linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6));
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    transform-origin: center;
    animation: zoomIn 20s infinite alternate ease-in-out;
    z-index: 1;
}

/* === DARK MESH OVERLAY === */
.page-header::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 2;

    /* Darker gradient for stronger contrast */
    background: rgba(0, 0, 0, 0.4); /* Increased opacity */

    /* Subtle grid pattern (mesh) */
    background-image: linear-gradient(90deg, rgba(255, 255, 255, 0.1) 1px, transparent 1px),
                      linear-gradient(rgba(255, 255, 255, 0.1) 1px, transparent 1px);
    background-size: 20px 20px;

    /* Stronger inset shadows for depth */
    box-shadow:
        inset 0 0 50px rgba(0, 0, 0, 0.8),  /* Deeper shadows */
        inset 0 0 25px rgba(0, 0, 0, 0.5);

    opacity: 0.9; /* Darker opacity for a more intense mesh effect */

    /* Slow drift animation for subtle movement */
    animation: driftEffect 18s linear infinite;
}

/* === ANIMATIONS === */

/* Background Zoom */
@keyframes zoomIn {
    0% {
        transform: scale(1);
    }
    100% {
        transform: scale(1.12);
    }
}

/* Overlay Drift Effect */
@keyframes driftEffect {
    0% {
        background-position: 0 0;
    }
    100% {
        background-position: 10px 10px;
    }
}

/* Content Fade-In */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(15px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ========================================
   HEADER CONTENT STYLING
   ======================================== */
.page-header-content {
    position: relative;
    z-index: 3;
    text-align: center;
    color: var(--white, #ffffff);
    max-width: 800px;
    padding: 0 20px;
    animation: fadeIn 1.4s ease-out;
}

.page-header-content h1 {
    font-size: clamp(2.25rem, 8vw, 4.5rem);
    font-weight: 700;
    margin-bottom: 1rem;
    text-shadow: 2px 2px 6px rgba(0, 0, 0, 0.8);
    line-height: 1.2;
    letter-spacing: -0.5px;
}

.page-header-content p {
    font-size: clamp(1rem, 3.5vw, 1.35rem);
    opacity: 0.95;
    text-shadow: 1px 1px 4px rgba(0, 0, 0, 0.7);
    line-height: 1.6;
    margin-bottom: 0;
}

/* ========================================
   ACCESSIBILITY: Reduced Motion
   ======================================== */
@media (prefers-reduced-motion: reduce) {
    .page-header::before,
    .page-header::after {
        animation: none;
    }

    .page-header::before {
        transform: scale(1);
    }

    .page-header::after {
        background-position: 0 0;
        box-shadow: inset 0 0 60px rgba(0, 0, 0, 0.8);
        opacity: 0.8;
    }

    .page-header-content {
        animation: none;
        opacity: 1;
    }
}

/* ========================================
   BACKGROUND IMAGES (Per Page)
   ======================================== */
.about-header::before {
    --hero-bg-image: url('https://benol.et/images/slides/slider.jpg?auto=compress&cs=tinysrgb&w=1920');
}

.products-header::before {
    --hero-bg-image: url('https://benol.et/images/slides/us.jpg?auto=compress&cs=tinysrgb&w=1920');
}

.ventures-header::before {
    --hero-bg-image: url('https://benol.et/images/slides/opt.jpg?auto=compress&cs=tinysrgb&w=1920');
}

.leadership-header::before {
    --hero-bg-image: url('https://benol.et/images/products/vinno.pod2.webp?auto=compress&cs=tinysrgb&w=1920');
}

.partners-header::before {
    --hero-bg-image: url('https://benol.et/images/products/frn.webp?auto=compress&cs=tinysrgb&w=1920');
}


/* Categories Section */
.categories {
    padding: 100px 0;
    background: var(--background-light);
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-header h2 {
    font-size: clamp(2rem, 4vw, 3rem);
    color: var(--text-dark);
    margin-bottom: 1rem;
}

.section-header p {
    font-size: 1.1rem;
    color: var(--text-light);
    max-width: 600px;
    margin: 0 auto;
}

.categories-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 60px;
}

.category-card {
    background: var(--white);
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

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

.category-images {
    height: 200px;
    overflow: hidden;
    position: relative;
}

.category-images img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.category-card:hover .category-images img {
    transform: scale(1.05);
}

.category-content {
    padding: 25px;
}

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

.category-content h3 {
    font-size: 1.4rem;
    color: var(--text-dark);
    margin-bottom: 15px;
}

.category-content p {
    color: var(--text-light);
    margin-bottom: 15px;
}

.category-brands {
    font-size: 0.9rem;
    color: var(--accent-color);
    font-weight: 500;
    margin-bottom: 20px;
}

.category-btn {
    display: inline-block;
    padding: 10px 20px;
    background: var(--primary-color);
    color: var(--white);
    border-radius: 25px;
    font-weight: 500;
    transition: all 0.3s ease;
}

.category-btn:hover {
    background: var(--accent-color);
    transform: translateY(-2px);
}

/* Stats Section */
.stats-section {
    padding: 80px 0;
    background: var(--primary-color);
    color: var(--white);
}

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

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

.stat-number {
    font-size: 3rem;
    font-weight: 700;
    color: var(--accent-color);
    display: block;
}

.stat-label {
    font-size: 1rem;
    margin-top: 10px;
    opacity: 0.9;
}

/* Content Sections */
.about-content,
.products-content,
.ventures-content,
.leadership-content,
.partners-content,
.contact-content {
    padding: 100px 0;
}

.content-section {
    margin-bottom: 80px;
}

.content-section .section-header {
    margin-bottom: 40px;
}

.content-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

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

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

.content-card h3 {
    color: var(--primary-color);
    margin-bottom: 15px;
}

.content-card ul {
    list-style: none;
}

.content-card li {
    padding: 8px 0;
    border-bottom: 1px solid #eee;
    position: relative;
    padding-left: 20px;
}

.content-card li:before {
    content: '•';
    color: var(--accent-color);
    position: absolute;
    left: 0;
    font-weight: bold;
}

.content-card li:last-child {
    border-bottom: none;
}

/* Vision Mission */
.vision-mission {
    background: linear-gradient(135deg, var(--background-light), #e8f4fd);
    padding: 60px 0;
    border-radius: 20px;
}

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

.vm-card {
    background: var(--white);
    padding: 40px;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

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

.vm-card h3 {
    font-size: 1.8rem;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.vm-card ul {
    text-align: left;
}

/* Products Specific */
.filter-tabs {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-bottom: 50px;
    flex-wrap: wrap;
}

.filter-btn {
    padding: 10px 20px;
    background: var(--white);
    border: 2px solid var(--primary-color);
    color: var(--primary-color);
    border-radius: 25px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
}

.filter-btn:hover,
.filter-btn.active {
    background: var(--primary-color);
    color: var(--white);
}

.product-category {
    margin-bottom: 80px;
}

.category-header {
    text-align: center;
    margin-bottom: 50px;
}

.category-header .category-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 20px;
    font-size: 2rem;
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.product-card {
    background: var(--white);
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

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

.product-image {
    height: 250px;
    overflow: hidden;
}

.product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.product-content {
    padding: 25px;
}

.product-content h3 {
    font-size: 1.2rem;
    color: var(--text-dark);
    margin-bottom: 15px;
}

.product-btn {
    background: var(--accent-color);
    color: var(--white);
    border: none;
    padding: 10px 20px;
    border-radius: 25px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
}

.product-btn:hover {
    background: var(--primary-color);
    transform: translateY(-2px);
}

.certifications {
    margin: 15px 0;
}

.cert-badge {
    background: var(--success-color);
    color: var(--white);
    padding: 4px 8px;
    border-radius: 10px;
    font-size: 0.75rem;
    margin-right: 5px;
}

/* Ventures Specific */
.venture-section {
    margin-bottom: 100px;
}

.venture-header {
    text-align: center;
    margin-bottom: 50px;
}

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

.venture-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 30px;
}

.venture-card {
    background: var(--white);
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

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

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

.card-content {
    padding: 30px;
}

.venture-highlight {
    background: var(--accent-color);
    color: var(--white);
    padding: 5px 15px;
    border-radius: 15px;
    font-size: 0.9rem;
    font-weight: 500;
    display: inline-block;
    margin-bottom: 15px;
}

.stats-highlight {
    margin: 20px 0;
}

.stats-highlight .stat {
    text-align: center;
    padding: 15px;
    background: var(--background-light);
    border-radius: 10px;
}

.stats-highlight .stat-number {
    font-size: 2rem;
    font-weight: 700;
    color: var(--primary-color);
    display: block;
}

.stats-highlight .stat-label {
    font-size: 0.9rem;
    color: var(--text-light);
}

.projects-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
}

.project-card {
    background: var(--white);
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.project-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--accent-color), #ff6b35);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 1.5rem;
    margin-bottom: 20px;
}

.project-status {
    margin: 15px 0;
}

.status-badge {
    padding: 5px 15px;
    border-radius: 15px;
    font-size: 0.8rem;
    font-weight: 500;
    text-transform: uppercase;
}

.status-badge.ongoing {
    background: var(--warning-color);
    color: var(--white);
}

.status-badge.planned {
    background: var(--secondary-color);
    color: var(--white);
}

.investment-summary {
    background: linear-gradient(135deg, var(--primary-color), #1e40af);
    color: var(--white);
    padding: 80px 0;
    border-radius: 20px;
    margin-top: 60px;
}

.impact-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-top: 50px;
}

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

.impact-icon {
    width: 70px;
    height: 70px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--accent-color);
    font-size: 1.8rem;
    margin: 0 auto 20px;
}

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

.board-grid,
.executive-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.leader-card,
.executive-card {
    background: var(--white);
    border-radius: 15px;
    padding: 30px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.leader-card:hover,
.executive-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
}

.leader-image,
.executive-image {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    overflow: hidden;
    margin: 0 auto 20px;
    border: 4px solid var(--accent-color);
}

.leader-image img,
.executive-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.leader-title,
.executive-title {
    color: var(--primary-color);
    font-weight: 600;
    margin-bottom: 15px;
}

.leader-credentials,
.executive-credentials {
    margin-bottom: 15px;
}

.credential {
    background: var(--secondary-color);
    color: var(--white);
    padding: 4px 12px;
    border-radius: 12px;
    font-size: 0.8rem;
    margin: 0 5px 5px 0;
    display: inline-block;
}

.leader-details,
.executive-responsibilities {
    text-align: left;
    margin-top: 20px;
}

.executive-responsibilities ul {
    list-style: none;
}

.executive-responsibilities li {
    padding: 5px 0;
    position: relative;
    padding-left: 20px;
}

.executive-responsibilities li:before {
    content: '✓';
    color: var(--success-color);
    position: absolute;
    left: 0;
    font-weight: bold;
}

/* Organizational Structure */
.org-structure {
    margin: 50px 0;
    text-align: center;
}

.org-level {
    margin: 30px 0;
}

.org-title {
    background: var(--primary-color);
    color: var(--white);
    padding: 15px 25px;
    border-radius: 25px;
    font-weight: 600;
    display: inline-block;
    margin-bottom: 15px;
}

.org-members,
.org-departments {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.org-members span {
    background: var(--accent-color);
    color: var(--white);
    padding: 8px 15px;
    border-radius: 15px;
    font-size: 0.9rem;
}

.department {
    background: var(--white);
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    min-width: 200px;
}

.dept-title {
    font-weight: 600;
    color: var(--primary-color);
    margin-bottom: 10px;
}

.dept-head {
    font-size: 0.9rem;
    color: var(--text-light);
}

.org-connector {
    height: 30px;
    background: linear-gradient(to bottom, transparent 45%, var(--accent-color) 45%, var(--accent-color) 55%, transparent 55%);
    margin: 20px 0;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.value-item {
    background: var(--white);
    padding: 30px;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.value-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
}

.value-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--accent-color), #ff6b35);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 1.5rem;
    margin: 0 auto 20px;
}

/* Partners Specific */
.featured-partners {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
    margin-bottom: 80px;
}

.partner-card {
    background: var(--white);
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

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

.partner-logo {
    width: 80px;
    height: 80px;
    border-radius: 10px;
    overflow: hidden;
    margin-bottom: 20px;
}

.partner-logo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.partner-location {
    color: var(--text-light);
    font-size: 0.9rem;
    margin-bottom: 10px;
}

.partner-specialty {
    color: var(--primary-color);
    font-weight: 600;
    margin-bottom: 15px;
}

.partner-products {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.product-tag {
    background: var(--background-light);
    color: var(--text-dark);
    padding: 4px 12px;
    border-radius: 12px;
    font-size: 0.8rem;
}

.regional-partners {
    margin-top: 50px;
}

.region-group {
    margin-bottom: 60px;
}

.region-group h3 {
    color: var(--primary-color);
    font-size: 1.5rem;
    margin-bottom: 30px;
    border-bottom: 2px solid var(--accent-color);
    padding-bottom: 10px;
}

.partners-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 30px;
}

.partner-item {
    background: var(--white);
    padding: 25px;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    display: flex;
    gap: 20px;
    transition: all 0.3s ease;
}

.partner-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.12);
}

.partner-flag {
    font-size: 2rem;
    align-self: flex-start;
}

.partner-details h4 {
    color: var(--primary-color);
    margin-bottom: 10px;
}

.partner-details p {
    color: var(--text-light);
    font-size: 0.9rem;
    margin-bottom: 15px;
}

.partner-details ul {
    list-style: none;
}

.partner-details li {
    padding: 3px 0;
    font-size: 0.9rem;
    position: relative;
    padding-left: 15px;
}

.partner-details li:before {
    content: '•';
    color: var(--accent-color);
    position: absolute;
    left: 0;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.benefit-item {
    background: var(--white);
    padding: 30px;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.benefit-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
}

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

.partnership-inquiry {
    background: linear-gradient(135deg, var(--primary-color), #1e40af);
    color: var(--white);
    padding: 60px 40px;
    border-radius: 20px;
    margin-top: 80px;
}

.inquiry-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
}

.inquiry-text h2 {
    margin-bottom: 15px;
}

.inquiry-btn {
    background: var(--accent-color);
    color: var(--white);
    padding: 15px 30px;
    border-radius: 25px;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 10px;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.inquiry-btn:hover {
    background: #ff6b35;
    transform: translateY(-2px);
}

/* Contact Specific */
.contact-info-section {
    margin-bottom: 80px;
}

.contact-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.contact-card {
    background: var(--white);
    padding: 30px;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

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

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

.contact-card h3 {
    color: var(--primary-color);
    margin-bottom: 15px;
}

.contact-card a {
    color: var(--accent-color);
    font-weight: 500;
}

.contact-card a:hover {
    text-decoration: underline;
}

.contact-form-section {
    margin-bottom: 80px;
}

.contact-form-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    margin-top: 50px;
}

.form-container,
.map-container {
    background: var(--white);
    padding: 40px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.form-container h2,
.map-container h2 {
    color: var(--primary-color);
    margin-bottom: 30px;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.form-group {
    display: flex;
    flex-direction: column;
}

.form-group label {
    font-weight: 500;
    margin-bottom: 8px;
    color: var(--text-dark);
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 12px;
    border: 2px solid #e5e7eb;
    border-radius: 8px;
    font-family: inherit;
    font-size: 1rem;
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-color);
}

.submit-btn {
    background: var(--accent-color);
    color: var(--white);
    padding: 15px 25px;
    border: none;
    border-radius: 25px;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    transition: all 0.3s ease;
}

.submit-btn:hover {
    background: #ff6b35;
    transform: translateY(-2px);
}

.map-embed {
    border-radius: 10px;
    overflow: hidden;
    margin-top: 20px;
}

.map-embed iframe {
    width: 100%;
    height: 400px;
}

.business-hours-section {
    margin-bottom: 80px;
}

.hours-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.hours-card {
    background: var(--white);
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.hours-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--accent-color), #ff6b35);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 1.5rem;
    margin-bottom: 20px;
}

.hours-list {
    margin-top: 20px;
}

.hour-item {
    display: flex;
    justify-content: space-between;
    padding: 10px 0;
    border-bottom: 1px solid #eee;
}

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

.day {
    font-weight: 500;
    color: var(--text-dark);
}

.time {
    color: var(--text-light);
}

.emergency-phone {
    font-size: 1.2rem;
    font-weight: 600;
}

.emergency-phone a {
    color: var(--error-color);
}

.references-section {
    background: var(--background-light);
    padding: 60px 0;
    border-radius: 20px;
}

.references-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.reference-category {
    background: var(--white);
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
}

.reference-category h3 {
    color: var(--primary-color);
    margin-bottom: 20px;
    border-bottom: 2px solid var(--accent-color);
    padding-bottom: 10px;
}

.reference-category li {
    padding: 8px 0;
    position: relative;
    padding-left: 20px;
}

.reference-category li:before {
    content: '✓';
    color: var(--success-color);
    position: absolute;
    left: 0;
    font-weight: bold;
}


/* Modal */
.modal {
    display: none;
    position: fixed;
    z-index: 3000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(5px);
}

.modal-content {
    background: var(--white);
    margin: 5% auto;
    padding: 0;
    border-radius: 15px;
    width: 90%;
    max-width: 900px;
    max-height: 80vh;
    overflow-y: auto;
    position: relative;
}

.close {
    position: absolute;
    top: 15px;
    right: 20px;
    color: #aaa;
    font-size: 2rem;
    font-weight: bold;
    cursor: pointer;
    z-index: 1;
    background: rgba(255, 255, 255, 0.9);
    border-radius: 50%;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.close:hover {
    color: var(--error-color);
    background: var(--white);
}

/* Animations */
[data-aos] {
    opacity: 0;
    transition: opacity 0.6s ease, transform 0.6s ease;
}

[data-aos].aos-animate {
    opacity: 1;
}

[data-aos="fade-up"] {
    transform: translateY(30px);
}

[data-aos="fade-up"].aos-animate {
    transform: translateY(0);
}

/* Responsive Design */
@media (max-width: 1024px) {
    .navbar-menu {
        display: none;
    }
    
    .hamburger {
        display: block;
    }
    
    .inquiry-content {
        flex-direction: column;
        text-align: center;
    }
    
    .contact-form-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-powered {
        display: none;
    }
}

@media (max-width: 768px) {
    .hero-title {
        font-size: 2rem;
    }
    
    .hero-tagline {
        font-size: 1.2rem;
    }
    
    .hero-subtitle {
        font-size: 0.9rem;
    }
    
    .categories-grid {
        grid-template-columns: 1fr;
    }
    
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .content-grid {
        grid-template-columns: 1fr;
    }
    
    .vm-grid {
        grid-template-columns: 1fr;
    }
    
    .venture-grid {
        grid-template-columns: 1fr;
    }
    
    .featured-partners {
        grid-template-columns: 1fr;
    }
    
    .partners-list {
        grid-template-columns: 1fr;
    }
    
    .partner-item {
        flex-direction: column;
    }
    
    .partner-flag {
        align-self: center;
    }
    
    .topbar-content {
        justify-content: center;
        gap: 15px;
    }
    
    .topbar-contact {
        gap: 15px;
    }
    
    .topbar-contact span {
        font-size: 0.7rem;
    }
    
    .filter-tabs {
        gap: 5px;
    }
    
    .filter-btn {
        padding: 8px 15px;
        font-size: 0.85rem;
    }
    
    .org-members,
    .org-departments {
        flex-direction: column;
        align-items: center;
    }
    
    .footer-links {
        flex-direction: column;
        gap: 15px;
    }
    
    .hours-grid {
        grid-template-columns: 1fr;
    }
    
    .benefits-grid {
        grid-template-columns: 1fr;
    }
    
    .impact-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }
    
    .hero-title {
        font-size: 1.8rem;
    }
    
    .hero-tagline {
        font-size: 1rem;
    }
    
    .hero-subtitle {
        font-size: 0.8rem;
    }
    
    .cta-button {
        padding: 12px 25px;
        font-size: 0.9rem;
    }
    
    .stats-grid {
        grid-template-columns: 1fr;
    }
    
    .stat-number {
        font-size: 2rem;
    }
    
    .topbar-social {
        display: none;
    }
    
    .topbar-contact {
        flex-direction: column;
        gap: 5px;
    }
    
    .impact-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-social {
        gap: 15px;
    }
    
    .footer-powered {
        position: static;
        margin-top: 10px;
    }
    
    .modal-content {
        width: 95%;
        margin: 10% auto;
        max-height: 70vh;
    }
    
    
    
    .menu-items {
        gap: 15px;
    }
    
    .menu-item {
        padding: 12px 15px;
        font-size: 1rem;
    }
}

/* Print Styles */
@media print {
    .topbar,
    .navbar,
    .hamburger,

    .scroll-indicator,
    .footer-social,
    .cta-button,
    .category-btn,
    .product-btn,
    .submit-btn,
    .inquiry-btn {
        display: none !important;
    }
    
    .hero,
    .page-header {
        height: auto;
        padding: 50px 0;
    }
    
    .hero-background,
    .page-header .hero-background {
        position: static;
        background: none !important;
    }
    
    .hero-content,
    .page-header-content {
        color: var(--text-dark) !important;
    }
    
    body {
        font-size: 12pt;
        line-height: 1.5;
    }
    
    h1 { font-size: 24pt; }
    h2 { font-size: 20pt; }
    h3 { font-size: 16pt; }
    
    .container {
        max-width: none;
        padding: 0;
    }
    
    .categories-grid,
    .content-grid,
    .stats-grid {
        grid-template-columns: 1fr 1fr;
        gap: 20px;
    }
    
    .category-card,
    .content-card {
        break-inside: avoid;
    }
}

/* Accessibility */
@media (prefers-reduced-motion: reduce) {
    * {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
        scroll-behavior: auto !important;
    }
    
    .hero-background {
        animation: none;
    }
    
    .scroll-indicator {
        animation: none;
    }
    
    .pulse {
        animation: none;
    }
}

/* High Contrast Mode */
@media (prefers-contrast: high) {
    :root {
        --primary-color: #000000;
        --text-light: #333333;
        --background-light: #ffffff;
    }
    
    .category-card,
    .content-card,
    .product-card {
        border: 2px solid #000000;
    }
}

/* Focus Styles */
button:focus,
input:focus,
textarea:focus,
select:focus,
a:focus {
    outline: 2px solid var(--accent-color);
    outline-offset: 2px;
}

/* Loading States */
.loading {
    opacity: 0.6;
    pointer-events: none;
}

.loading::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 20px;
    height: 20px;
    margin: -10px 0 0 -10px;
    border: 2px solid var(--primary-color);
    border-top: 2px solid transparent;
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* Error States */
.error {
    color: var(--error-color);
    background: #fee2e2;
    border: 1px solid #fecaca;
    padding: 10px 15px;
    border-radius: 5px;
    margin: 10px 0;
}

/* Success States */
.success {
    color: var(--success-color);
    background: #d1fae5;
    border: 1px solid #a7f3d0;
    padding: 10px 15px;
    border-radius: 5px;
    margin: 10px 0;
}

/* Utility Classes */
.text-center { text-align: center; }
.text-left { text-align: left; }
.text-right { text-align: right; }
.font-bold { font-weight: 700; }
.font-semibold { font-weight: 600; }
.font-normal { font-weight: 400; }
.text-primary { color: var(--primary-color); }
.text-secondary { color: var(--secondary-color); }
.text-accent { color: var(--accent-color); }
.bg-primary { background: var(--primary-color); }
.bg-secondary { background: var(--secondary-color); }
.bg-accent { background: var(--accent-color); }
.hidden { display: none; }
.visible { display: block; }
.flex { display: flex; }
.grid { display: grid; }
.relative { position: relative; }
.absolute { position: absolute; }
.fixed { position: fixed; }
.sticky { position: sticky; }
.z-10 { z-index: 10; }
.z-20 { z-index: 20; }
.z-50 { z-index: 50; }
.w-full { width: 100%; }
.h-full { height: 100%; }
.p-4 { padding: 1rem; }
.m-4 { margin: 1rem; }
.mt-4 { margin-top: 1rem; }
.mb-4 { margin-bottom: 1rem; }
.rounded { border-radius: 0.5rem; }
.shadow { box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1); }