/* General Body Styles */
body {
    font-family: 'Inter', sans-serif;
    color: #1D3557; /* Dark Blue/Charcoal Text */
}

/* NEW Hero Section Animated Background */
.hero-section {
    position: relative;
    overflow: hidden;
    background: linear-gradient(270deg, #e0f7fa, #e3f2fd, #f3e5f5, #e0f7fa);
    background-size: 800% 800%;
    animation: gradientAnimation 20s ease infinite;
}

@keyframes gradientAnimation {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}


/* Card Hover Effects */
.market-card, .advantage-card, .product-category-card {
    transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}
.market-card:hover, .advantage-card:hover, .product-category-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
    border-color: #00A896; /* Teal accent on hover */
}

/* Navigation Link Styles */
.main-link {
    position: relative;
    padding-bottom: 0.5rem; /* Spacing for the underline */
}

.main-link::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    background-color: #00A896;
    transition: width 0.3s ease-in-out;
}

.main-link:hover::after {
    width: 100%;
}

.nav-link {
    transition: color 0.3s ease;
}

.nav-link:hover {
     color: #00A896;
}

/* Active Page Link Styling */
.page-home .nav-link[href="index.html"],
.page-about .nav-link[href="about.html"],
.page-products .nav-link[href="products.html"],
.page-contact .nav-link[href="contact.html"],
.page-electronics .nav-link[href="products.html"],
.page-beauty .nav-link[href="products.html"],
.page-wearables .nav-link[href="products.html"],
.page-pos .nav-link[href="products.html"],
.page-rugged .nav-link[href="products.html"],
.page-fmcg .nav-link[href="products.html"] {
    color: #00A896;
    font-weight: 700;
}

.page-home .nav-link[href="index.html"]::after,
.page-about .nav-link[href="about.html"]::after,
.page-products .nav-link[href="products.html"]::after,
.page-contact .nav-link[href="contact.html"]::after,
.page-electronics .nav-link[href="products.html"]::after,
.page-beauty .nav-link[href="products.html"]::after,
.page-wearables .nav-link[href="products.html"]::after,
.page-pos .nav-link[href="products.html"]::after,
.page-rugged .nav-link[href="products.html"]::after,
.page-fmcg .nav-link[href="products.html"]::after {
    width: 100%;
}

/* Footer Link Hover */
.footer-link:hover {
    color: #00A896;
    transition: color 0.2s ease-in-out;
}

/* Brand Logo Hover */
.brand-logo {
    transition: filter 0.3s ease;
    filter: grayscale(100%) opacity(60%);
    height: 40px;
}
.brand-logo:hover {
    filter: grayscale(0%) opacity(100%);
}
