@import url("https://fonts.googleapis.com/css2?family=Poppins:wght@400;500;600;700&display=swap");


:root {
  --primary-color: #0d0d0d;
  --primary-color-light: #1f2125;
  --primary-color-extra-light: #35373b;
  --secondary-color: #696fdd;
  --secondary-color-dark: #a3a8f0;
  --text-light: #ccc;
  --white: #fff;
  --background-gradient: linear-gradient(135deg, rgb(186, 190, 253) 0%, rgb(66, 71, 158) 100%);
  --background1: linear-gradient(113.36deg, #000002 -12.22%, #9685de 179.61%);
  --background2: linear-gradient(180deg, #d6d9fa, rgb(149, 154, 243));
  --max-width: 1300px;
}



/* CONTACT FORM  */
.contact-form {
    display: flex;
    justify-content: center;
    width: 100%;
    align-items: center;
}

.contact-form form{
    width: 100%;
}

.form-group {
    margin-bottom: 15px;
}

label {
    display: block;
    margin-bottom: 5px;
    color: #fff;
    font-size: 15px;
}

input[type="text"],
input[type="email"],
textarea {
    width: 100%;
    padding: 15px;
    border: 1px solid var(--secondary-color-dark);
    border-radius: 10px;
    font-size: 18px;
    background: transparent;
    color: #fff;
}

textarea {
    height: 100px;
}

.message {
    width: 30%;
    padding: 13px;
    background: var(--background-gradient);
    color: white;
    border: none;
    border-radius: 10px;
    cursor: pointer;
    font-size: 17px;
    font-weight: bold;
}

.message:hover {
    background: var(--secondary-color);
}









    /* FLOATING CONTACT  */
.whatsapp-float {
  position: fixed;
  font-family: 'Luckiest Guy', cursive;
  bottom: 30px;
  left: 20px;
  background:  #25d366;
  color: white;
  font-size: 26px;
   padding: 5px 8px;
  cursor: pointer;
  border-radius: 50%;
  z-index: 1000;
  box-shadow: 4px 4px var(--primary-color-light);
  transition: transform 0.3s ease;
}

.whatsapp-float:hover {
  transform: scale(1.1);
}






/* ALL ABOUT DEV */
.price__grid {
  cursor: pointer;
  display: flex;
  flex-wrap: nowrap;
  justify-content: flex-start;
  gap: 20px;
  overflow-x: auto;
  overflow-y: hidden;
  scroll-behavior: smooth;
  padding: 2rem 0;
  width: 100%;
}

.price__card {
  padding: 2rem 1rem;
  display: flex;
  flex-direction: column;
  border: none;
  border-radius: 50px;
  transition: 0.3s;
  width: 30%;
  flex-shrink: 0;
  position: relative;
  background: var(--primary-color-light);
  border: 1px solid var(--secondary-color-dark);
}

.review__rating span {
  font-size: 1.30rem;
  color: #e5c765;
}

.price__card__content {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.user-wrapper {
  margin: 0 auto;
  width: 100px;
  height: 100px;
  border-radius: 50%;
  overflow: hidden;
  display: flex;
  justify-content: center;
  align-items: center;
  border: 2px solid var(--secondary-color);
}

.user-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.price__card p {
  font-size: 15px;
  text-align: center;
  color: var(--text-light);
}

.price__card__content .name {
  margin: 0 auto;
  font-size: 20px;
  color: var(--white);
}

.price__card__content .store {
  margin: 0 auto;
  font-size: 1rem;
  color: var(--secondary-color);
}

.price__card p i {
  font-family: 'Luckiest Guy', cursive;
  font-weight: 500;
  margin-right: 0.2rem;
  font-size: 1.30rem;
}

.price__grid::-webkit-scrollbar {
  height: 1px;
}

.price__grid::-webkit-scrollbar-thumb {
  background: var(--secondary-color-dark);
  border-radius: 4px;
}

.price__grid::-webkit-scrollbar-track {
  background: transparent;
}










/* MY RESPONSIVNESS  */
@media (max-width: 768px) {

/* CONTACT FORM  */
.message {
    width: 100%;
    padding: 13px;
    background: var(--background-gradient);
    color: white;
    border: none;
    border-radius: 10px;
    cursor: pointer;
    font-size: 15px;
    font-weight: bold;
}

input[type="text"],
input[type="email"],
textarea {
    border-radius: 10px;
}




 /* ALL ABOUT DEV */
  .price__grid {
    gap: 12px;
    padding: 1.50rem 0;
    width: 100%;
  }

  .price__grid::-webkit-scrollbar {
    height: 2px;
  }

  .price__card {
    padding: 1rem 1rem;
    flex-direction: column;
    border-radius: 20px;
    transition: 0.3s;
    width: 100%;
  }

  .review__rating span {
    font-size: 1.20rem;
    color: #e5c765;
  }


  .price__card__content {
    margin-bottom: 0;
  }

  .price__card p {
    text-align: start;
    font-size: 14px;
}

  .price__card p i {
    font-weight: 500;
    margin-right: 0.2rem;
    font-size: 1.50rem;
  }




}