/* home section */

.service-icon {
  font-size: 50px;
  color: #007bff;
}
.contact-form {
  background-color: #f8f9fa;
  padding: 40px;
  border-radius: 8px;
}

/* carousel section */

.carousel-item {
  height: 60vh;
  background: #000;
  color: #fff;
  position: relative;
}
.carousel-item img {
  object-fit: cover;
  height: 100%;
  width: 100%;
}
.carousel-caption {
  position: absolute;
  bottom: 20%;
  left: 50%;
  transform: translateX(-50%);
  text-align: center;
}
.carousel-caption h5 {
  font-size: 2rem;
  font-weight: bold;
}
.carousel-caption p {
  font-size: 1.25rem;
}

/* text */

.info-section {
  padding: 60px 0;
  background-color: #f8f9fa;
}
.info-section h2 {
  margin-bottom: 20px;
  font-size: 2.5rem;
}
.info-section p {
  font-size: 1.125rem;
  line-height: 1.6;
}
.feature {
  margin-bottom: 20px;
}
.feature h4 {
  font-size: 1.5rem;
  margin-bottom: 10px;
}

/* plans */ 

.pricing-table {
  padding: 60px 0;
}
.pricing-table h2 {
  margin-bottom: 30px;
  font-size: 2.5rem;
}
.card {
  border: 1px solid #ddd;
  border-radius: 8px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s;
}
.card:hover {
  transform: scale(1.05);
}
.card-header {
  background-color: #007bff;
  color: #fff;
  padding: 20px;
  text-align: center;
  border-bottom: 1px solid #ddd;
}
.card-body {
  padding: 20px;
  text-align: center;
}
.card-footer {
  padding: 20px;
  text-align: center;
  background-color: #f8f9fa;
}

/* blog */

/* our services */

.services-section {
  padding: 60px 0;
  background-color: #f8f9fa;
}
.services-section h2 {
  margin-bottom: 30px;
  font-size: 2.5rem;
  text-align: center;
  color: #343a40;
}
.card {
  border: 1px solid #ddd;
  border-radius: 8px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s;
}
.card:hover {
  transform: scale(1.05);
}
.card-body {
  padding: 20px;
}
.card-title {
  font-size: 1.5rem;
  margin-bottom: 15px;
}
.card-text {
  font-size: 1rem;
  color: #6c757d;
}

/* images-bottom-of-cards-*/

.services-section {
  padding: 60px 0;
  background-color: #f8f9fa;
}
.services-section h2 {
  margin-bottom: 30px;
  font-size: 2.5rem;
  text-align: center;
  color: #343a40;
}
.card {
  border: 1px solid #ddd;
  border-radius: 8px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s;
}
.card:hover {
  transform: scale(1.05);
}
.card-body {
  padding: 20px;
}
.card-title {
  font-size: 1.5rem;
  margin-bottom: 15px;
}
.card-text {
  font-size: 1rem;
  color: #6c757d;
}
.bottom-images {
  padding: 15px;
  border-top: 1px solid #ddd;
  text-align: center;
}
.bottom-images img {
  width: 80px;
  height: 80px;
  margin: 0 5px;
  object-fit: cover;
}

.bottom-images .image-wrapper {
  display: inline-block;
  text-align: center;
  margin: 0 10px;
}
.bottom-images img {
  width: 80px;
  height: 80px;
  object-fit: cover;
  border-radius: 4px;
}
.bottom-images .image-text {
  margin-top: 5px;
  font-size: 0.9rem;
}

/* bottom content */

.custom-section {
  padding: 20px;
  border: 1px solid #ddd;
  border-radius: 8px;
}
.custom-image {
  max-width: 100%;
  height: auto;
  border-radius: 8px;
}

/* fading divs */

.fade0-in {
    opacity: 0;
    transform: translateY(20px); /* Start with a slight move down */
    transition: opacity 3s ease-out, transform 0.6s ease-out;
    margin-bottom: 20px; /* Space between elements */
}

.fade0-in.visible {
    opacity: 1;
    transform: translateY(0); /* End at original position */
}

.fade-in {
  opacity: 0;
  transform: translateX(-100vw); /* Start from the left edge */
  transition: opacity 3s ease-out, transform 0.6s ease-out;
  margin-bottom: 20px; /* Space between elements */
}

.fade-in.visible {
  opacity: 1;
  transform: translateX(0); /* Move to original position */
}