@import url("https://fonts.googleapis.com/css2?family=League+Spartan:wght@100;200;300;400;500;600;700;800;900&display=swap");

/* global styles */

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "League Spartan", sans-serif;
}


p {
  font-size: 20px;
  color: #465b52;
  margin: 15px 0 20px 0;
}

.top-header {
  background-color: black;
  color: white;
  text-align: center;
  padding: 10px 0;
  width: 100%;
  top: 0;
  z-index: 1001; 
  transition: transform 0.3s ease;
  display: flex;
  position: fixed;
}

.location-logo i {
  font-size: 24px;
  color: white;
  display: flex;
  margin-left: 350px;
  margin-top: 15px;
  margin-bottom: 5px;
}

.location-logo i:hover{
  color: green;
}


.top-header h5 {
  margin: 0;
  display: flex;
}

.contact-info i {
  color: white;
  font-size: 24px;
  display: flex;
  margin-left: 700px;
  margin-top: 15px;
  margin-bottom: 5px;
}

.location-logo i:hover,
.contact-info i:hover,
.contact-info p:hover {
  color: green;
  transform: scale(1.1);
  transition: color 0.3s ease, transform 0.3s ease;
}

@media (max-width:780px){
  .location-logo i{
    margin-left: 100px;
    font-size: 18px;
  }

  .contact-info i{
    margin-left: 250px;
  }

  .contact-info p{
    font-size: 18px;
  }

  .contact-info i:hover{
    color: #000;
  }
  .contact-info p:hover{
    color: green;
  }
}



@media (max-width:448px){
  .location-logo i{
    margin-left: 20px;
    font-size: 18px;
  }

  .contact-info i{
    margin-left: 70px;
    font-size: 12px;
  }

  .contact-info p{
    font-size: 18px;
  }

  .contact-info i:hover{
    color: #000;
  }
  .contact-info p:hover{
    color: black;
  }
  .location-logo i:hover,
.contact-info i:hover,
.contact-info p:hover {
  color: green;
  transform: scale(1.1);
  transition: color 0.3s ease, transform 0.3s ease;
}
}
.contact-info i:hover{
  color: green;
}

.contact-info p {
  margin: 0;
  cursor: pointer;
  color: white;
}

.contact-info p:hover{
  color: green;
}

/* header styles */
.menu-toggle {
  display: none;
  border: none;
  color: black;
  font-size: 24px;
  cursor: pointer;
  background-color: white;
}


#header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background-color: white;
  padding: 20px 80px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.06);
  z-index: 1000;
  position:fixed;
  margin-top: 50px;
  top: 0;
  left: 0;
  right: 0;
}

@media (max-width:480px) {
  #header {
    width:100%;
    height: 115px;
  }
  
  #header .header-logo{
    float: left;
  }
}

.header-list {
  display: flex;
  align-items: center;
  justify-content: center;
}
.header-list-nav ul {
  display: flex;
}

@media (max-width: 480px) {
  .header-list-nav ul li{
    list-style-type: none;
    padding: 0 20px;
    position: relative;
    display: none;
    flex-direction: column;
  }

  .menu-toggle{
    display: inline;
  }
}
.header-list {
  display: flex;
  align-items: center;
  justify-content: center;
}
.header-list-nav ul li {
  list-style-type: none;
  padding: 0 20px;
  position: relative;
}
.header-list-nav ul a {
  text-decoration: none;
  font-size: 20px;
  font-weight: 500;
  color: #1a1a1a;
  transition: 0.3s ease;
}
.header-list-nav ul a:hover,
.header-list-nav ul a.active {
  color: #088178;
  content: "";
}
.header-list-icon a {
  color: #1a1a1a;
  padding-left: 20px;
  transition: 0.3s ease;
}
.header-list-icon a:hover,
.header-list-nav ul a.active {
  color: #088178;
}
.header-list-nav ul li a:hover::after,
.header-list-nav ul li a.active::after {
  content: "";
  width: 30%;
  height: 2px;
  background: #088178;
  position: absolute;
  bottom: -4px;
  left: 20px;
}
 /* Hide mobile menu and hamburger icon by default */
 .hamburger-icon {
  display: none;
  cursor: pointer;
  flex-direction: column;
  justify-content: space-between;
  width: 30px;
  height: 25px;
}

.hamburger-icon span {
  display: block;
  height: 3px;
  background: #333;
  margin: 4px 0;
  transition: 0.3s;
}

/* Mobile menu styling */
.mobile-menu {
  display: none;
  position: fixed;
  top: 0;
  right: 0;
  width: 50%;
  height: 100vh;
  background: rgba(0, 0, 0, 0.9);
  padding-top: 60px;
  z-index: 999;
}

.mobile-menu ul {
  list-style: none;
  padding: 0;
  margin: 0;
  text-align: center;
}

.mobile-menu ul li {
  margin: 20px 0;
}

.mobile-menu ul li a {
  color: white;
  text-decoration: none;
  font-size: 18px;
}


@media screen and (max-width: 768px) {
  .hamburger-icon {
    display: flex;
  }

  .header-list-nav ul {
    display: none; 
  }

  .header-list-nav .hidden-link {
    display: block; 
  }

  .mobile-menu.show {
    display: block;
  }
}
.mobile-menu ul li a:hover{
  color: #088178;
}

body .container {
padding: 100px;
}
#filter-buttons button {
  height: 25px;
  border-radius: 3px;
  background: #fff;
  border-color: transparent;
  font-family: "League Spartan", sans-serif;
  font-size: 18px;
  margin-top: 105px;
  padding: 3px;
}
@media (max-width:480px) {
  .container{
    margin-top: 70px;
  }
  #filter-buttons button{
  margin-top: 5px;
  padding: 0;
  }
}
@media (max-width:385px) {
  .container{
    margin-top: 70px;
  }
  #filter-buttons button{
  margin: 0;
  padding: 0;
  font-size: 15px;
  }
}
#filter-buttons button:hover {
  background: #ddd;
}
#filter-buttons button.active {
  color: #fff;
  background: #088178;
}

#filterable-cards {
  display: flex;
    flex-wrap: wrap;  
    gap: 20px;  
    justify-content: center; 
    padding: 10px;
}

#filterable-cards .card {
  margin: 15px;
  width: 20rem;
  border: 10px solid transparent;
}
#filterable-cards .card.hide {
  display: none;
}

#filterable-cards .card-body {
  width: 280px;
  border: 1px solid #ebebeb;
  padding: 13px;
  margin-bottom: 30px;
  border-radius: 25px;
  position: relative;
  box-shadow: 20px 20px 30px rgba(0, 0, 0, 0.02);
  transition: box-shadow 0.2s;
}
@keyframes appear {
  from{
    opacity: 0;
    scale: 0.2;
  } to{
    opacity: 1;
    scale: 1;
  }
}

@media (max-width:480px){
  @keyframes appear {
    from{
      opacity: 0;
      scale: 0.2;
    } to{
      opacity: 1;
      scale: 1;
    }
  }
}
@media (max-width:300px){
  @keyframes appear {
    from{
      opacity: 0;
      scale: 0.2;
    } to{
      opacity: 1;
      scale: 1;
    }
  }
}
@media (max-width:450px){
  @keyframes appear {
    from{
      opacity: 0;
      scale: 0.2;
    } to{
      opacity: 1;
      scale: 1;
    }
  }
}

@media (max-width:350px){
  @keyframes appear {
    from{
      opacity: 0;
      scale: 0.2;
    } to{
      opacity: 1;
      scale: 1;
    }
  }
}
.card-body{
  animation: appear linear;
  animation-timeline: view();
  animation-range: entry 0% cover 40%;
}

#filterable-cards .card-body:hover{
  box-shadow: 20px 20px 30px rgba(0, 0, 0, 0.06);
}

#filterable-cards .card-title {
  color: #969696;
  font-weight: 500;
  line-height: 30px;
}

#filterable-cards .card-text {
  font-size: 18px;
  color: rgb(41, 41, 41);
}


#filterable-cards img {
  width: 100%;
  border-radius: 25px;
}

/* footer section styles */
footer {
  background-color: #f9f9f9;
  padding: 20px;
  text-align: center;
  color: #333;
  font-family: 'Arial', sans-serif;
}

#footer {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-around;
  margin-bottom: 20px;
}

#footer div {
  flex: 1;
  min-width: 200px;
  margin: 10px 0;
}

h3 {
  font-size: 20px;
  margin-bottom: 10px;
  color: black;
}

/* Links and Text */
a {
  display: block;
  margin-bottom: 8px;
  text-decoration: none;
  color:  rgb(109, 109, 109);
  font-size: 15px;
  transition: color 0.3s ease;
}

a:hover {
  color: #088178;
}

.footer-text {
  font-family:'Roboto' Sans-serif;
  margin-top: 20px;
  font-size: 16px;
  font-weight: bold;
  color: #666;
}
.footer-text:hover{
  color: #088178;
}

/* Logo */
.footer-logo img {
  border-radius: 50%;
  transition: transform 0.3s ease;
}

.footer-logo img:hover {
  transform: scale(1.1);
}

/* Social Icons */
.socials a {
  display: inline-block;
  margin: 0 1px;
  margin-top: -25px;
  font-size: 24px;
  color: #333;
  transition: transform 0.3s ease;
}

.socials a:hover {
  transform: scale(1.2);
  color: #007BFF;
}

/* Responsive Design */
@media (max-width: 768px) {
  #footer {
    flex-direction: column;
    align-items: center;
  }
  
  .footer-logo {
    margin-bottom: 20px;
  }
}

@media (max-width: 480px) {
  .product-section h1:hover{
    color: whitesmoke;
  }
  .center-text:hover{
    color: whitesmoke;
  }
  #background h4{
    margin-top: 0;
    font-size: 25px;
  }

  #background h4:hover{
    color: white;
  }

  #background  h2{
    font-size: 29px;
    gap: 2px;
    margin-top: -20px;
    color:white;
  }
  #background  h2:hover{
    color: orange;
  }

  #background h1 {
    font-size: 12px;
    margin-top: -30px;
    color: whitesmoke;
  }
  #background h1:hover{
    color: orchid;
  }

  #background p{
    color: white;
    font-size: 8.65px;
    margin-top: -25px;
  }

  #background p:hover{
    color: blanchedalmond;
  }
}

#scrollTopBtn {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 40px;
  height: 40px;
  background-color: #28a745;
  color: white;
  font-size: 15px;
  font-weight: bold;
  display: none;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  cursor: pointer;
  transition: all 0.3s ease;
  text-align: center;
  line-height: 60px;
}

#scrollTopBtn:hover {
  background-color: #218838;
  transform: scale(1.1);
}

#scrollTopBtn:active {
  background-color: #1e7e34;
  transform: scale(1);
}
.autoShow{
  animation: autoShowAnimation both;
  animation-timeline: view(70% 5%);
}
@keyframes autoShowAnimation{
  from{
    opacity: 0;
    transform: translateY(200px) scale(0.3);
  }
  to{
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

@media  screen and (max-width:780px) {
  .product-section h1{
    font-size: 30px;
    text-align: center;
  }
  .autoShow{
    animation: autoShowAnimation both;
    animation-timeline: view(35% 2.5%);
  }
  @keyframes autoShowAnimation{
    from{
      opacity: 0;
      transform: translateY(50px) scale(0.2);
    }
    to{
      opacity: 1;
      transform: translateY(0) scale(1);
    }
  }
}

@media(max-width: 385px){
  .location-logo i{
    margin-left: 20px;
    font-size: 16px;
  }
   .location-logo i:hover{
    color:blue;
   }

  .contact-info i{
    margin-left: 70px;
    font-size: 15px;
  }

  .contact-info p{
    font-size: 13px;
  }

  .contact-info i:hover{
    color: #000;
  }
  .contact-info p:hover{
    color: black;
  }
}
.contact-info i:hover{
  color: blue;
}

.contact-info p {
  margin: 0;
  cursor: pointer;
  color: white;
}

.contact-info p:hover{
  color: blue;
}

@media(max-width: 385px){
  .location-logo i{
    margin-left: 20px;
    font-size: 16px;
  }
   .location-logo i:hover{
    color:blue;
   }

  .contact-info i{
    margin-left: 70px;
    font-size: 15px;
  }

  .contact-info p{
    font-size: 13px;
  }

  .contact-info i:hover{
    color: #000;
  }
  .contact-info p:hover{
    color: black;
  }
}
.contact-info i:hover{
  color: blue;
}

.contact-info p {
  margin: 0;
  cursor: pointer;
  color: white;
}

.contact-info p:hover{
  color: blue;
}

@media(max-width: 400px){
  .location-logo i{
    margin-left: 20px;
    font-size: 18px;
  }
   .location-logo i:hover{
    color:yellow;
   }

  .contact-info i{
    margin-left: 70px;
    font-size: 15px;
  }

  .contact-info p{
    font-size: 14px;
  }

  .contact-info i:hover{
    color: #000;
  }
  .contact-info p:hover{
    color: black;
  }
}
.contact-info i:hover{
  color: yellow;
}

.contact-info p {
  margin: 0;
  cursor: pointer;
  color: white;
}

.contact-info p:hover{
  color: yellow;
}


@media(max-width: 420px){
  .location-logo i{
    margin-left: 20px;
    font-size: 20px;
  }
   .location-logo i:hover{
    color:orange;
   }

  .contact-info i{
    margin-left: 70px;
    font-size: 17px;
  }

  .contact-info p{
    font-size: 14px;
  }

  .contact-info i:hover{
    color: #000;
  }
  .contact-info p:hover{
    color: black;
  }
}
.contact-info i:hover{
  color: orange;
}

.contact-info p {
  margin: 0;
  cursor: pointer;
  color: white;
}

.contact-info p:hover{
  color: orange;
}

@media(max-width: 430px){
  .location-logo i{
    margin-left: 20px;
    font-size: 21px;
  }
   .location-logo i:hover{
    color:orange;
   }

  .contact-info i{
    margin-left: 70px;
    font-size: 18px;
  }

  .contact-info p{
    font-size: 14px;
  }

  .contact-info i:hover{
    color: #000;
  }
  .contact-info p:hover{
    color: black;
  }
}
.contact-info i:hover{
  color: orange;
}

.contact-info p {
  margin: 0;
  cursor: pointer;
  color: white;
}

.contact-info p:hover{
  color: orange;
}

@media(max-width: 420px){
  .location-logo i{
    margin-left: 20px;
    font-size: 20px;
  }
   .location-logo i:hover{
    color:orange;
   }

  .contact-info i{
    margin-left: 70px;
    font-size: 17px;
  }

  .contact-info p{
    font-size: 14px;
  }

  .contact-info i:hover{
    color: #000;
  }
  .contact-info p:hover{
    color: black;
  }
}
.contact-info i:hover{
  color: orange;
}

.contact-info p {
  margin: 0;
  cursor: pointer;
  color: white;
}

.contact-info p:hover{
  color: orange;
}


@media(max-width: 440px){
  .location-logo i{
    margin-left: 20px;
    font-size: 22px;
  }
   .location-logo i:hover{
    color:orange;
   }

  .contact-info i{
    margin-left: 70px;
    font-size: 17px;
  }

  .contact-info p{
    font-size: 14px;
  }

  .contact-info i:hover{
    color: #000;
  }
  .contact-info p:hover{
    color: black;
  }
}
.contact-info i:hover{
  color: orange;
}

.contact-info p {
  margin: 0;
  cursor: pointer;
  color: white;
}

.contact-info p:hover{
  color: orange;
}

@media(max-width: 350px){
  .location-logo i{
    margin-left: 20px;
    font-size: 14px;
  }
   .location-logo i:hover{
    color:orange;
   }

  .contact-info i{
    margin-left: 70px;
    font-size: 12px;
  }

  .contact-info p{
    font-size: 12px;
  }

  .contact-info i:hover{
    color: #000;
  }
  .contact-info p:hover{
    color: black;
  }
}
.contact-info i:hover{
  color: orange;
}

.contact-info p {
  margin: 0;
  cursor: pointer;
  color: white;
}

.contact-info p:hover{
  color: orange;
}


@media(max-width: 360px){
  .location-logo i{
    margin-left: 20px;
    font-size: 16px;
  }
   .location-logo i:hover{
    color:orange;
   }

  .contact-info i{
    margin-left: 70px;
    font-size: 12px;
  }

  .contact-info p{
    font-size: 12px;
  }

  .contact-info i:hover{
    color: #000;
  }
  .contact-info p:hover{
    color: black;
  }
}
.contact-info i:hover{
  color: orange;
}

.contact-info p {
  margin: 0;
  cursor: pointer;
  color: white;
}

.contact-info p:hover{
  color: orange;
}

@media(max-width: 370px){
  .location-logo i{
    margin-left: 20px;
    font-size: 16px;
  }
   .location-logo i:hover{
    color:orange;
   }

  .contact-info i{
    margin-left: 70px;
    font-size: 13px;
  }

  .contact-info p{
    font-size: 13px;
  }

  .contact-info i:hover{
    color: #000;
  }
  .contact-info p:hover{
    color: black;
  }
}
.contact-info i:hover{
  color: orange;
}

.contact-info p {
  margin: 0;
  cursor: pointer;
  color: white;
}

.contact-info p:hover{
  color: orange;
}

@media(max-width: 380px){
  .location-logo i{
    margin-left: 20px;
    font-size: 16px;
  }
   .location-logo i:hover{
    color:orange;
   }

  .contact-info i{
    margin-left: 70px;
    font-size: 13px;
  }

  .contact-info p{
    font-size: 13px;
  }

  .contact-info i:hover{
    color: #000;
  }
  .contact-info p:hover{
    color: black;
  }
}
.contact-info i:hover{
  color: orange;
}

.contact-info p {
  margin: 0;
  cursor: pointer;
  color: white;
}

.contact-info p:hover{
  color: orange;
}


@media(max-width: 390px){
  .location-logo i{
    margin-left: 20px;
    font-size: 17px;
  }
   .location-logo i:hover{
    color:orange;
   }

  .contact-info i{
    margin-left: 70px;
    font-size: 14px;
  }

  .contact-info p{
    font-size: 13px;
  }

  .contact-info i:hover{
    color: #000;
  }
  .contact-info p:hover{
    color: black;
  }
}
.contact-info i:hover{
  color: orange;
}

.contact-info p {
  margin: 0;
  cursor: pointer;
  color: white;
}

.contact-info p:hover{
  color: orange;
}

@media(max-width: 400px){
  .location-logo i{
    margin-left: 20px;
    font-size: 18px;
  }
   .location-logo i:hover{
    color:orange;
   }

  .contact-info i{
    margin-left: 70px;
    font-size: 14px;
  }

  .contact-info p{
    font-size: 13px;
  }

  .contact-info i:hover{
    color: #000;
  }
  .contact-info p:hover{
    color: black;
  }
}
.contact-info i:hover{
  color: orange;
}

.contact-info p {
  margin: 0;
  cursor: pointer;
  color: white;
}

.contact-info p:hover{
  color: orange;
}

