body {
  font-family: 'Open Sans', sans-serif;
  scroll-behavior: smooth;
  margin-top: 70px;
}
*{
    margin:0;padding:0;
  }
  html,body{
    overflow-x: hidden;
  }
.section-title {
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  color: #c80002;
}
.nav-item:hover{
  background-color: #c80002;
  border-radius: 15px; transition:all 1s;
}
.nav-item:hover .nav-link{
  color:white;
}
.hero {
  height: 100vh;
  background: url('../images/banner_img/MEPcollagebnr2.png') center center/cover no-repeat;
  background-color: #5b0000a4;
  background-blend-mode: darken;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 0 1rem;
}

/* Title and subtitle styling */
.hero-title {
  font-size: 2.5rem;
}

.hero-subtitle {
  font-size: 1.1rem;
  max-width: 800px;
  margin: 0 auto;
}

/* Buttons */
.hero-btn {
  border-radius: 30px;
  transition: all 0.3s ease;
}

.hero-btn:hover {
  transform: translateY(-2px);
}




.product-card {
  border: 2px solid #c80002;
  transition: 0.3s;
  cursor: pointer;
}
.product-card img{
  object-fit: fill;
}
.product-card h5{
  font-size: 14px;font-weight: 800;
}
.product-card:hover {
  background: #c80002;
  color: #fff;
  transform: translateY(-6px);
}

.brdlg {
  height: 130px;width:220px;
 border:1px solid red;padding: 12px;
}
.brdlg:hover{
  box-shadow: 0px 0px 40px -20px red;
}


  #clients {
    background: #fff;
  }
  .client-card {
    background: #fff;
    transition: all 0.3s ease;
  }
  .client-card:hover {

    box-shadow: 0 4px 10px rgba(255, 0, 0, 0.2);
  }
  .client-logo {
    height: 100px;
    object-fit: contain;

  }
.brnd{
      border-bottom: 7px solid #c00000;
       }
  
.footer {
  background-color: #c40101;
    font-size: 15px;
    line-height: 1.6;
  }
  .footer-link {
    color: #ffffff;
    text-decoration: none;margin: 18px 3px;
    transition: color 0.3s ease;
  }
  .footer-link:hover {
    color: #fff;font-weight: 800;
  }
  .footer .social-links a {
    font-size: 1.2rem;
    transition: color 0.3s;
  }
  .footer .social-links a:hover {
    color: #ff4d4d;}

/* about */

.about-hero {
  height: 60vh;
  background: linear-gradient(to right, #fff2f2, #fff4f4);
  display: flex;
  justify-content: center;
  align-items: center;
}

.about-hero h1 {
  font-family: 'Montserrat', sans-serif;
  font-size: 2.5rem;
}

.team img {
  height: 120px;
  width: 120px;
  object-fit: cover;
  border: 3px solid #c80002;
}

.values h5 {
  font-weight: 600;
}
/* product.css */

.product-hero {
  height: 60vh;
  background: linear-gradient(to right, #ffffff, #f8f9fa);
  display: flex;
  justify-content: center;
  align-items: center;
}

.product-card img {
  height: 150px;
  object-fit: contain;
}

.categories .card,
.featured .card {
  transition: transform 0.3s;
}
.categories .card:hover,
.featured .card:hover {
  transform: translateY(-5px);
}
/* brands */

.brands-hero {
  height: 60vh;
  background: linear-gradient(to right, #fee0e054);
  display: flex;
  justify-content: center;
  align-items: center;
}

.top-brands img {
  height: 100px;
  object-fit: contain;
  transition: transform 0.3s;
}

.top-brands img:hover {
  transform: scale(1.05);
}
.quick_link{
  margin:auto 0 auto 75px;
}
.brand-gallery img {
  transition: transform 0.3s;
}
.brand-gallery img:hover {
  transform: scale(1.05);
}
#contact-hero{
   height: 50vh;
  background: linear-gradient(to right, #fee0e054);
}
/* Responsive Design */
@media (max-width: 992px) {
  .hero-title {
    font-size: 2rem;
  }
  .hero-subtitle {
    font-size: 1rem;
    padding: 0 1rem;
  }
}

@media (max-width: 768px) {
  .hero {
    height: auto;
    padding: 100px 20px;
    text-align: center;
  }
  .hero-title {
    font-size: 1.8rem;
  }
  .hero-subtitle {
    font-size: 0.95rem;
  }
  .quick_link{
  margin:auto 0;
}
}

@media (max-width: 576px) {
  .hero-title {
    font-size: 1.6rem;
  }
  .hero-subtitle {
    font-size: 0.9rem;
  }
  .hero-btn {
    width: 100%;
    margin-bottom: 10px;
  }
}