.ct-cpt-block.grid {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
}

.ct-cpt-block.grid .ct-cpt-item {
    width: calc(33.333% - 13.333px);
    background: #f9f9f9;
    padding: 15px;
    text-align: center;
    border-radius: 8px;
    position: relative;
}

.ct-cpt-block .ct-cpt-item img {
    max-width: 100%;
    border-radius: 6px;
    margin-bottom: 10px;
}

.ct-cpt-block.slider .ct-cpt-item img {
    width: 100%;
}

.ct-cpt-block .ct-cpt-title {
    font-size: 18px;
    margin: 10px 0 5px;
}

.ct-cpt-block .ct-cpt-excerpt {
    font-size: 14px;
    color: #555;
}

/* Slider specific */

.ct-cpt-block.slider .ct-cpt-item {
    padding: 10px;
}

.ct-cpt-block .slick-dots li::before {
    display: none !important;
}

.ct-cpt-block.slider .slick-dots li {
    width: 14px;
    height: 14px;
    border-radius: 50%;
    margin: 0 5px;
    padding: 0;
}

.ct-cpt-block.slider .slick-dots li button{
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: #869791;
    border: none;
    padding: 0;
}

.ct-cpt-block.slider .slick-dots li button::before {
    display: none;
}

.ct-cpt-block.slider .slick-dots li.slick-active button,
.ct-cpt-block.slider .slick-dots li button:hover {
    background-color: #653392;
}
.ct-cpt-caption {
    font-size: 16px;
    color: #1F1F1F;
   line-height: 1.2;
   margin: 10px 0 15px;
}
.ct-cpt-caption a{
    color: #1F1F1F;
    text-decoration: underline;
}
.ct-cpt-title a {
    position: initial;
    font-weight: normal;
    transform: none;
    font-size: 22px;
    color: #1f1f1f;
}

.cpt-services .ct-cpt-item {
    background: transparent;
    border-radius: 0;
    text-align: center;
}

.cpt-services .ct-cpt-content {
    max-width: 90%;
    margin-left: 5%;
    padding: 3.5rem 1rem 3.5rem;
    margin-top: -50px;
    background: #fff;
    z-index: 9;
    position: relative;
    border-radius: 8px;
    box-shadow: 0px 0 15px rgba(0, 0, 0, 0.1);
    margin-bottom: 0;
}

.cpt-services .service-icon {
    position: absolute;
    transform: translateX(-50%);
    top: 0%;
    top: -27%;
    left: 50%;
}


.cpt-services .ct-cpt-content a.readbtn {
    font-weight: 700;
    font-size: 13px;
    line-height: 16px;
    letter-spacing: 0.15em;
    text-transform: capitalize;
    color: #777777;
}

.ct-cpt-item:hover .ct-cpt-content p, .ct-cpt-item:hover .ct-cpt-content a {
    color: #643392;
}




/*---- Custom Slider Block Styles ----*/

.brand-slider .ct-slide {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    padding: 20px; 
    border-radius: 5px;
    min-height: 130px;
    margin: 0 5px;
}

.brand-slider .slick-dots {
    bottom: -40px;
}

.brand-slider .slick-dots li::before {
    display: none !important;
}

.brand-slider .slick-dots li {
    width: 14px;
    height: 14px;
    border-radius: 50%;
    margin: 0 5px;
    padding: 0;
}

.brand-slider .slick-dots li button{
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: #869791;
    border: none;
    padding: 0;
}

.brand-slider .slick-dots li button::before {
    display: none;
}

.brand-slider .slick-dots li.slick-active button,
.brand-slider .slick-dots li button:hover {
    background-color: #653392;
}

.homepage-content-wrap .slick-prev:before, .homepage-content-wrap .slick-next:before {
    font-size: 25px;
    opacity: 1;
    color: #653392;
}

/* Faq Toggle Block Styles */

.faq-toggle-block  .faq-item {
    padding-bottom: 30px;
    border-bottom: 1px solid #e0e0e0;
    margin-bottom: 30px;
}

.faq-toggle-block .faq-section-title {
    font-size: 28px;
    font-weight: 600;
    color: #1F1F1F;
    margin: 0 auto 40px;
}

.faq-toggle-block  .faq-item .faq-question {
    color: #1F1F1F;
    font-size: 22px;
    font-weight: 500;
    line-height: normal;
    margin: 0 auto;
    padding: 10px 40px 10px 0;
    position: relative;
    cursor: pointer;
}

.faq-toggle-block  .faq-item .faq-question::after {
    content: "+";
    display: inline-block;
    position: absolute;
    width: 40px;
    height: 40px;
    text-align: center;
    border: 2px solid #643392;
    border-radius: 50%;
    background-color: #643392;
    color: #fff;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    font-size: 24px;
    font-weight: 700;
    transition: transform 0.3s ease-in-out;
}

.faq-toggle-block .faq-answer {
    display: none;
    padding-top: 20px;
}

.faq-toggle-block .faq-answer p {
    margin: 0 auto 20px;
}

.faq-toggle-block .faq-answer ul {
    padding-left: 20px;
    margin: 0 auto 20px;
}

.faq-toggle-block  .faq-item .faq-question.active::after {
    content: "−";
}