 /* ===== Navbar Base ===== */
.navbar-wrapper {
    position: sticky;
    width: 100%;
    z-index: 1000;
    background: #ffffff;
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.08);
    font-family: 'Segoe UI', Roboto, sans-serif;
}

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.10rem 5%;
    max-width: 1400px;
    margin: 0 auto;
}

/* ===== Logo ===== */
.nav-brand {
    font-size: 1.8rem;
    font-weight: 700;
    color: #00796b;
    display: flex;
    align-items: center;
    text-decoration: none !important;
}
.nav-brand img {
    height: 40px; /* Adjust based on your logo size */
    width: auto;
    transition: transform 0.3s ease;
}
.nav-brand span {
    color: red;
    margin-left: 4px;
}

/* ===== Navigation Links ===== */
.nav-menu {
    display: flex;
    gap: 1.8rem;
    list-style: none;
    margin: 0;
    padding: 0;
}

.nav-item {
    position: relative;
}

.nav-link {
    color: #00796b;
    font-weight: 500;
    text-decoration: none !important;
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 0.5rem 0;
    transition: color 0.2s ease;
}

.nav-link i {
    font-size: 0.95rem;
}

.nav-link:hover,
.nav-link.active {
    color: red;
}

/* ===== Dropdown ===== */
.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background: #fff;
    width: 220px;
    border-radius: 6px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: all 0.3s ease;
    z-index: 100;
    list-style: none;
    padding: 0;
    margin: 0;
}

.nav-item:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-link {
    display: block;
    padding: 0.7rem 1rem;
    color: #009688;
    text-decoration: none !important;
    transition: all 0.2s;
}

.dropdown-link:hover {
    background: #f8f9ff;
    color: red;
    padding-left: 1.2rem;
}

/* ===== Search Box ===== */
.search-box {
    display: flex;
    width: 280px;
    border-radius: 25px;
    overflow: hidden;
 
    transition: all 0.3s;
}

.search-box:focus-within {
    border-color: #00796b;
    box-shadow: 0 0 0 3px rgba(42, 82, 190, 0.1);
}

.search-input {
    flex: 1;
    border: none;
    padding: 0.6rem 1rem;
    outline: none;
}

.search-btn {
    background: #009688;
    color: white;
    border: none;
    padding: 0 1.2rem;
    cursor: pointer;
    transition: background 0.2s;
    text-decoration: none !important;
}

.search-btn:hover {
    background: red;
}

/* ===== Action Icons ===== */
.nav-actions {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.action-icon {
    position: relative;
    color: #00796b;
    font-size: 1.3rem;
    transition: all 0.2s;
    text-decoration: none !important;
}

.action-icon:hover {
    color: red;
    transform: translateY(-2px);
}

.cart-badge {
    position: absolute;
    top: -6px;
    right: -8px;
    background: #ff6b6b;
    color: white;
    border-radius: 50%;
    width: 18px;
    height: 18px;
    font-size: 0.7rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* ===== Mobile Menu ===== */
.menu-toggle {
    display: none;
    font-size: 1.5rem;
    cursor: pointer;
    color: #444;
    background: none;
    border: none;
    padding: 0;
}

.mobile-menu-content {
    display: none;
    width: 100%;
    padding: 0 1.5rem 1.5rem;
    background: white;
}

.mobile-active .mobile-menu-content {
    display: block;
}

.mobile-search {
    width: 100%;
    margin: 1rem 0;
    border-radius: 25px;
    border: 1px solid #e0e0e0;
}

.mobile-seller-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    width: 100%;
    padding: 0.8rem;
    background: #2a52be;
    color: white;
    border-radius: 5px;
    text-decoration: none !important;
    font-weight: 500;
    margin-top: 1rem;
    transition: all 0.2s;
}

.mobile-seller-btn:hover {
    background: #1e4298;
    transform: translateY(-2px);
    text-decoration: none !important;
}

/* ===== Responsive ===== */
@media (max-width: 992px) {
    .nav-menu,
    .desktop-search,
    .nav-actions {
        display: none;
    }
    
    .menu-toggle {
        display: block;
    }
    
    .navbar {
        padding: 0.8rem 1.5rem;
    }
    
    .mobile-active {
        position: relative;
    }
    
    .mobile-active .nav-menu {
        display: flex;
        flex-direction: column;
        position: static;
        width: 100%;
        background: transparent;
        padding: 0 0 1rem;
        box-shadow: none;
    }
    
    .mobile-active .dropdown-menu {
        position: static;
        width: 100%;
        box-shadow: none;
        opacity: 1;
        visibility: visible;
        transform: none;
        display: none;
        margin: 0.5rem 0 0 1rem;
        background: #f8f9fa;
    }
    
    .mobile-active .nav-item:hover .dropdown-menu {
        display: block;
    }
}

@media (min-width: 993px) {
    .mobile-menu-content {
        display: none !important;
    }
}

 /* Modern About Page CSS */
 :root {
    --primary: #2e8883;
    --primary-dark: #076b66;
    --secondary: #f59e0b;
    --dark: #1e293b;
    --light: #f8fafc;
    --gray: #64748b;
    --success: #10b981;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
}

body {
    background-color: #f1f5f9;
    color: var(--dark);
    line-height: 1.6;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header */
.about-header {
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    color: white;
    padding: 80px 0;
    text-align: center;
    margin-bottom: 60px;
}

.about-header h1 {
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 20px;
}

.about-header p {
    max-width: 700px;
    margin: 0 auto;
    font-size: 1.2rem;
    opacity: 0.9;
}

/* Mission Section */
.mission-section {
    display: flex;
    align-items: center;
    gap: 50px;
    margin-bottom: 80px;
}

.mission-content {
    flex: 1;
}

.mission-image {
    flex: 1;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
}

.mission-image img {
    width: 100%;
    height: auto;
    display: block;
}

.section-title {
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 20px;
    color: var(--primary);
}

/* Team Section */
.team-section {
    background-color: white;
    padding: 80px 0;
    margin-bottom: 80px;
}

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

.team-member {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

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

.member-image {
    height: 450px;
    overflow: hidden;
}

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

.team-member:hover .member-image img {
    transform: scale(1.05);
}

.member-info {
    padding: 20px;
    text-align: center;
}

.member-name {
    font-weight: 700;
    margin-bottom: 5px;
    font-size: 1.2rem;
}

.member-role {
    color: var(--gray);
    margin-bottom: 15px;
    font-size: 0.9rem;
}

/* Values Section */
.values-section {
    margin-bottom: 80px;
}

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

.value-card {
    background: white;
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
}

.value-icon {
    font-size: 2.5rem;
    color: var(--primary);
    margin-bottom: 20px;
}

.value-title {
    font-weight: 700;
    margin-bottom: 15px;
    font-size: 1.3rem;
}

/* CTA Section */
.cta-section {
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    color: white;
    padding: 80px 0;
    text-align: center;
    border-radius: 12px;
    margin-bottom: 80px;
}

.cta-section h2 {
    font-size: 2rem;
    margin-bottom: 20px;
}

.cta-section p {
    max-width: 600px;
    margin: 0 auto 30px;
    opacity: 0.9;
}

.cta-button {
    display: inline-block;
    background-color: white;
    color: var(--primary);
    padding: 12px 30px;
    border-radius: 30px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
}

.cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
}

/* Responsive */
@media (max-width: 768px) {
    .mission-section {
        flex-direction: column;
    }
    
    .about-header h1 {
        font-size: 2.2rem;
    }
}