/* Body Styling */
body {
    font-family: Arial, sans-serif;
    line-height: 1.6;
    background-color: #f4f4f4;
    color: #333;
}

/* Header Styling */
header {
    text-align: center;
    background-color: #ffd700;
    color: #8b0000;
    padding: 20px;
}

header h1 {
    font-size: 2.5em;
}

header p {
    font-size: 1.2em;
}

/* Product Section Styling */
.product {
    background-color: #fff;
    padding: 20px;
    margin: 20px auto;
    width: 90%;
    max-width: 600px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    border-radius: 10px;
}

.product h2 {
    font-size: 1.8em;
    color: #8b0000;
}

.product p {
    margin: 10px 0;
}

.product-img {
    width: 100%;
    height: auto;
    border-radius: 10px;
    margin: 10px 0;
}

/* Order Section Styling */
.order {
    text-align: center;
    padding: 20px;
    margin: 20px auto;
    width: 90%;
    max-width: 600px;
    background-color: #e8f5e9;
    border-radius: 10px;
}

.order button {
    margin: 10px;
    padding: 10px 20px;
    background-color: #28a745;
    color: #fff;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-size: 1em;
}

.order button:hover {
    background-color: #218838;
}

/* Footer Styling */
footer {
    text-align: center;
    padding: 10px;
    background-color: #333;
    color: #fff;
    font-size: 0.9em;
}
.social-icons i {
    color: white; /* Set icon color to white */
    transition: color 0.3s;
}

.social-icons i:hover {
    color: #ffc107; /* Set hover color for icons */
	
	
	
}

/* Navbar Styling */
        .navbar {
            background-color: #343a40;
        }
        .navbar-nav .nav-link:hover {
            color: #ffc107 !important;
        }

        /* Hero Section Styling */
        .hero {
            background: linear-gradient(to right, #6a11cb, #2575fc);
            color: white;
            padding: 80px 0;
            text-align: center;
        }
        .hero h1 {
            font-size: 3rem;
            font-weight: bold;
        }
        .hero p {
            font-size: 1.25rem;
        }

        /* Product Cards */
        .product-card img {
            object-fit: cover;
            height: 200px;
        }
        .product-card {
            box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
            transition: transform 0.3s;
        }
        .product-card:hover {
            transform: scale(1.05);
        }

        /* Footer Styling */
        .footer {
            background-color: #343a40;
            color: white;
            padding: 20px 0;
        }
        .footer a {
            color: #ffc107;
            text-decoration: none;
        }
        .footer a:hover {
            text-decoration: underline;
        }
        .social-icons a {
            color: white;
            margin: 0 10px;
            font-size: 1.5rem;
            transition: color 0.3s;
        }
        .social-icons a:hover {
            color: #ffc107;
        }
