/* Card Morph Custom Styles */

/* Base styles for card morph sections */
.card-morph-section {
  min-height: 70vh;
  padding: 2rem 0;
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  position: relative;
  transition: height 0.5s ease-in-out;
}

@media(max-width:992px){
  .card-morph-section{
    height:auto;
  }
  
  /* Add margin to first card section to prevent video overlap */
  #card_morph_0 .card-morph-container {
    margin-top: 8rem;
  }
  #intro{
    padding-top:3rem;
  }
  .intro-video{
    top:-50px;
  }
}

/* Background images for each card section with alternating styles */
#card_morph_0 {
  background: url("/wp-content/uploads/2024/06/information-bg-scaled.webp") no-repeat center;
  background-size: cover;
  /* Tan background */
}

#card_morph_1 {
  background: url("/wp-content/uploads/2024/07/gray_texture-scaled.webp") no-repeat center;
  background-size: cover;
  /* Gray texture background */
}

#card_morph_2 {
  background: url("/wp-content/uploads/2024/06/information-bg-scaled.webp") no-repeat center;
  background-size: cover;
  /* Tan background */
}

#card_morph_3 {
  background: url("/wp-content/uploads/2024/07/gray_texture-scaled.webp") no-repeat center;
  background-size: cover;
  /* Gray texture background */
}

/* Card content styles */
.card-morph-container {
  width: 100%;
}

.card-icon .svg-icon {
  max-width: 100%;
  height: auto;
  /* Desktop size */
  width: auto;

  @media screen and (max-width: 991px) {
    max-width: 130px;
    margin: 0px auto 1.5rem;
  }
  @media screen and (max-width: 768px) {
    max-width: 150px;
    width: auto !important;
    margin: 0px auto;
  }
  @media screen and (max-width: 576px) {
    max-width: 80px;
  }
}

.card-icon .bounce {
  /* Animation removed */
  animation: none;
}

.card-title {
  color: #212529;
  font-size: 2.5rem;
  margin-bottom: 2.5rem; /* Increased spacing between title and paragraph */
}

.card-information {
  color: #212529;
  font-size: 1.2rem;
  margin-bottom: 2rem;
  line-height: 1.6; /* Improved line spacing for better readability */
}

/* Media queries */
@media (max-width: 768px) {
  .card-morph-section {
    flex-direction: column;
    align-items: unset;
    padding: 2rem 1rem;
  }
  
  .card-title {
    font-size: 2rem;
  }
  
  .card-information {
    font-size: 1rem;
  }
  
  .card-icon {
    text-align: center;
    margin-bottom: 1.5rem;
  }
  
  .card-icon .svg-icon {
    width: 80px; /* Smaller size for mobile */
    margin: 0 auto;
  }
}

/* Animation for SVG bounce - disabled */
@keyframes bounce {
  /* Animation keyframes kept for reference but not used */
  0%, 100% {
    transform: translateY(0);
  }
}
/*# sourceMappingURL=card-morph-styles.css.map */