<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">/* ========== General ========== */
body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    color: #333;
    margin: 0;
    padding: 0;
    background: #f9f9f9;
  }
  
  /* ========== About Section ========== */
.about-container{
    display: flex;
    justify-content: left;
    align-items: baseline;
    flex-direction: column;
    padding: 70px 0;
    padding-left: 100px;
    padding-right: 100px;
    background-color: #f9f9f9;
  }
  
  .about-container h2 {
    color: #ff0000;
  }

.about-container p {
    color: #635a5a;
  }

.navbar-logo {
  height: 50px;
  margin: 2.5rem auto; /* Centered and consistent spacing */
  display: block;
}


/* Responsive adjustment for small screens */
@media (max-width: 768px) {
  .navbar-logo {
    height: 40px;
    margin: 0.5rem auto;
    padding-right: 170px;
  }
}

@media (max-width: 480px) {
  .navbar-logo {
    height: 35px;
    margin: 3rem auto;
  }
}

 /* ========== Latest Products Grid ========== */
 .hover-block {
    position: relative;
    transition: transform 0.3s ease;
    background: #fff;
    box-shadow: 0 2px 8px rgba(0,0,0,0.05);
    border-radius: 8px;
    overflow: hidden;
  }
  
  .hover-block:hover {
    transform: translateY(-8px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.1);
  }
  
  .position-relative {
    position: relative;
  }
  
  .position-relative img {
    width: 100%;
    height: auto;
    border-bottom: 1px solid #ddd;
  }
  
  .overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0,0,0,0.15);
    opacity: 0;
    transition: opacity 0.3s ease;
  }
  
  .hover-block:hover .overlay {
    opacity: 1;
  }
  
  .text-container {
    padding: 20px;
    text-align: left;
  }
  
  .text-container h4 {
    font-size: 18px;
    font-weight: 600;
    color: #333;
    margin-bottom: 10px;
  }
  
  .text-container h4 a {
    color: #fb3030;
    text-decoration: none;
  }
  
  .text-container span {
    font-size: 14px;
    color: #888;
  }
  
  .text-container .link {
    color: #007bff;
    font-weight: 500;
    display: inline-block;
    margin-top: 10px;
  }

  .carousel-slide-wrapper {
  position: relative;
  
}

/* Image fills container */
.carousel-img {
  width: 100%;
  height: auto;
  display: block;
}

/* Text box over the image */
.carousel-caption-box {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  color: white;
  background-color: rgba(0, 0, 0, 0.5); /* optional for contrast */
  padding: 20px;
  border-radius: 10px;
  width: 90%;
  max-width: 800px;
}

.carousel-title {
  font-size: 60px; 
  color: #ff0000;
  padding-top: 250px;
}

.color-white {
  font-size: 18px; 
  font-style: italic;
}

</pre></body></html>