.line-1{
    position: relative;
    top: 50%;  
    width: 24em;
    margin: 0 auto;
    border-right: 2px solid rgba(255,255,255,.75);
    font-size: 180%;
    text-align: center;
    white-space: nowrap;
    overflow: hidden;
    transform: translateY(-50%);    
}

/* Animation */
.anim-typewriter{
  animation: typewriter 4s steps(44) 1s 1 normal both,
             blinkTextCursor 500ms steps(44) infinite normal;
}
@keyframes typewriter{
  from{width: 0;}
  to{width: 24em;}
}
@keyframes blinkTextCursor{
  from{border-right-color: rgba(255,255,255,.75);}
  to{border-right-color: transparent;}
}

/* General Container */
.service-cards-container {
    display: grid;
    /* grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); */
    grid-template-columns: repeat(2, minmax(300px, 1fr));
    gap: 25px;
    padding: 20px;
    margin-top: 2em;
}

/* Individual Card */
.service-card {
    /* background-color: #fff; */
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.08);
    transition: transform 0.2s ease-in-out, box-shadow 0.2s ease-in-out;
    /* border: 1px solid #cecece; */

}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.12);
}

/* Card Content (Horizontal Layout) */
.card-content {
    display: flex;
    height: 100%; /* Ensures full card height usage */
    align-items: center;
}

/* Card Image (Left Section) */
.card-image {
    width: 110px; /* Adjust as needed */
    height: 110px;
    padding: 10px;
    border-right: 1px solid #cecece;
}

.card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 10px; /* Rounded corners for the image */
    border-right: 1px solid #cecece;

}

/* Card Icon (Left Section) */
.card-icon {
    width: 40%;
    padding: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%;
    /* border-right: 1px solid #cecece; */

}

.card-icon i {
    font-size: 5em; /* Adjust icon size as needed */
    color: #cdcdcd; /* Adjust icon color as needed */
}

/* Card Body (Right Section - Title & Content) */
.card-body {
    width: 50%; /* Adjust as needed */
    padding: 20px;
    display: flex;
    flex-direction: column; /* Title and Content stacked vertically */
    justify-content: center; /* Center content vertically */
}

/* Card Title */
.card-title {
    font-size: 1.4rem;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 10px; /* Spacing between title and text */
}

/* Card Text */
.card-text {
    font-size: 1.1rem;
    line-height: 1.6;
    color: #cdcdcd;
}
.loader-wrap {
    display: none !important;
}

@media screen and (max-width:768px) {
    .serviceBlock .serviceoverlay p{
        display: block !important;
      }
      .serviceBlock:hover .serviceoverlay {
        height: 100%;
    }
    .serviceBlock .serviceoverlay {
        height: 100%;
    }
}