body {
    /* font-family: 'Roboto', Arial, sans-serif; */
    font-family: system-ui;
    margin: 0;
    padding: 0;
    background-color: #FFFFFF;
    color: #333333;
    /* line-height: 1.6; */
    overflow-x: hidden;
}



.logo {
    width: 150px;
    height: auto;
    margin-right: 2rem;
    border-radius: 5px;
    object-fit: contain;
}

nav {
    flex-grow: 1;
}

nav a {
    color: #FFFFFF; /* White text for contrast on primary color */
    margin: 0 1.5rem;
    text-decoration: none;
    font-size: 18px;
    transition: color 0.3s ease;
}

nav a:hover {
    color: #fcbe03; /* Secondary color for hover effect */
}
.nav-mega-menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background-color: white;
    box-shadow: 0 8px 16px rgba(0,0,0,0.1);
    padding: 20px;
    z-index: 1000;
}
.nav li:hover .nav-mega-menu {
    display: flex;
    justify-content: space-between;
}
.mega-menu-column {
    flex: 1;
    padding: 0 15px;
}
.mega-menu-column h4 {
    margin-bottom: 15px;
    color: #333;
    border-bottom: 2px solid #f0f0f0;
    padding-bottom: 10px;
}
.mega-menu-column ul {
    list-style-type: none;
    padding: 0;
}
.mega-menu-column ul li {
    margin-bottom: 10px;
}
.mega-menu-column ul li a {
    color: #666;
    text-decoration: none;
    transition: color 0.3s ease;
}
.mega-menu-column ul li a:hover {
    color: #007bff;
}
.header-right {
    display: flex;
    align-items: center;
    margin-left: auto;
}
.search-container {
    position: relative;
    margin-right: 20px;
}
.search-input {
    padding: 8px 12px;
    border: 1px solid #ddd;
    border-radius: 20px;
    width: fit-content;
    transition: width 0.3s ease;
}
.search-input:focus {
    width: 250px;
    outline: none;
    border-color: #007bff;
}
.language-selector {
    display: flex;
    align-items: center;
}
.language-flag {
    width: 30px;
    height: 20px;
    margin-right: 10px;
    cursor: pointer;
    opacity: 0.7;
    transition: opacity 0.3s ease;
    object-fit: contain;
}
.language-flag:hover {
    opacity: 1;
}
.products-section {
    padding: 4rem 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.categories {
    display: flex;
    justify-content: center;
    margin-bottom: 2rem;
    gap: 11px;
}

.category-tab {
    padding: 0.75rem 1.5rem;
    background-color: #FFFFFF;
    border: 2px solid #E0E0E0;
    border-radius: 8px;
    cursor: pointer;
    font-size: 16px;
    color: #333333;
    font-weight: 500;
    transition: background-color 0.3s ease, border-color 0.3s ease, transform 0.3s ease;
}

.category-tab.active, .category-tab:hover, .category-tab:focus {
    background-color: #022279; /* Secondary color for active/hover/focus */
    /* Primary color for border */
    color: #ffffff; /* Primary color for text */
    transform: scale(1.05);
    outline: none;
}

.product-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2.5rem;
    margin-top: 2rem;
}

.product-card {
    background-color: #FFFFFF;
    border-radius: 10px;
    padding: 1.5rem;
    text-align: center;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    animation: entrance 0.8s ease-out forwards;
    opacity: 0;
    transform: translateY(20px);
}

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

.product-card:hover, .product-card:focus {
    transform: scale(1.02);
    box-shadow: 0 6px 25px rgba(0, 0, 0, 0.15);
    outline: none;
}

.product-card img {
    max-width: 100%;
    object-fit: cover;
    border-radius: 8px;
    transition: transform 0.3s ease;
}

.product-card img:hover, .product-card img:focus {
    transform: scale(1.05);
    outline: none;
}

.product-card h3 {
    color: #022279; /* Primary color for headings */
    margin: 1.5rem 0 1rem;
    font-size: 24px;
    font-weight: 600;
}

.product-card p {
    margin: 0.75rem 0;
    color: #666666;
    font-size: 16px;
    line-height: 1.5;
}

.product-card button {
    background-color: #fcbe03; /* Secondary color for button */
    border: 2px solid #022279; /* Primary color for border */
    padding: 0.9rem 1.5rem;
    cursor: pointer;
    border-radius: 8px;
    color: #022279; /* Primary color for text */
    font-weight: 600;
    font-size: 16px;
    transition: background-color 0.3s ease, transform 0.3s ease;
}

.product-card button:hover, .product-card button:focus {
    background-color: #022279; /* Primary color on hover */
    color: #FFFFFF; /* White text on hover */
    transform: scale(1.05);
    outline: none;
}

.see-more {
    text-align: center;
    margin-top: 2.5rem;
}

.see-more button {
    background-color: #fcbe03; /* Secondary color for button */
    border: 2px solid #022279; /* Primary color for border */
    padding: 0.9rem 2rem;
    cursor: pointer;
    border-radius: 8px;
    color: #022279; /* Primary color for text */
    font-weight: 600;
    font-size: 16px;
    transition: background-color 0.3s ease, transform 0.3s ease;
}

.see-more button:hover, .see-more button:focus {
    background-color: #022279; /* Primary color on hover */
    color: #FFFFFF; /* White text on hover */
    transform: scale(1.05);
    outline: none;
}

.hidden {
    display: none;
}

footer {
    background: #003087;
    color: white;
    padding: 40px 20px;
    font-size: 14px;
}

footer .logo {
    margin-bottom: 1.5rem;
    width: 250px;
}

footer p {
    margin: 0.75rem 0;
    font-size: 16px;
}

footer a {
    color: #fcbe03; /* Secondary color for links */
    text-decoration: none;
    margin: 0 0.75rem;
    font-weight: 500;
    transition: color 0.3s ease;
}

footer a:hover, footer a:focus {
    color: #FFFFFF; /* White text on hover */
    outline: none;
}

.title {
    color: #003087;
    font-size: 33px;
    border-bottom: 5px solid #fcbe03;
    width: fit-content;
}

@media (max-width: 768px) {
    .product-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    header {
        padding: 1rem;
        flex-direction: column;
        align-items: flex-start;
    }
    .logo {
        margin-right: 0;
        margin-bottom: -1rem;
    }
   
}

