body {
    font-family: Arial, sans-serif;
}
.hero-section {
height: 100vh; /* Full height on larger screens */
}

.carousel-item {
height: 100vh;
background-size: cover;
background-position: center;
position: relative;
}

/* Black transparent overlay */
.carousel-item::before {
content: '';
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 100%;
background: rgba(0, 0, 0, 0.5); /* Adjust transparency here */
z-index: 1; /* Ensure overlay stays on top of the image */
}

/* Center the text */
.carousel-caption {
z-index: 2; /* Ensure text is above overlay */
position: relative;
top: 50%; /* Move text down */
transform: translateY(-50%); /* Center vertically */
text-align: center;
}

.carousel-caption h1, .carousel-caption p {
color: #fff;
}

.contact-us a {
    background-color: #4d2669;
    padding: 10px;
    text-decoration: none;
    color: #fff;
    border-radius: 5px;
}
.our-product-section {
    background-color: beige;
    padding: 30px 0;
}
.instore .products img {
    border-radius: 15px;
}

.why-us-section {
background: url('m5.jpg') no-repeat center center/cover;
color: white;
padding: 50px 0;
position: relative;
}

.why-us-overlay {
background-color: rgba(0, 0, 0, 0.6); /* Transparent overlay */
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 100%;
z-index: 1;
}

.why-us-content {
position: relative;
z-index: 2;
}

.why-us-card {
background: rgba(255, 255, 255, 0.2);
border: none;
padding: 20px;
border-radius: 10px;
text-align: center;
transition: transform 0.3s ease, background 0.3s ease;
}

.why-us-card:hover {
transform: scale(1.05);
background: rgba(255, 255, 255, 0.4);
}

.why-us-icon {
font-size: 3rem;
color: #00aaff;
margin-bottom: 15px;
}

.contact-form {
background: #ffffff;
padding: 20px 30px;
border-radius: 8px;
/* box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1); */
max-width: 400px;
width: 100%;
margin-top: 100px;
}

.contact-form h2 {
text-align: center;
margin-bottom: 20px;
font-size: 24px;
color: #333;
}

.contact-form .form-group {
margin-bottom: 15px;
}

.contact-form label {
display: block;
margin-bottom: 5px;
color: #333;
font-weight: bold;
}

.contact-form input, 
.contact-form textarea, 
.contact-form button {
width: 100%;
padding: 10px;
border: 1px solid #ddd;
border-radius: 5px;
outline: none;
font-size: 14px;
}

.contact-form textarea {
resize: none;
height: 100px;
}

.contact-form button {
background-color: #007bff;
color: white;
font-weight: bold;
cursor: pointer;
border: none;
transition: background-color 0.3s ease;
}

.contact-form button:hover {
background-color: #0056b3;
}

@media (max-width: 480px) {
.contact-form {
padding: 15px 20px;
}

.contact-form h2 {
font-size: 20px;
}
}

footer {
background-color: #0d1117; /* Dark background */
color: #999; ; /* White text */
padding: 30px 20px;
}

footer a {
color: #999; /* Light gray links */
text-decoration: none;
}

footer a:hover {
color: #fff; /* Highlight links on hover */
}

.footer-title {
font-weight: bold;
margin-bottom: 15px;
}

.footer-bottom {
border-top: 1px solid #444; /* Subtle border on the top */
padding-top: 15px;
margin-top: 20px;
text-align: center;
font-size: 0.9rem;
color: #aaa; /* Light gray text */
}

/* Responsive Design */
@media (max-width: 768px) {
.footer-columns {
text-align: center; /* Center text on smaller devices */
}

.footer-columns > div {
margin-bottom: 20px; /* Add spacing between columns */
}
} 