:root {
  --var-white: #fff;
}
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
a {
  text-decoration: none;
}
li {
  list-style: none;
}
body {
  font-family: "Roboto", sans-serif;
  background: #fff;
  background-color: #e6f2ff;
}
body {
  font-family: "Roboto", sans-serif;
  background: #fff;
  background-color: #e6f2ff;
}
section {
  background-color: #f0f8ff;
  border-radius: 10px;
  padding: 20px;
  margin-bottom: 30px;
}

/*--------------------------------------------------------------
# Nav Section
--------------------------------------------------------------*/

.navbar-nav {
  margin-left: auto; /* Align links to the far right */
}

.nav-link {
  text-align: left;
  position: relative;
}

.nav-link:hover::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 2px;
  background-color: gold;
  transition: width 0.3s ease-in-out;
}

.nav-link::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0;
  height: 2px;
  background-color: gold;
  transition: width 0.3s ease-in-out;
}

.nav-scroller {
  position: relative;
  z-index: 2;
  height: 2.75rem;
  overflow-y: hidden;
}

.nav-scroller .nav {
  display: flex;
  flex-wrap: nowrap;
  padding-bottom: 1rem;
  margin-top: -1px;
  overflow-x: auto;
  text-align: center;
  white-space: nowrap;
  -webkit-overflow-scrolling: touch;
}
/* Showcase Styles */
.showcase .showcard {
  /*  background: radial-gradient(circle, #4f5bd5, #962fbf); */
  color: #0d2750;
  border-radius: 25px;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.2);
  padding: 5px;
  margin: 15px auto;
  /* height: auto; */
  height: 850px;
  max-width: 350px;
}

.showcase p {
  font-size: 1.25rem;
  text-transform: uppercase;
  text-align: center;
}

.showcase .price {
  color: #fa7e1e;
  font-weight: bold;
  font-size: 1.1rem;
}

ul {
  padding-left: 20px;
}

@media (max-width: 781px) {
  .showcase {
    padding: 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  .showcase .showcard {
    width: 90%;
    margin-bottom: 20px;
  }
}
/* Add this for consistent icon styling */
ul li i {
  margin-right: 15px;
  margin-left: 25px;
  color: #4f5bd5; /* Matches your gradient theme */
  font-size: 1.2rem;
}
/* Button Styling */
/* .showcard .btn {
  font-size: 1rem;
  font-weight: bold;
  border-radius: 5px;
  transition: background-color 0.3s ease, color 0.3s ease;
}

.showcard .btn-primary {
  background-color: #4f5bd5;
  border: none;
  color: #fff;
}

.showcard .btn-primary:hover {
  background-color: #962fbf;
  color: #fff;
} */

/* Center the button in the card */
.showcard .btn {
  display: block;
  margin: 0 auto; /* Horizontally center the button */
  text-align: center; /* Ensure the text aligns properly */
  font-size: 1rem;
  font-weight: bold;
  transition: background-color 0.3s ease, color 0.3s ease;
}

/* Button Hover Effect */
.showcard .btn-outline-success:hover {
  background-color: #4caf50; /* Success green */
  color: #fff;
}

/* Card Styling for Consistency */
.showcard .card {
  padding: 20px;
  border-radius: 15px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  background-color: #fff;
}



/*--------------------------------------------------------------
# POS
--------------------------------------------------------------*/
.header {
  background-color: #343a40;
  color: white;
  padding: 20px;
  text-align: center;
}

.product-card {
  margin: 20px 0;
  border-radius: 25px;
}

.product-card .card img {
  height: 100px;
}

.product-card .card {
  border-radius: 25px;
}

.quote-button {
  background-color: #28a745;
  color: white;
}

/*--------------------------------------------------------------
# Graphics
--------------------------------------------------------------*/
.graphics {
  padding-top: 0px;
  padding-bottom: 20px;
}
.graphics .panel {
  padding: 0;
}

.box {
  padding: 10px 0;
  border: 2px solid var(--var-white);
  border-radius: 25px;
  width: 350px;
  height: 200px;
  text-align: center;
  color: var(--varwhite);
  background: radial-gradient(#c165dd, #5c27fe);
  color: var(--var-white);
}
.box .btn {
  display: block;
  margin: 0 auto;
  font-size: 1rem;
  font-weight: bold;
  text-align: center;
  color: var(--var-white);
  border: 2px solid var(--var-white);
  transition: background-color 0.3s ease, color 0.3s ease;
}

/* Button hover effect */
.box .btn:hover {
  background-color: var(--var-white);
  color: #5c27fe; /* Matches the gradient base */
}

/*--------------------------------------------------------------
# Footer
--------------------------------------------------------------*/
#footer {
  font-size: 14px;
  background: #47b2e4;
}

#footer .copyright {
  color: #fff;
  text-align: center;
  padding: 10px;
}
@media (max-width: 768px) {
  #footer .copyright {
    text-align: center;
    float: none;
  }
}

/*--------------------------------------------------------------
   # modal class
  --------------------------------------------------------------*/
body.modal-open {
  padding-right: 0 !important;
}

.circle {
  width: 150px;
  height: 150px;
  background: linear-gradient(to right, #4caf50, #2196f3, #f44336, #ffeb3b);
  border-radius: 50%;
  margin: 0 auto;
  display: flex;
  justify-content: center;
  align-items: center;
}

.center-img {
  width: 100px;
  height: 100px;
}

img {
  max-width: 100%;
  height: auto;
}

ul {
  list-style: none;
  padding: 0;
}

ul li {
  margin-bottom: 10px;
}

/*--------------------------------------------------------------
   # Fullstack image
  --------------------------------------------------------------*/
.methodology-card .col-lg-8 img {
  margin-left: 50px;
  padding-left: 50px;
  height: 100px;
  width: auto; /* Maintain aspect ratio */
}

/* Styling for the box */
.info-box {
  height: 100px; /* Set the height of the box */
  /* width: 250px; */ /* Set the width of the box */
  border: 1px solid #ccc; /* Add a border */
  border-radius: 10px; /* Rounded corners */
  padding: 10px; /* Inner padding */
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1); /* Shadow effect */
  overflow: hidden; /* Clip overflowing content */
  background-color: #fff; /* Optional: Set a background color */
}

/* Styling for the image */
.info-box img {
  width: 100%; /* Make the image fill the width of the box */
  height: 50px; /* Maintain aspect ratio */
  border-radius: 5px; /* Slightly rounded corners for the image */
}

/* Optional: Styling for text inside the box */
.info-box p {
  font-size: 16px; /* Font size for text */
  color: #333; /* Text color */
  margin-top: 10px; /* Add space between image and text */
  line-height: 1.5; /* Improve text readability */
}

/*--------------------------------------------------------------
# Get A Quote 
--------------------------------------------------------------*/
.quote-section {
  /* background: linear-gradient(135deg, #e0f7fa, #f1f8e9); */
  min-height: 100vh;
  display: flex;
  align-items: center;
}

.quote-section img {
  max-width: 100%;
}

form .form-label {
  font-weight: bold;
}

form .btn {
  background-color: #4caf50;
  border: none;
  transition: background-color 0.3s ease;
}

form .btn:hover {
  background-color: #388e3c;
}

.styled-image {
  border-radius: 15px;
  /* Adjust the value as needed */
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  /* Adds a subtle shadow */
  transition: transform 0.3s ease;
  /* Smooth transition for hover effect */
}
.styled-image:hover {
  transform: scale(1.05);
  /* Slight zoom effect on hover */
}
/*--------------------------------------------------------------
# Contact-Box
--------------------------------------------------------------*/
span {
  color: #fa7e1e;
}

.section {
  background-color: #f0f8ff;
  border-radius: 10px;
  padding: 20px;
  margin-bottom: 30px;
}

a {
  text-decoration: none;
}

.contact-section {
  background-color: #f9f9f9;
}

.contact-box {
  background-color: white;
  border-radius: 10px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.contact-box .icon {
  font-size: 40px;
  color: #fa7e1e;
  /* Match the icon color with the design */
}

.contact-box h4 {
  font-weight: 600;
  color: #4a4a4a;
}

.contact-box p {
  color: #6b6b6b;
  margin-bottom: 0;
}

/*--------------------------------------------------------------
# Contact
--------------------------------------------------------------*/
.contact .info {
  width: 100%;
  /*  background: #fff; */
}

.contact .info i {
  font-size: 20px;
  color: #49b5e7;
  float: left;
  width: 44px;
  height: 44px;
  background: #ebf7fc;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 50px;
  transition: all 0.3s ease-in-out;
}

.contact .info h4 {
  padding: 0 0 0 60px;
  font-size: 22px;
  font-weight: 600;
  margin-bottom: 5px;
  color: #0f394c;
}

.contact .info p {
  padding: 0 0 0 60px;
  margin-bottom: 0;
  font-size: 14px;
  color: #2079a1;
}

.contact .info .email,
.contact .info .phone {
  margin-top: 40px;
}

.contact .info .email:hover i,
.contact .info .address:hover i,
.contact .info .phone:hover i {
  background: #49b5e7;
  color: #fff;
}

.contact .php-email-form {
  width: 100%;
  /*    background: #fff; */
}

.contact .php-email-form .form-group {
  padding-bottom: 8px;
}

.contact .php-email-form .error-message {
  display: none;
  color: #fff;
  background: #ed3c0d;
  text-align: left;
  padding: 15px;
  font-weight: 600;
}

.contact .php-email-form .error-message br + br {
  margin-top: 25px;
}

.contact .php-email-form .sent-message {
  display: none;
  color: #fff;
  background: #18d26e;
  text-align: center;
  padding: 15px;
  font-weight: 600;
}

.contact .php-email-form .loading {
  display: none;
  background: #fff;
  text-align: center;
  padding: 15px;
}

.contact .php-email-form .loading:before {
  content: "";
  display: inline-block;
  border-radius: 50%;
  width: 24px;
  height: 24px;
  margin: 0 10px -6px 0;
  border: 3px solid #18d26e;
  border-top-color: #eee;
  animation: animate-loading 1s linear infinite;
}

.contact .php-email-form input,
.contact .php-email-form textarea {
  border-radius: 0;
  box-shadow: none;
  font-size: 14px;
  border-radius: 4px;
}

.contact .php-email-form input {
  height: 44px;
}

.contact .php-email-form textarea {
  padding: 10px 12px;
}

.contact .php-email-form button[type="submit"] {
  background: #49b5e7;
  border: 0;
  padding: 10px 24px;
  color: #fff;
  transition: 0.4s;
  border-radius: 4px;
}

.contact .php-email-form button[type="submit"]:hover {
  background: #1da2e0;
}

@keyframes animate-loading {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}

/*--------------------------------------------------------------
# Subsribe
--------------------------------------------------------------*/
#subscribe {
  margin-bottom: 50px;
}

.subscribe-content p {
  color: var(--gray-color-500);
}

@media only screen and (max-width: 1199px) {
  .subscription-form input.form-control,
  .subscription-form button {
    width: 100%;
    margin-bottom: 25px;
  }
}
