/* General Styling */
body {
  font-family: Arial, sans-serif;
}

/* Navbar Styling */
header {
  background-color: #fff;
  border-bottom: 1px solid #ddd;
}

.navbar {
  padding: 1rem 1.5rem;
}

.navbar-brand img {
  height: 50px;
}

.navbar-nav .nav-link {
  color: #000;
  font-weight: bold;
  margin-right: 1rem;
}

.navbar-nav .nav-link:hover {
  color: #dc3545;
}

.btn-danger {
  background-color: #dc3545;
  border-color: #dc3545;
}

.btn-danger:hover {
  background-color: #c82333;
}


/* Hero Image Fix */
.hero-img {
    height: 100vh; /* Full viewport height */
    object-fit: cover; /* Ensures image covers screen without distortion */
}




/* Card Styling */
.card {
  position: relative;
  border: 1px solid #ddd;
  transition: transform 0.3s, box-shadow 0.3s;
  overflow: hidden;
}

.card:hover {
  transform: scale(1.05);
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
}

.card img {
  height: 180px;
  object-fit: cover;
  transition: transform 0.3s;
}

.card:hover img {
  transform: scale(1.1);
}

.card-title {
  font-size: 1rem;
  font-weight: bold;
}

.card-text {
  font-size: 0.9rem;
  color: #666;
}

/* New Arrivals Tag */
.new-arrivals {
  position: absolute;
  top: 10px;
  left: 10px;
  background: #ff0000;
  color: white;
  padding: 5px 10px;
  font-size: 0.8rem;
  font-weight: bold;
  border-radius: 3px;
}





/* Popular Brands Section */
.brand-card {
  transition: transform 0.3s, box-shadow 0.3s;
  cursor: pointer;
}

.brand-card:hover {
  transform: scale(1.05);
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
}

.brand-card img {
  max-height: 50px;
  object-fit: contain;
}

.brand-name {
  font-size: 1rem;
  font-weight: bold;
  color: #333;
}

/* Why Choose Us Section */
.stat-item i {
  margin-bottom: 10px;
}
.stat-item h4 {
  margin: 5px 0;
}
.stat-item p {
  margin: 0;
  font-size: 0.9rem;
  color: #666;
}

/* Testimonial Section */
.testimonial-card {
  background: linear-gradient(135deg, #ffffff, #f9f9f9);
  border: 1px solid #ddd;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.testimonial-card:hover {
  transform: scale(1.05);
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
}

.testimonial-card p {
  font-size: 1.2rem;
  color: #555;
}

.testimonial-card h5 {
  color: #333;
  font-weight: bold;
  margin-top: 20px;
}

.testimonial-card .bi-star-fill {
  font-size: 1.5rem;
  margin: 0 2px;
}

/* Footer Styling */
footer {
  background-color: #000;
  color: #fff;
  font-size: 0.9rem;
}

footer h5 {
  font-size: 1.1rem;
  margin-bottom: 1rem;
}

footer a:hover {
  color: #ff0000;
  text-decoration: underline;
}

footer .bi {
  vertical-align: middle;
  margin-right: 5px;
}

footer ul {
  padding-left: 0;
}

footer ul li {
  margin-bottom: 0.5rem;
}



/* About Us Section */
.about-us-section {
  background-color: #f9f9f9;
}

.about-us-section h2 {
  font-size: 2.5rem;
  color: #333;
}

.about-us-section p {
  color: #555;
  line-height: 1.8;
}

.about-us-section img {
  border-radius: 10px;
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
}


/* Stats Section Styling */
.stats-section {
  background-color: #f9f9f9;
}

.stats-section .divider {
  border-color: #ddd;
}

.stats-section h1, .stats-section h2 {
  color: #333;
}

.stats-section p {
  margin: 0;
  color: #555;
}



/* Contact Us Section */
.contact-us-section {
  background-color: #f9f9f9;
}

.contact-us-section h2 {
  font-size: 2rem;
  color: #333;
}

.contact-us-section p {
  color: #555;
}

.contact-us-section .form-control {
  border-radius: 10px;
}

.contact-us-section .btn-danger {
  background-color: #ff0000;
  border: none;
}

.contact-us-section .btn-danger:hover {
  background-color: #cc0000;
}


/* WhatsApp Button */
.whatsapp-button {
  position: fixed;
  bottom: 20px; /* Position from the bottom */
  right: 20px; /* Position from the right */
  width: 60px;
  height: 60px;
  background-color: #25d366; /* WhatsApp green */
  color: #fff;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.2);
  text-decoration: none;
  font-size: 28px;
  z-index: 9999;
  transition: all 0.3s ease-in-out;
  opacity: 1;
  transform: translateY(0);
}

.whatsapp-button:hover {
  background-color: #20c050; /* Slightly darker green on hover */
  box-shadow: 0 6px 8px rgba(0, 0, 0, 0.3);
}

.whatsapp-button.hidden {
  transform: translateY(100px); /* Slide out of view */
  opacity: 0; /* Hide button */
}
