/* *****************************************************

    ** Custom Stylesheet **

    Any custom styling you want to apply should be
    defined here.

***************************************************** */

/* ***** DOMAIN TABLE ***** */

.pricing-grid {
    padding: 50px 0;
    margin-bottom: 20px;
  }
  
  .pricing-item {
    border: 1px solid #ccc;
    border-radius: 5px;
    padding: 20px;
    text-align: center;
    transition: background-color 0.3s ease; /* Add smooth transition effect */
    margin-right: -20px;
  }
  
  .pricing-item:hover {
    background-color: #000000; /* Change background color on hover */
  }
  
  .pricing-item h2 {
    font-size: 24px;
    margin-bottom: 15px;
    color: #000000; /* Set default text color */
  }
  
  .pricing-item:hover h2 {
    color: #ffffff; /* Change text color on hover */
  }
  
  .pricing-item ul {
    list-style: none;
    padding: 0;
    margin: 0;
    /* Center the list items */
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  
  .pricing-item li {
    margin-bottom: 10px;
    color: #000000; /* Set default text color */
  }
  .pricing-item:hover li {
    color: #ffffff; /* Change text color on hover */
    
  }

  

/* Custom CSS for the footer */
.footer {
  background-color: black; /* Set the background color to black */
  color: white; /* Set the text color to white */
  padding: 30px 0; /* Add padding to the footer content */
}

.footer .container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
}

.footer-top {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}

.footer-menu {
  list-style: none;
  padding: 0;
}

.footer-menu li {
  margin-bottom: 10px;
}

.footer-menu a {
  color: white; /* Set link text color to white */
  text-decoration: none;
}

/* Additional styling for the headings */
.heading {
  font-weight: bold;
  margin-bottom: 10px;
}
 


/* styles.css */

/* styles.css */
.custom-list {
  list-style-type: none;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(3, 1fr); /* Two columns */
  grid-gap: 20px; /* Adjust the gap between items as needed */
}

.custom-list li {
  background-color: #55bde5;
  padding: 10px;
  border-radius: 10px;
  display: flex;
  align-items: center;
}

.feature-icon {
  margin-right: 10px;
}
/* swiper slider css */
.swiper-slide-visible {
  opacity: 1 !important; /* Set opacity to 1, and use !important to ensure it overrides inline styles */
}

/* Other CSS rules can remain the same */


