/* About Us Page Styles */
:root {
        --primary: #005eff;
        --secondary: #ffd966;
        --accent: #eaf3ff;
        --text-dark: #333;
}

body {
    font-family: 'Inter', sans-serif;
    margin: 0;
    padding: 0;
    color: var(--text-color);
    line-height: 1.6;
}

/* Header Styles */
header {
    background-color: white;
    padding: 1rem 2rem;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: sticky;
    top: 0;
    z-index: 100;
}

.logo a {
    display: flex;
    align-items: center;
    text-decoration: none;
    color: var(--text-color);
}

.logo img {
    height: 100px;
    margin-right: 0.5rem;
}

.logo span {
    font-size: 1.25rem;
    font-weight: 600;
}

.search-bar {
    display: flex;
    align-items: center;
    background: rgba(100, 148, 237, 0.192);
    border-radius: 8px;
    padding: 0.5rem;
    width: 40%;
}

.search-bar input {
    border: none;
    background: none;
    outline: none;
    width: 100%;
    padding: 0.5rem;
}

.search-btn {
    background: none;
    border: none;
    color: var(--primary);
    cursor: pointer;
}


.cart {
    position: relative;
}

.cart-badge {
    position: absolute;
    top: -8px;
    right: -8px;
    background: var(--secondary);
    color: var(--text-dark);
    border-radius: 50%;
    width: 20px;
    height: 20px;
    display: grid;
    place-items: center;
    font-size: 0.8rem;
}


/* Container Layout */
.container {
    display: flex;
    gap: 2rem;
    padding: 2rem;
    max-width: 1400px;
    margin: 0 auto;
}

/* Sidebar Styles */
.sidebar {
    width: 250px;
    flex-shrink: 0;
}

.sidebar h3 {
    margin-bottom: 1rem;
    color: var(--text-color);
}

.sidebar nav ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.sidebar nav li {
    margin-bottom: 0.6rem;
}

.sidebar nav a {
    display: flex;
    align-items: center;
    padding: 0.75rem 1rem;
    text-decoration: none;
    color: var(--text-color);
    border-radius: 8px;
    transition: background-color 0.2s;
}

.sidebar a:hover,
.sidebar a.active {
    background: blue;
    color: rgb(255, 255, 255);
}
.sidebar nav li.active a {
    background-color: var(--primary-color);
    color: white;
}

/* Main Content Styles */
.content {
    flex: 1;
}

.content h1 {
    margin-bottom: 2rem;
    color: var(--text-color);
    font-size: 2.5rem;
}

.hero-image {
    margin-bottom: 2rem;
    border-radius: 12px;
    overflow: hidden;
}

.hero-image img {
    width: 100%;
    height: auto;
    object-fit: cover;
}

.about-content p {
    font-size: 1.1rem;
    margin-bottom: 2rem;
}

.what-we-offer {
    margin-bottom: 3rem;
}

.what-we-offer h2,
.why-choose h2 {
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
    color: var(--text-color);
}

.what-we-offer ul {
    list-style: none;
    padding: 0;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1.5rem;
}

.what-we-offer li {
    background: white;
    padding: 1.5rem;
    border-radius: 12px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.what-we-offer h3 {
    margin-bottom: 1rem;
    color: var(--primary-color);
}

.features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
    margin-top: 2rem;
}

.feature {
    text-align: center;
    padding: 2rem;
    background: white;
    border-radius: 12px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.feature .emoji {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    display: block;
}

.feature h3 {
    margin-bottom: 1rem;
    color: var(--primary-color);
}

/* Footer Styles */
footer {
    background: #000;
    color: white;
    padding: 3rem 2rem;
    margin-top: 4rem;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.footer-section h4 {
    margin-bottom: 1.5rem;
    font-size: 1.2rem;
}

.footer-section ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-section li {
    margin-bottom: 0.75rem;
}

.footer-section a {
    color: white;
    text-decoration: none;
    transition: color 0.2s;
}

.footer-section a:hover {
    color: var(--primary-color);
}

.footer-logo-img {
    height: 60px;
    margin-bottom: 1rem;
}

.footer-tagline {
    font-size: 1.2rem;
    margin: 0;
}

/* Responsive Design */
@media (max-width: 768px) {
    .container {
        flex-direction: column;
        padding: 1rem;
    }

    .sidebar {
        width: 100%;
        margin-bottom: 2rem;
    }

    header {
        padding: 1rem;
        flex-wrap: wrap;
    }

    .search-bar {
        order: 3;
        width: 100%;
        margin-top: 1rem;
    }

    .features {
        grid-template-columns: 1fr;
    }

    footer {
        grid-template-columns: 1fr;
        text-align: center;
    }
}
