html {
    scroll-behavior: smooth;
}
body { font-family: Arial, sans-serif; margin: 0; padding: 0; box-sizing: border-box; }

.header { display: flex; justify-content: space-between; align-items: center; padding: 15px 20px; box-shadow: 0 -5px 10px rgba(0, 0, 0, 0.2); position: relative; }
.logo { display: flex; align-items: center; gap: 10px; }
.logo img { height: 70px; max-width: 140px; object-fit: contain; position: relative; left: 133%;}
.nielit-logo { position: absolute; right: 236px; height: 70px; max-width: 140px; object-fit: contain; }
.nav-links { display: flex; gap: 55px; position: absolute; left: 49%; transform: translateX(-50%); }
.nav-links a { color: black; text-decoration: none; padding: 10px 20px; background:rgba(255, 255, 255, 0.1); font-size:large; border-radius: 8px; transition: background 0.3s, transform 0.2s; }
.nav-links a:hover { background: rgb(241 73 107); color: #fff; transform: scale(1.05); }

.banner-container { position: relative; width: 100%; max-width: 1200px; margin: 8px auto; overflow: hidden; border-radius: 12px; }
.banner-images {
    width: 100%;
    position: relative;
}

.banner-images img {
    display: none;
    width: 100%;
    transition: opacity 0.5s ease;
}

.banner-images img.active {
    display: block;
}

/* Circular Indicator - Now Properly Centered */
.circle-indicator {
    position: absolute;
    bottom: 20px;
    left: 0;
    right: 0;
    display: flex;
    justify-content: center;
    gap: 10px;
}

.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%; /* Ensures it's a circle */
    background-color: rgba(255, 255, 255, 255);
    cursor: pointer;
    transition: background-color 0.3s ease;
}
.dot.active {
    background-color: rgb(241, 73, 107); /* New active color (vibrant pink/red) */
}
 .category-icon { font-size: 32px; margin-bottom: 8px; }
.category-title { font-weight: bold; font-size: 14px; }

.headline { text-align: center; margin-top: 40px; }

#products-container { 
    display: grid; 
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); /* Auto-fit for dynamic column count */
   /* gap: 25px; */
    gap:30px;
    padding: 20px; 
   /* max-width: 1200px; */
    max-width:1385px;
    margin: 0 auto; 
}

.product-card { 
    border: 1px solid #ddd; 
    border-radius: 8px; 
    overflow: hidden;
    text-align: center;
    box-shadow: 2px 2px 8px rgba(0, 0, 0, 0.1); 
    transition: transform 0.3s ease;
}

.product-card:hover { 
    transform: scale(1.03); 
}

.product-card img:hover::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.4);
    z-index: 1;
}

.product-info {
    padding: 10px; 
    background-color: #f9f9f9;
}

.product-info h3 { 
    margin: 5px 0; 
}

.product-info p { 
    margin: 3px 0; 
}
.add-to-cart-btn {
    display: inline-block;
    background-color: #f1496b;
    color: #fff;
    border: none;
    border-radius: 20px;
    padding: 8px 10px;
    margin-top: 10px;
    cursor: pointer;
    font-weight: bold;
    transition: background-color 0.3s ease, transform 0.2s ease;
    box-shadow: 0 4px 8px rgba(0, 120, 255, 0.2);
}

.add-to-cart-btn:hover {
    background-color: #f1496b;
    transform: translateY(-2px);
}
.category-container {
    display: flex;
    flex-wrap: wrap;  /* Ensures responsiveness */
    gap: 15px;
    padding: 20px;
    justify-content: center; /* Center alignment */
}

.category-box {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    width: 120px;  /* Fixed width for uniformity */
    height: 90px;
    border: 2px solid #ddd;
    border-radius: 12px;
    background-color: #f9f9f9;
    color: #f1496b;
    cursor: pointer;
    transition: background-color 0.3s ease, transform 0.2s ease;
    box-shadow: 2px 2px 10px rgba(0, 0, 0, 0.1);
}

.category-box:hover {
    background-color: #f1496b;
    color: #fff;
    transform: translateY(-5px); /* Lift effect */
}

.category-icon {
    font-size: 32px;
    margin-bottom: 8px;
}

.category-title {
    font-weight: bold;
    font-size: 14px;
    color:black;
} 
 
/* Banner Section */
.app-banner {
    padding: 5px 0;
    display: flex;
    justify-content: center;
    background-color: #fd5a85;
}

/* Flex Container */
.banner-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    /*max-width: 1250px;*/
    max-width: 1300px;
    width: 100%;
    padding: 0px;
    flex-wrap: wrap;
}

/* Mobile Screens */
.mobile-screens {
    display: flex;
    gap: 10px;
}

.mobile-img {
    width: 150px;
}

/* App Info */
.app-info {
    text-align: center;
    flex-grow: 1;
    min-width: 200px;
}

.app-title {
    font-size: 1.8rem;
    font-weight: bold;
    color: #000;
}

.app-subtitle {
    font-size: 1.2rem;
    color: #f0ecec;
}

/* Store Buttons */
.download-buttons {
    margin-top: 10px;
    display: flex;
    gap: 10px;
    justify-content: center;
}

.store-btn {
    width: 190px;
    border-radius: 13px;
}

/* QR Code */
.qr-section {
    text-align: center;
    min-width: 150px;
}

.qr-text {
    font-size: 1rem;
    font-weight: bold;
    margin-bottom: 5px;
}

.qr-img {
    width: 120px;
}

/* Responsive Design */
@media (max-width: 768px) {
    .banner-container {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .mobile-screens {
        flex-direction: row;
        justify-content: center;
    }

    .mobile-img {
        width: 120px;
    }

    .app-info {
        margin-top: 20px;
    }

    .qr-section {
        margin-top: 20px;
    }
}