@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;
  font-family: "League Spartan", sans-serif;
}

p {
  font-size: 20px;
  color: #465b52;
  margin: 15px 0 20px 0;
}

/* header styles */
.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;
}
@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;
  }
}
.contact-info i:hover{
  color: green;
}

.contact-info p {
  margin: 0;
  cursor: pointer;
  color: white;
}

.contact-info p:hover{
  color: green;
}


@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:480px){
  .location-logo i{
    margin-left: 20px;
    font-size: 20px;
  }

  .contact-info i{
    margin-left: 70px;
    font-size: 15px;
  }

  .contact-info p{
    font-size: 18px;
  }

  .contact-info i:hover{
    color: #000;
  }
  .contact-info p:hover{
    color: black;
  }
}
.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;
  }
}


.box-container {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
    margin-top: 210px;
}

.box {
    width: 150px;
    height: 150px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #fff;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
    border-radius: 8px;
    text-align: center;
    transition: all 0.3s ease;
}

.box p {
    margin: 0;
    color: #333;
}

.box:hover {
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.5);
}

.container{
  display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
    margin: 120px;
}

.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;
    transform: translateX(-100px);
  } to{
    opacity: 1;
    transform: translateX(0);
  }
}
.card-body {
  animation: appear linear;
  animation-timeline: view();
  animation-range: entry 0% cover 40%;
}


.card-body:hover{
  box-shadow: 20px 20px 30px rgba(0, 0, 0, 0.06);
}

.card-title {
  color: #969696;
  font-weight: 500;
  line-height: 30px;
}

.card-text {
  font-size: 18px;
  color: rgb(41, 41, 41);
}

.card-body img {
      width: 100%;
      border-radius: 25px;
    }


@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;
  }
}
