@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box
    font-family: "Poppins", sans-serif;
}




:root {
    --primary-color: #993333;
    --secondary-color: #101332;
    --buttonhover-color: #852424;
    --text-color: #3F3F3F;
    --bg-light-color: #fcf4f4;
    --headingcolor: #000000;
    --yellowcolor:#FECD08;

}


.Request_Demo_btn button {
    padding: 4px 13px;
    border-radius: 5px;
    border: none;
    font-size: 14px;
    font-weight: 400;
    background-color: var(--primary-color);
    color: white;

}

.Request_Demo_btn button:hover {
    transform: scale(1.1);
    transition: transform 0.3s ease-in-out;


}


/* Request Demo Button */
.Request_Demo_btn button {
  padding: 8px 16px;
  border-radius: 5px;
  border: none;
  font-size: 13px;
  font-weight: 600;
  background-color: var(--primary-color);
  color: white;
  cursor: pointer;
}

.Request_Demo_btn button:hover {
  transform: scale(1.1);
  transition: transform 0.3s ease-in-out;
}




/* General styles for the animated div */
.animated-div {
  opacity: 0; /* Hidden by default */
  transform: translateY(50px); /* Start slightly below its original position */
  transition: opacity 1s ease, transform 1s ease; /* Smooth transition for opacity and position */
}

/* Visible state styles */
.animated-div.visible {
  opacity: 1; /* Fully visible */
  transform: translateY(0); /* Return to its original position */
}
