@import url('https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,500;1,500&display=swap');

* {
  margin: 0;
  padding: 0;
  font-family: "Montserrat", sans-serif;
}

body {
  margin: 0;
  padding: 0;
  transition: background-color 0.5s ease;
  background: url(bg2.jpg);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  background-color: red;
  height: 100vh;
}

.card {
  max-width: 450px;
  margin: auto;
  border-radius: 15px;
  box-shadow: 0px 4px 15px rgba(0, 0, 0, 0.2);
}

.profile-img {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  object-fit: cover;
  margin-top: -60px;
  border: 5px solid #fff;
}

.theme-dark {
  background-color: #121212 !important;
  color: #ffffff;
}

.theme-blue {
  background-color: #0d6efd !important;
  color: #ffffff;
}

.social-icons a {
  color: inherit;
  margin: 0 10px;
  font-size: 1.5rem;
  transition: 0.3s;
}

.social-icons a:hover {
  color: rgb(178, 166, 3);
}

.gallery img {
  width: 100%;
  height: 100px;
  object-fit: cover;
  border-radius: 10px;
  transition: transform 0.3s;
}

.gallery img:hover {
  transform: scale(1.05);
}

.rating {
  /* color: rgb(255, 209, 70); */
  color: black;
  font-size: 1.2rem;
}

.hours-table td {
  padding: 5px 10px;
}



h5 {
  font-weight: 600;
}



.service-list,
.menu-list {
  text-align: left;
}

.service-list li,
.menu-list li {
  padding: 5px 0;
  border-bottom: 1px solid #ddd;
}


/* Newcontact css  */
#newcontactss {
  background: purple;
  display: flex;
  justify-content: space-around;
  align-items: center;

}

#newcontact a {
  vertical-align: middle;
  color: white;
  text-decoration: navajowhite;
  display: flex;
  width: 100%;
  justify-content: space-evenly;
  align-items: center;
  vertical-align: middle;
  padding-left: 20px;
}

#newcontact i {
  padding-left: 20px;
}

#newcontact p {
  vertical-align: middle;
}

/* mycontactinfo Css */
#mycontactinfo {
  width: 100%;
  margin-bottom: 10px;
}

#mycontactinfo .phoneNumber i {
  float: left;
  vertical-align: middle;
  font-size: 20px;
}

#mycontactinfo .phoneNumber a {
  color: white;
  text-decoration: none;
  color: rgb(255, 255, 255);
}

.phoneNumber .typeNumber {
  padding: 10px;
}

#mycontactinfo .phoneNumber {
  background: black;
  border-radius: 10px;
  font-weight: 500;
  color: white;

}

/* Footer text */
.footer {
  background: black;
  border-radius: 30px;
  width: 250px;
  display: block;
  margin: auto
}

.footer .footerText {
  padding: 7px;
  margin-top: 20px;
  color: white;
  font-size: 12px;

}

.footerText a {
  color: rgb(255, 209, 70);
  font-weight: 600;
  text-decoration: none;
}


/* CTA Button CSS */
.buttonCTA {
  display: flex;
  justify-content: space-around;
  align-items: center;
  /* margin-right: 10px; */
}

.button-1 button {
  background: rgb(5, 5, 5);
  padding: 10px;
  border: none;
  border-radius: 10px;

}

.button-1 button a {
  text-decoration: none;
  color: white;
}

/* responsive btn css */
@media screen and (min-width: 320px) and (max-width: 400px) {
  .buttonCTA {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  margin-top: 10px;
  width: 100%; 
  height: auto;
}
 .buttonCTA .button-1 {
margin-bottom: 10px;


 }
}