.section-title {
  text-align: center;
  font-size: 2.5rem;
  font-weight: 700;
  margin-top: 30px;
  margin-bottom: 20px;
}

a {
  text-decoration: none;
}

.cards-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 25px;
  justify-items: center;
  padding: 30px 20px;
}

.empty-space {
  height: 5rem;
}

.card {
  width: 100%;
  max-width: 320px;
  border-radius: 12px;
  overflow: hidden;
  background: #fff;
  position: relative;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  cursor: pointer;
  display: flex;
  flex-direction: column;
}

/* Image styling */
.card img {
  width: 100%;
  height: 250px;
  object-fit: cover;
  display: block;
  border-bottom: 4px solid transparent;
  transition: transform 0.3s ease, border-bottom 0.3s ease;
}

/* Title styling — below the image */
.card-title {
  background: rgb(39, 64, 176);
  color: #fff;
  font-size: 1rem;
  font-weight: 500;
  text-align: center;
  padding: 15px 10px;
  width: 100%;
  line-height: 1.4;
  border-radius: 0 0 12px 12px;
  transition: background 0.3s ease;
}

.card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 16px rgb(91, 91, 92);
}

.card:hover img {
  transform: scale(1.05);
}

.card:hover .card-title {
  background: rgba(0, 0, 0, 0.9);
}


/* Responsive tweaks */
@media (max-width: 768px) {
  .section-title {
    font-size: 2rem;
  }
}

@media (max-width: 480px) {
  .card img {
    height: 200px;
  }

  .card-title {
    font-size: 1rem;
    padding: 10px;
  }
}


/* Subtitle */
.sub-title {
  margin-top: 25px;
  font-weight: 500;
  font-family: Arial, Helvetica, sans-serif;
  color: #000;
}

.product-section p {
  line-height: 1.6;
  margin-bottom: 15px;
  font-family: Arial, Helvetica, sans-serif;
  color: rgb(100, 98, 98);
}

.carousel-item img {
  width: 100%;
  height: auto;
  border-radius: 8px;
}

.specific-btn{
  color: #e4e4e4;
  background: gray;
  padding: 10px 20px;
  border-radius: 5px;
  cursor: pointer;
}

.specific-btn:hover{
  background: #4f4c4c;
}

@media (max-width: 768px) {
  .page-title {
    font-size: 1.8rem;
    text-align: center;
  }

  .sub-title {
    text-align: center;
  }

  .product-section p {
    text-align: center;
  }
}

.container-box {
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  align-items: stretch;
}

.left-box {
  background: #f3f3f3;
  padding: 40px;
}

.section-title {
  font-size: 1.75rem;
  color: #3a3a3a;
  text-align: left;
  font-family: Arial, Helvetica, sans-serif;
}

.sub-head {
  font-size: 1.2rem;
  margin-top: 25px;
  margin-bottom: 10px;
  color: #3a3a3a;
}

.text-list {
  margin: 0;
  padding-left: 18px;
}


.text-list li {
  margin-bottom: 10px;
  line-height: 1.5;
  color: #414141;
}

.right-box {
  background: #3b4147;
  padding: 40px;
  border-radius: 4px;
  color: white;
}

.white {
  color: white;
}

.char-list {
  list-style: none;
  padding-left: 0;
  margin-top: 20px;
}

.char-list li {
  margin-bottom: 16px;
  font-size: 1rem;
  line-height: 1.6;
  position: relative;
  padding-left: 20px;
}

.char-list li:before {
  content: "›";
  color: #00b4ff;
  font-size: 2rem;
  position: absolute;
  left: 0;
  top: -16px !important;
}

.char-list li span {
  font-weight: 600;
  color: #e4e4e4;
}

@media (max-width: 992px) {
  .container-box {
    grid-template-columns: 1fr;
  }

  .right-box,
  .left-box {
    margin-bottom: 30px;
  }
}

@media (max-width: 600px) {

  .left-box,
  .right-box {
    padding: 25px;
  }

  .section-title {
    font-size: 1.6rem;
    text-align: center;
    padding: 0 !important;
  }

  .char-list li {
    font-size: 0.95rem;
  }
}


.properties-section {
  padding: 40px 20px;
}


ul.breadcrumb {
  padding: 16px;
  list-style: none;
  background-color: #eee;
 }
 ul.breadcrumb li {
  display: inline;
  font-size: 18px;
 }
 ul.breadcrumb li+li:before {
  padding: 8px;
  color: black;
  content: "/\00a0";
 }
 ul.breadcrumb li a {
  color: #0275d8;
  text-decoration: none;
 }
 ul.breadcrumb li a:hover {
  color: #01447e;
  text-decoration: underline;
 }
 


 
/* About Section */
.about-section {
  padding: 50px 20px;
  text-align: center;
  background-color: #fff;
}

.about-section h1 {
  font-size: 2.5rem;
  margin-bottom: 20px;
  color: #333;
}

.about-section p {
  font-size: 1.2rem;
  margin-top: 30px;
  margin-bottom: 40px;
  color: #555;
  line-height: 1.8;
}

.main-c{
  display: flex;
  flex-direction: row;
  justify-content: space-evenly;
  padding: 0 10px !important;
}

@media (max-width:576px) {
  .main-c{
    display: flex;
    flex-direction: column;
  }
}

.product-card {
  background: white;
  display: flex;
  gap: 20px;
  padding: 15px;
  margin: 0 10px;
  border-radius: 8px;
  box-shadow: 0 4px 4px rgba(0,0,0,0.1);
  margin-bottom: 25px;
  position: relative;
  
}

.product-card img {
  width: 200px;
  height: auto;
}

.product-info h2 {
  margin-bottom: 10px;
  font-size: 20px;
}

.product-info ul,
.product-info ol {
  margin-left: 18px;
  margin-bottom: 10px;
  line-height: 1.6;
}

.details-btn {
  display: inline-block;
  margin-top: 10px;
  color: #0066ff;
  text-decoration: none;
  font-weight: bold;
}

.details-btn:hover {
  text-decoration: underline;
}

/* Discount Badge */
.discount {
  position: absolute;
  top: 10px;
  left: 10px;
  padding: 6px 10px;
  background: #ff7b00;
  color: white;
  border-radius: 4px;
  font-size: 14px;
  font-weight: bold;
}

/* Responsive */
@media (max-width: 900px) {
  .main-container {
      flex-direction: column;
  }

  .sidebar {
      width: 100%;
      margin-bottom: 20px;
  }

  .product-card {
      flex-direction: column;
      text-align: center;
      align-items: center;
  }

  .product-card img {
      width: 60%;
  }
}

@media (max-width: 650px) {
  .nav-links {
      display: none;
  }

  .menu-btn {
      display: block;
  }
}

.title-c{
  text-align: center;
  margin: 20px 0;
}