:root {
  --main-color: #cc2025;
}

*{
  margin: 0;
  padding: 0;
  box-sizing: border-box;

}
body {
  font-family: "Poppins", sans-serif;
  background-color: #9696963d;
}
.top-bar {
  background-color:black;
  color: rgb(255, 255, 255);
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 40px;
}
.contact-info {
  display: flex;
  align-items: center;
  gap: 15px;
}
.contact-info a{
  text-decoration: none;
  color: white;
}
.contact-info i {
  margin-right: 5px;
}
.social-icons {
  display: flex;
  gap: 10px;
}
.social-icons a {
  color: var(--main-color);
  text-decoration: none;
  font-size: 18px;
}
.contact-info i{
  color: var(--main-color);
  text-decoration: none;
  font-size: 18px;
}
.contact-info a{
  font-size: 18px;
}
header{
  background-color: rgb(255, 255, 255);
  padding: 10px 40px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  box-shadow: 0px 4px 20px rgba(0,0,0,0.1);
}
.logo {
  display: flex;
  align-items: center;
}

.logo img {
  height: 40px; /* Adjust as needed */
  align-items: center;
  margin-right: 10px;
}
.logo span{
  font-size: 1.3rem;
   color: var(--main-color);
    font-family: 'sans-serif' ;
 position: relative;
  font-weight: 600;

}
nav{
  display: flex;
  align-items: center;
  gap: 20px;
}
.nav-links{
  display: flex;
  gap: 30px;
}
li{
  list-style: none;
}
a {
  text-decoration: none;
  color: black;

  font-size: 18px;
  font-weight:400;
}
ul span{
  color: var(--main-color);
}

.dropdown {
  position: relative;
  display: inline-block;
  display: flex;
  align-items: center;
  background: #3a36362c;
  padding: 10px 15px;
  cursor: pointer;
  user-select: none;
}

.dropdown-icon {
  display: inline-block;
  margin-right: 8px;
  font-size: 16px;
}

.dropdown-arrow {
  margin-left: 8px;
}

.dropdown-menu {
  position: absolute;
  top: 110%;
  left: 0;
  background: white;
  box-shadow: 0 2px 6px rgba(0,0,0,0.15);
  border-radius: 5px;
  padding: 10px 0;
  width: 194px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: all 0.3s ease;
  z-index: 100;
}

.dropdown:hover .dropdown-menu,
.dropdown-menu:hover {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.dropdown-menu a {
  display: block;
  padding: 8px 16px;
  color: #333;
  text-decoration: none;
}

.dropdown-menu a:hover {
  background-color: #f0f0f0;
}
.bx-category{
  font-size: 20px;
}
.bx-chevron-down{
  font-size: 20px;
 
}
.dropdown h4{
  font-size: 18px;
  font-weight: 200;
  color: black;
}
.search-bar {
  display: flex;
  align-items: center;
  gap: 10px;
}
.search-bar i{
  font-size: 25px;
}

.section-1{
display: flex;
  justify-content: center; /* center horizontally */
  align-items: center;     /* center vertically */
  padding: 30px 40px;
  background: linear-gradient(to right, #8a0606, #ff6a06);
  height: 45vh;
  box-shadow: 0px 4px 20px rgba(0,0,0,0.1);
  text-align: center; /* Optional: center text inside h1 */

}
.section-1 h1{
  font-size: 2.7rem;
  color: white;
  font-weight: 600;
 
}


.container {
  max-width: 1200px;
  margin: 60px auto;
  text-align: center;

}



.logo-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(100px, 1fr));
  gap: 60px;
}

.logo-card {
  background: white;
  padding: 10px;
  border-radius: 10px;
  box-shadow: 0 4px 8px rgba(0,0,0,0.05);
  transition: transform 0.2s ease;
}

.logo-card:hover {
  transform: scale(1.05);
}

.logo-card img {
  width: 100%;
  height: auto;
  object-fit: contain;
}


.footer{
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  background-color: #1d1c1c;
  color: #ccc;
}
.footer-box {
  background-color: #1d1c1c;
  padding: 50px 80px;
}

.footer-container {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}

.footer-logo h2 {
  color: white;
  font-size: 28px;
  margin-bottom: 0;
}

.footer-logo .highlight {
  color: orange;
}

.footer-logo p {
  margin: 8px 0;
  font-size: 14px;
}

.footer-logo .phone {
  color: orange;
  font-weight: bold;
}

.social-icons {
  margin-top: 10px;
}



.footer-links h4 {
  color: orange;
  font-size: 16px;
  margin-bottom: 15px;
}

.footer-links ul {
  list-style: none;
  padding: 0;
}

.footer-links ul li {
  margin-bottom: 10px;
  font-size: 14px;
  cursor: pointer;
}

.footer-links .highlight-text {
  color: orange;
}

#backToTop {
  width: 50px;
  height: 50px;
  background-color:  orange;
  color: black;
  font-size: 24px;
  display: none; /* Hidden initially */
  justify-content: center;
  align-items: center;
  position: fixed;
  bottom: 20px;
  right: 20px;
  border-radius: 5px;
  cursor: pointer;
  z-index: 1000;
  transition: opacity 0.3s ease;
}

#backToTop:hover {
  opacity: 0.8;
}