body { font-family: Arial; margin: 0; padding: 0; }
nav { display: flex; align-items: center; background: #222; padding: 10px; }
nav a { color: white; margin-right: 15px; text-decoration: none; }
nav .logo { height: 40px; margin-right: 20px; }
nav .search-bar input { padding: 5px; }
nav .search-bar button { padding: 5px 10px; }
main { padding: 20px; }
.product-card { border: 1px solid #ccc; padding: 10px; width: 200px; display: inline-block; margin: 10px; }
.product-card img { width: 100%; }
footer { background: #222; color: white; text-align: center; padding: 10px; margin-top: 20px; }







.navbar form {
    display: inline-block;
    margin-left: 20px;
}

.navbar input[type="text"] {
    padding: 5px;
    border-radius: 3px;
    border: 1px solid #ccc;
}

.navbar button {
    padding: 5px 10px;
    border: none;
    background-color: #007BFF;
    color: white;
    border-radius: 3px;
    cursor: pointer;
}

.navbar button:hover {
    background-color: #0056b3;
}





.product-card-modern {
    background: #fff;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
    transition: all 0.4s ease;
    height: 100%;
    position: relative;
}

.product-card-modern:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.15);
}

.product-thumb {
    position: relative;
    display: block;
    overflow: hidden;
}

.product-thumb img {
    width: 100%;
    height: 280px;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.product-card-modern:hover img {
    transform: scale(1.08);
}

/* Blue overlay at bottom of image */
.product-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(0,123,255,0.95), rgba(0,123,255,0.85));
    color: white;
    padding: 16px 16px 16px;
    transform: translateY(50%);
    transition: transform 0.4s ease;
}

.product-card-modern:hover .product-overlay {
    transform: translateY(0);
}

.product-title-overlay a {
    color: white;
    text-decoration: none;
    font-size: 18px;
    font-weight: 700;
    line-height: 1.3;
    display: block;
    margin-bottom: 4px;
}

.product-title-overlay a:hover {
    opacity: 0.9;
}

.product-price-overlay {
    font-size: 15px;
    font-weight: 600;
    opacity: 0.95;
}

/* Floating Add to Cart Icon Button */
.btn-cart-icon {
    position: absolute;
    bottom: -18px;
    right: 16px;
    background: #fff;
    color: #333;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    border: none;
    box-shadow: 0 6px 20px rgba(0,0,0,0.2);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    z-index: 10;
    opacity: 0;
    transform: scale(0.8);
}

.product-card-modern:hover .btn-cart-icon {
    bottom: 16px;
    opacity: 1;
    transform: scale(1);
}

.btn-cart-icon:hover {
    background: #0056b3;
    color: white;
    transform: scale(1.1);
}

.btn-cart-icon svg {
    width: 22px;
    height: 22px;
}

#hero .container {
  max-width: none !important; /* Removes Bootstrap's width limits */
  width: 100% !important;    /* Ensures it spans full width */
  padding-right: var(--bs-gutter-x, 0.75rem); /* Keeps default Bootstrap padding; set to 0 for no padding */
  padding-left: var(--bs-gutter-x, 0.75rem);
  margin-right: auto;        /* Keeps it centered if needed */
  margin-left: auto;
}


    :root {
        --Pbluish: #0056b3;
        --Pblakish: #1e293b;
    }
    .section-pad { padding: 100px 0; }
    .icon-box i { font-size: 3.5rem; color: #0056b3; }
    .service-card {
        transition: all 0.4s ease;
        border: none;
        border-radius: 1rem;
        overflow: hidden;
        box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    }
    .service-card:hover {
        transform: translateY(-15px);
        box-shadow: 0 20px 40px rgba(0,0,0,0.15);
    }
    .service-card img { height: 240px; object-fit: cover; }
    .testimonial-item {
        background: white;
        padding: 2rem;
        border-radius: 1rem;
        box-shadow: 0 10px 30px rgba(0,0,0,0.08);
        font-style: italic;
    }
    .final-cta {
        background: linear-gradient(135deg, var(--Pbluish), #1e40af);
        color: white;
        border-radius: 2rem;
        margin: 0 0px;
        padding: 100px 20px;
    }


