/* General Styles */
body {
    font-family: 'Poppins', sans-serif;
    background-color: #f8f9fa;
    color: #333;
    margin: 0;
    padding: 0;
    line-height: 1.6;
}
.logo-circle {
    width: 100px;
    height: 100px; /* Ensure equal width & height */
    border-radius: 50%;
    object-fit: cover; /* Ensures the image covers the full circle */
    border: 3px solid white; /* Optional border */
}
/* Hero Section */
.hero-section {
    animation: fadeIn 2s ease-in-out;
    text-align: center;
    color: white;
    padding: 100px 20px;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(-20px); }
    to { opacity: 1; transform: translateY(0); }
}

/* Navigation Bar */
.navbar {
    background: linear-gradient(135deg, #ff9966, #ff5e62);
    padding: 15px;
}

.navbar-brand {
    font-size: 1.8rem;
    font-weight: bold;
    color: #fff;
}

.navbar-nav .nav-link {
    color: #fff;
    font-size: 1rem;
    font-weight: 500;
    transition: color 0.3s;
}

.navbar-nav .nav-link:hover {
    color: #ffeb3b;
}

/* Category Cards */
.category-card {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    cursor: pointer;
    border-radius: 10px;
    padding: 20px;
    background: #fff;
}

.category-card:hover {
    transform: translateY(-5px);
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.2);
    background-color: #ff5e62;
    color: white;
}

/* Product Cards */
.product-card {
    transition: transform 0.3s ease, box-shadow 0.3s ease, opacity 0.5s ease;
    border-radius: 10px;
    overflow: hidden;
    background: #fff;
    padding: 15px;
    opacity: 0;
    transform: translateY(20px);
}

.product-card:hover {
    transform: scale(1.05);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

.product-card img {
    height: 200px;
    object-fit: cover;
    border-bottom: 2px solid #f0f0f0;
    transition: transform 0.3s ease;
}

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

/* Animation for Product Cards */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.product-card:nth-child(1) { animation: fadeInUp 0.5s ease-in-out 0.2s forwards; }
.product-card:nth-child(2) { animation: fadeInUp 0.5s ease-in-out 0.4s forwards; }
.product-card:nth-child(3) { animation: fadeInUp 0.5s ease-in-out 0.6s forwards; }
.product-card:nth-child(4) { animation: fadeInUp 0.5s ease-in-out 0.8s forwards; }

/* Special Offers */
.special-offers {
    animation: slideIn 1.5s ease-in-out;
    background: #f8f9fa;
    padding: 50px 20px;
    text-align: center;
}

@keyframes slideIn {
    from { opacity: 0; transform: translateX(-50px); }
    to { opacity: 1; transform: translateX(0); }
}

/* Testimonials */
.blockquote {
    border-left: 5px solid #ff5e62;
    padding-left: 15px;
    font-style: italic;
    color: #555;
}

/* Contact Button */
.btn-dark {
    background-color: #343a40;
    border-color: #343a40;
    font-size: 1.2rem;
    padding: 10px 20px;
    transition: all 0.3s;
}

.btn-dark:hover {
    background-color: #ff5e62;
    border-color: #ff5e62;
}

/* Footer Styles */
footer {
    background: #343a40;
    color: white;
    padding: 20px;
    text-align: center;
    width: 100%;
}

footer a {
    color: #ff9966;
    transition: color 0.3s;
   
}

footer a:hover {
    color: #ff5e62;
}
.text-light.mx-2 {
	text-decoration: none;
}
/* Featured Products Section */
.featured-products-section {
    background: linear-gradient(135deg, #ff9966, #ff5e62);
    padding: 60px 0;
}

.product-card {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border-radius: 10px;
    overflow: hidden;
    background: #fff;
    padding: 15px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

/* Hover Effect */
.product-card:hover {
    transform: scale(1.08);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
}

/* Slide-in Animation */
@keyframes slideIn {
    from {
        opacity: 0;
        transform: translateX(-50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* Apply Animation to Cards */
.animate-card {
    animation: slideIn 0.8s ease-in-out;
}
.container.py-5.text-center {
    background-color: #335069;
    max-width: 100%;
}
h4:hover {
/*     background-color: #304b62; */
    color: #304b62;
}
@media (max-width: 798px) {
    .col-md-4 {
        height: 100px;
    }
  h4:hover {
/*     background-color: #304b62; */
    color: #304b62;
}
}
