/* Logo Styling */
.logoimg {
  max-width: 450px;
}

/* Navbar Styling */
.navbar-nav .nav-item a {
  padding: 10px 10px;
  color: black;
}
.navbar-nav .nav-item a:hover {
  background-color: grey;
  color: rgb(242, 171, 1);
}
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  background-color: #f8f9fa;
}
.navbar-nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
}
.navbar-nav li {
  list-style: none;
  padding: 10px;
}

footer {
  padding: 30px;
  background-color: gray;
}

.map-container {
  width: 100%;
  max-width: 600px; /* Adjust as needed */
  height: 300px;
  margin-left: 500px;
  margin-top: 10px;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 2px 2px 10px rgba(0, 0, 0, 0.2);
}
footer {
  background-color: rgb(34, 34, 34);
}
.footer-container {
  padding: 30px;
  display: flex;
  justify-content: space-between;
  gap: 50px;
}
.contact-info {
  max-width: 500px;
}
#firstp li {
  font-weight: bolder;
  color: rgb(242, 171, 1);
}

#firstp p {
  font-weight: lighter;
  color: white;
}
#firstp {
  list-style: none;
}

.fa-check {
  color: rgb(242, 171, 1);
  margin-right: 10px;
  margin-left: 0px;
}
.fa-phone-alt {
  color: rgb(242, 171, 1);
}
.fa-envelope {
  color: rgb(242, 171, 1);
}

.highlight {
  color: rgb(242, 171, 1);
}
.footer-top h2 {
  color: white;
  margin-bottom: 10px;
  font-size: 24px;
}
/* Footer container styling */
footer {
  background-color: #333;
  color: white;
  padding: 20px;
  font-size: 14px;
  margin-top: 30px;
}

/* Footer Top Section */
.footer-top {
  text-align: center;
  margin-bottom: 20px;
}

.footer-top h2 {
  font-size: 24px;
  color: #ffd700; /* Yellow color for "ACE IS THE PLACE" */
  margin-bottom: 10px;
}

.footer-nav ul {
  list-style: none;
  padding: 0;
  text-align: center;
}

.footer-nav ul li {
  display: inline;
  margin: 0 15px;
}

.footer-nav ul li a {
  color: white; /* Set navigation links to white */
  text-decoration: none;
}

.footer-nav ul li a:hover {
  color: #ffd700; /* Color change on hover for navigation links */
}

.footer-follow p {
  font-size: 18px;
  margin-bottom: 10px;
}

/* Styling for social media icons */
.social-icons {
  list-style: none;
  padding: 0;
  text-align: center;
}

.social-icons li {
  display: inline;
  margin: 0 10px;
}

.social-icons li a {
  color: white; /* Set social icons color to white */
  font-size: 20px;
  text-decoration: none;
}

.social-icons li a:hover {
  color: #ffd700; /* Color change on hover for social icons */
}

/* Footer container for contact info and map */
.footer-container {
  display: flex;
  justify-content: space-between;
  margin-bottom: 20px;
  flex-wrap: wrap;
  margin-top: 20px; /* Adds spacing between the top sections and the container */
}

/* Styling for the contact info section */
.contact-info {
  flex: 1;
  max-width: 400px;
  margin-right: 20px;
}

.contact-info ul {
  list-style: none;
  padding: 0;
}

.contact-info ul li {
  margin: 10px 0;
}

.contact-info ul li p {
  margin-left: 20px;
}

.contact-info ul li i {
  margin-right: 10px;
}

/* Styling for the map container */
.map-container {
  flex: 2;
  max-width: 700px;
  height: 400px;
  margin-left: 20px;
}

/* Footer bottom styling */
.footer-bottom {
  text-align: center;
  font-size: 12px;
  padding-top: 20px;
  background-color: #222;
}

/* 🌟 Ensure Product Cards Are Properly Aligned & Styled */
.product-carousel {
  display: flex;
  gap: 20px; /* Space between cards */
  padding: 20px;
  justify-content: center;
}

/* Individual Product Card */
.product-card {
  background: white;
  box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.1); /* Soft shadow effect */
  border-radius: 10px;
  padding: 15px;
  text-align: center;
  width: 280px; /* Fixed width for uniformity */
  height: auto; /* Prevents overlap */
  display: flex;
  flex-direction: column;
  align-items: center;
  border: 1px solid #ddd; /* Light border for box effect */
}

/* Product Images */
.product-card img {
  width: 100%;
  height: 200px;
  object-fit: contain; /* This ensures the whole image fits inside */
  background-color: white; /* Optional: Adds a clean background if the image has empty space */
  padding: 5px; /* Optional: Adds spacing if needed */
}

/* Product Title */
.product-card h3 {
  font-size: 16px;
  font-weight: bold;
  text-align: center;
  margin-top: 10px;
}

/* Enable Slick Carousel */
.slick-track {
  display: flex;
}

.slick-slide {
  display: flex;
  justify-content: center;
}

/* Carousel Arrows - Make Visible */

.slick-prev,
.slick-next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background-color: rgba(0, 0, 0, 0.5); /* Semi-transparent background */
  color: white;
  border: none;
  padding: 10px 15px;
  border-radius: 50%; /* Circular buttons */
  font-size: 18px;
  cursor: pointer;
  z-index: 100; /* Ensures it stays above other elements */
}
.slick-prev {
  left: 10px; /* Adjust position to center */
}
.slick-next {
  right: 10px; /* Adjust position to center */
}
.slick-prev:hover,
.slick-next:hover {
  background: #ffd700;
}

/* Responsive Fixes */
@media (max-width: 768px) {
  .product-carousel {
    flex-direction: column;
    align-items: center;
  }

  .product-card {
    width: 90%;
  }
}
