.portfolio-filters {
  text-align: center;
}

#portfolio-flters {
  padding: 0;
  margin: 0;
  list-style: none;
  text-align: center;
}

#portfolio-flters li {
  cursor: pointer;
  margin: 5px;
  display: inline-block;
  padding: 8px 15px;
  font-size: 14px;
  font-weight: 600;
  color: #444;
  background: #f5f5f5;
  border-radius: 50px;
  transition: all 0.3s ease-in-out;
}

#portfolio-flters li:hover, #portfolio-flters .filter-active {
  background: #5c768d;
  color: #fff;
}





body {
  font-family: "Open Sans", sans-serif;
  color: #444444;
 
}


  .portfolio-item {
    display: none;
  }
  .filter-active {
    font-weight: bold;
    color: #cb7529;
  }
  .card-img img {
    max-width: 100%;
    height: auto;
  }

/*--------------------------------------------------------------
# Header
--------------------------------------------------------------*/

#header {
  height: 70px;
  background: #fff;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}
#header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 20px;
}
#header {
  /* background: hsla(0, 17%, 98%, 0.5); Transparent background */
  transition: all 0.5s;
  z-index: 997;
  padding: 10px 0; /* Reduced padding */
}



#header .logo {
  font-size: 20px;
  margin: 0;
  padding: 0;
  font-weight: 600;
  font-family: "Poppins", sans-serif;
}

#header .logo a {
  color: #111111;
}

#header .logo a span {
  color: #cb7529;
}

#header .logo img {
  max-height: 70px;
  padding: 10px; /* Reduced padding */
  margin-right: 60px; /* Add margin to separate logos */
}

#header .logo1 {
  font-size: 20px;
  margin: 10;
  padding: 0;
  font-weight: 600;
  font-family: "Poppins", sans-serif;
}

#header .logo1 a {
  color: #111111;
}

#header .logo1 a span {
  color: #cb7529;
}

#header .logo1 img {
  max-height: 60px;
  margin: 0px; /* Reduced margin */
  padding: 10px; /* Removed padding */
}


.heading {
  
  padding: 10px 20px;
  background-color: #e9900a; /* Button background color */
  color: white;
 
}

/*--------------------------------------------------------------
# Navigation Menu
--------------------------------------------------------------*/
/**
* Desktop Navigation 
*/
.navbar {
  padding: 0;
  flex-grow: 1;
  justify-content: flex-end;
}

.navbar ul {
  margin: 0;
  padding: 0;
  display: flex;
  list-style: none;
  align-items: center;
}

.navbar li {
  position: relative;
}

.navbar a,
.navbar a:focus {
  display: flex;
  align-items: center;
  justify-content: center; /* Center align text */
  padding: 5px 10px; /* Reduced padding */
  font-family: "Raleway", sans-serif;
  font-size: 15px;
  font-weight: 600;
  color: #111111;
  white-space: nowrap;
  transition: 0.3s;
}

.navbar a i,
.navbar a:focus i {
  font-size: 12px;
  line-height: 0;
  margin-left: 5px;
}

.navbar a:hover,
.navbar .active,
.navbar .active:focus,
.navbar li:hover>a {
  color: #cb7529;
}

.navbar .dropdown ul {
  display: block;
  position: absolute;
  left: 0;
  top: calc(100% + 10px);
  margin: 0;
  padding: 10px 0;
  z-index: 99;
  opacity: 0;
  visibility: hidden;
  background: #fff;
  box-shadow: 0px 0px 30px rgba(127, 137, 161, 0.25);
  transition: 0.3s;
}

.navbar .dropdown ul li {
  min-width: 200px;
}

.navbar .dropdown ul a {
  padding: 10px 20px;
  font-size: 14px;
}

.navbar .dropdown ul a i {
  font-size: 12px;
}

.navbar .dropdown ul a:hover,
.navbar .dropdown ul .active:hover,
.navbar .dropdown ul li:hover>a {
  color: #cb7529;
}

.navbar .dropdown:hover>ul {
  opacity: 1;
  top: 100%;
  visibility: visible;
}

.navbar .dropdown .dropdown ul {
  top: 0;
  left: calc(100% - 30px);
  visibility: hidden;
}

.navbar .dropdown .dropdown:hover>ul {
  opacity: 1;
  top: 0;
  left: 100%;
  visibility: visible;
}
@media (max-width: 1366px) {
  .navbar .dropdown .dropdown ul {
    left: -90%;
  }

  .navbar .dropdown .dropdown:hover>ul {
    left: -100%;
  }
}

/**
* Mobile Navigation 
*/
.mobile-nav-toggle {
  color: #111111;
  font-size: 28px;
  cursor: pointer;
  display: none;
  line-height: 0;
  transition: 0.5s;
}

.mobile-nav-toggle.bi-x {
  color: #fff;
}

@media (max-width: 991px) {
  .mobile-nav-toggle {
    display: block;
  }

  .navbar ul {
    display: none;
  }
}

.navbar-mobile {
  position: fixed;
  overflow: hidden;
  top: 0;
  right: 0;
  left: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.9);
  transition: 0.3s;
  z-index: 999;
}

.navbar-mobile .mobile-nav-toggle {
  position: absolute;
  top: 15px;
  right: 15px;
}

.navbar-mobile ul {
  display: block;
  position: absolute;
  top: 55px;
  right: 15px;
  bottom: 15px;
  left: 15px;
  padding: 10px 0;
  background-color: #fff;
  overflow-y: auto;
  transition: 0.3s;
}

.navbar-mobile a,
.navbar-mobile a:focus {
  padding: 10px 20px;
  font-size: 15px;
  color: #111111;
}

.navbar-mobile a:hover,
.navbar-mobile .active,
.navbar-mobile li:hover>a {
  color: #cb7529;
}

.navbar-mobile .getstarted,
.navbar-mobile .getstarted:focus {
  margin: 15px;
}

.navbar-mobile .dropdown ul {
  position: static;
  display: none;
  margin: 10px 20px;
  padding: 10px 0;
  z-index: 99;
  opacity: 1;
  visibility: visible;
  background: #fff;
  box-shadow: 0px 0px 30px rgba(127, 137, 161, 0.25);
}

.navbar-mobile .dropdown ul li {
  min-width: 200px;
}

.navbar-mobile .dropdown ul a {
  padding: 10px 20px;
}

.navbar-mobile .dropdown ul a i {
  font-size: 12px;
}

.navbar-mobile .dropdown ul a:hover,
.navbar-mobile .dropdown ul .active:hover,
.navbar-mobile .dropdown ul li:hover>a {
  color: #cb7529;
}

.navbar-mobile .dropdown>.dropdown-active {
  display: block;
}

  
  .container {
    margin: 40px auto;
  }
  
  #filterbar {
    width: 30%;
    background-color: #fff;
    border: 1px solid #ddd;
    border-radius: 15px;
    float: left;
  }
  
  label {
    cursor: pointer;
  }
  
  .tick-btn {
    display: block;
    padding: 6px 12px;
    margin: 5px 0;
    font-size: 14px;
    cursor: pointer;
    border-radius: 4px;
    border: 1px solid transparent;
  }
  
  
  
  .box {
    padding: 10px;
  }
  
  .box-label {
    color: #11698e;
    font-size: 0.9rem;
    font-weight: 800;
  }
  .box {
    width: auto;
    height: auto;
    padding: 15px;
    margin: 15px;
  }
  .box-label {
    width: 100%;
    font-weight: bold;
    font-size: 1.2em;
    margin-bottom: 10px;
  }
  .tick {
    display: flex;
    align-items: center;
  }
  .tick input {
    margin-right: 10px;
  }
  .check {
    margin-left: 5px;
  }
  
  #inner-box {
    height: auto;
    
  }
  
  #inner-box::-webkit-scrollbar {
    width: 6px;
  }
  
  #inner-box::-webkit-scrollbar-track {
    background-color: #ddd;
    border-radius: 2px;
  }
  
  .card {
    width: 100%;
    max-width: 100%;
    border: 1px solid #ddd;
    border-radius: 5px;
    overflow: hidden;
    margin-bottom: 20px;
    position: relative;
    cursor: pointer;
    transition: 0.3s all ease-in-out;
    height: 350px;
  }
  
  .card:hover {
    box-shadow: 2px 2px 15px #fd9a6ce5;
    transform: scale(1.02);
  }
  
  .card-img {
    width: 100%;
    height: 100%;
    display: block;
    transition: 0.3s all ease-in-out;
  }
  
  .card-body {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    padding: 5px;
    box-sizing: border-box;
    background: rgba(255, 255, 255, 0.9);
    opacity: 0;
    transition: 0.3s all ease-in-out;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    overflow: hidden;
  }
  
  .card:hover .card-body {
    opacity: 1;
  }
  
  .card-body h4 {
    font-size: 1.25rem;
    margin-bottom: 10px;
  }
  
  .card-body ul {
    list-style-type: none;
    padding: 0;
    margin: 0;
  }
  
  .card-body ul li {
    margin-bottom: 5px;
    font-size: 0.9rem;
  }
  
  
  @media (min-width: 1199.6px) {
    #filterbar {
      width: 25%;
    }
  }
  
  @media (max-width: 1199.5px) {
    #filterbar {
      width: 28%;
    }
  
    .card {
      height: 350px;
    }
  
    .price {
      font-size: 0.9rem;
    }
  
    .product-name {
      font-size: 0.8rem;
    }
  }
  
  @media (max-width: 991.5px) {
    #filterbar {
      width: 36%;
    }
  
    .card {
      height: 345px;
    }
  
    .price {
      font-size: 0.85rem;
    }
  }
  
  @media (max-width: 767.5px) {
    #filterbar {
      width: 50%;
    }
  }
  
  @media (max-width: 525.5px) {
    #filterbar {
      float: none;
      width: 100%;
      margin-bottom: 20px;
      border-radius: 5px;
    }
  
    #content.my-5 {
      margin-top: 20px !important;
      margin-bottom: 20px !important;
    }
  
    .col-lg-4,
    .col-md-6 {
      padding-left: 0;
    }
  }
  
  @media (max-width: 500.5px) {
    .pagination {
      display: none;
    }
  }
  
/*--------------------------------------------------------------
# Footer
--------------------------------------------------------------*/
#footer {
  color: #fff;
  font-size: 14px;
  background: #111111;
}

#footer .footer-top {
  padding: 60px 0 30px 0;
  background: #4c5f80;
}

#footer .footer-top .footer-contact {
  margin-bottom: 30px;
}

#footer .footer-top .footer-contact h3 {
  font-size: 26px;
  line-height: 1;
  font-weight: 700;
}

#footer .footer-top .footer-contact h3 span {
  color: #e03a3c;
}

#footer .footer-top .footer-contact p {
  font-size: 14px;
  line-height: 24px;
  margin-bottom: 0;
  font-family: "Raleway", sans-serif;
}

#footer .footer-top h4 {
  font-size: 16px;
  font-weight: bold;
  position: relative;
  padding-bottom: 12px;
}

#footer .footer-top h4::after {
  content: "";
  position: absolute;
  display: block;
  width: 20px;
  height: 2px;
  background: #cb7529;
  bottom: 0;
  left: 0;
}

#footer .footer-top .footer-links {
  margin-bottom: 30px;
}

#footer .footer-top .footer-links ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

#footer .footer-top .footer-links ul i {
  padding-right: 2px;
  color: white;
  font-size: 18px;
  line-height: 1;
}

#footer .footer-top .footer-links ul li {
  padding: 10px 0;
  display: flex;
  align-items: center;
}

#footer .footer-top .footer-links ul li:first-child {
  padding-top: 0;
}

#footer .footer-top .footer-links ul a {
  color: #aaaaaa;
  transition: 0.3s;
  display: inline-block;
  line-height: 1;
}

#footer .footer-top .footer-links ul a:hover {
  text-decoration: none;
  color: #fff;
}

#footer .footer-newsletter {
  font-size: 15px;
}

#footer .footer-newsletter h4 {
  font-size: 16px;
  font-weight: bold;
  position: relative;
  padding-bottom: 12px;
}

#footer .footer-newsletter form {
  margin-top: 30px;
  background: #fff;
  padding: 5px 10px;
  position: relative;
  border-radius: 4px;
  text-align: left;
}

#footer .footer-newsletter form input[type=email] {
  border: 0;
  padding: 4px 8px;
  width: calc(100% - 100px);
}

#footer .footer-newsletter form input[type=submit] {
  position: absolute;
  top: 0;
  right: -1px;
  bottom: 0;
  border: 0;
  background: none;
  font-size: 16px;
  padding: 0 20px;
  background: #cb7529;
  color: #fff;
  transition: 0.3s;
  border-radius: 0 4px 4px 0;
  box-shadow: 0px 2px 15px rgba(0, 0, 0, 0.1);
}

#footer .footer-newsletter form input[type=submit]:hover {
  background: #cb7529;
}

#footer .credits {
  padding-top: 5px;
  font-size: 13px;
}

#footer .social-links a {
  font-size: 18px;
  display: inline-block;
  background: #2b2b2b;
  color: #fff;
  line-height: 1;
  padding: 8px 0;
  margin-right: 4px;
  border-radius: 4px;
  text-align: center;
  width: 36px;
  height: 36px;
  transition: 0.3s;
}

#footer .social-links a:hover {
  background: #cb7529;
  color: #fff;
  text-decoration: none;
}