
/* top to bottm  */




#topBtn1 {
  position: fixed;
  bottom: 30px;
  right: 30px;
  padding: 12px 16px;
  background: #fb9603;
  color: #fff;
  border: none;
  border-radius: 50%;
  font-size: 22px;
  cursor: pointer;
  display: none;
  z-index: 9999;
  width: 50px;
  height: 50px;
  line-height: 24px;
  text-align: center;
  transition: 0.3s;
}

#topBtn1:hover {
  background: #faa11a;
}




/* back to home  */


/* sales.php ka css  */


.back-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 10px 16px;
    background: white;
    color: #444;
    font-size: 18px;
    font-family: sans-serif;
    text-decoration: none;
}

.arrow {
    background: #fb9603;
    color: black;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
}
.arrow:hover {
    background: #fb9603;
    color: white;
}







.sales2 {
  text-align: center;
}

.gradient-text {
    font-weight: bold;
    letter-spacing: 1px;
    margin-top: 7vh;
    font-size: clamp(1rem , 1.5vw ,3rem);
    background: linear-gradient(90deg, #cb298f, #c048a7, #305fe3);
    background-clip: text;
    text-align: center !important;
    align-items: center;
    -webkit-text-fill-color: transparent;
}



.sales2 .sal2 h1 {
  font-size: clamp(2rem, 1.5vw ,4rem);
  /* responsive text size */
  font-weight: 700;
  /* bold look */
  color: black;
  /* golden-brown (matching your button) */
  text-align: center;
  /* center alignment */
  
  display: inline-flex;
  /* ya flex */
  gap: 1rem;
  /* yahan se spacing automatically lagegi */
  justify-content: center;
}

.sales2 .sal2 h1 span {
  color: #fb9603;
  /* slightly lighter golden shade for contrast */

}

.sales2 .from p{
    font-family: 'Times New Roman', Times, serif;
    font-size: clamp(1.4rem ,1.3vw ,3rem);
    margin-top: 1vh;
     align-items: center;
     opacity: 0.8;
     text-align: center;
}





/* cardc  */



.card {
    background: linear-gradient(180deg, #faf6ff 0%, #f0ecff 100%) !important;
    /* soft gradient */
    border-radius: 15px !important;
    /* slightly bigger rounded corners */
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.15);
    /* softer shadow for floating effect */
    padding: 25px !important;
    /* more breathing space */
    width: 96%;
    max-width: 900px;
    /* optional max-width for large screens */
    height: auto;
    margin: 20px auto;
    /* more spacing top/bottom */
    transition: transform 0.3s, box-shadow 0.3s;
    /* optional hover effect */
    border: 2px solid rgba(48, 95, 227, 0);
  border-radius: 15px;
  transition: all 0.3s ease;
  }

  .card-body h1{
    text-align: left;
    font-size: clamp(1rem ,2vw ,3rem);
    font-weight: bolder;
    font-family: 'Times New Roman', Times, serif;

    color: #fb9603;
  }

  .card-body p{
    text-align: left;
    font-family: 'Times New Roman', Times, serif;
    
  }

  .card-body .int p{
    opacity: 0.8;
    font-family: 'Times New Roman', Times, serif;
  }

  .card:hover {
  border-color: rgba(48, 95, 227, 0.6);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.25);
}

/* Sirf h1 ka color */
.card:hover h1 {
  color: #c17e1a;
}



