
    



.cta-content::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
  width: 100%;
    height: 100%;
    background: var(--theme-color);
    border-radius: 25px;
    opacity: .9;
    z-index: -1;
    box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19);
}

.cta-content {
    position: relative;
    padding: 30px 40px;
    z-index: 1;

    background-color:white !important;
    color: black;
    font-weight: normal;
}

.cta-content::after {
    content: "";
    position: absolute;
    left: 8px;
    top: 8px;
    bottom: 8px;
    right: 8px;
    border-radius: 20px;
    z-index: -1;
}

.cta-content h1 {
    color: black;
    font-size: 25px;
    text-align: center;
    padding-top: 10px;
}






.about-content .row {
    display: flex;
    flex-wrap: wrap; 
    gap: 20px; 
    color: black;
}


.card-equal-height {
    display: flex;
    flex-direction: column; 
    justify-content: space-between; 
    flex: 1; 
    border-radius: 10px;
    padding: 20px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    background-color: #ffffff;
    color: #000000;
}


@media (max-width: 768px) {
    .about-content .row {
        flex-direction: column; 
    }
}



.team-item {
    position: relative;
    background: var(--color-white);
    padding: 15px;
    margin-bottom: 25px;
    border-radius: 10px;
    overflow: hidden;
     box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19);
    transition: var(--transition);
}


.widget {
    background: white;
    padding: 30px;
    margin-bottom: 30px;
    border-radius: 10px;
    box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19);
}

.team-bio span {
    font-size: 13px;
    font-weight: 500;
    color: var(--theme-color);
    text-transform: uppercase;
    letter-spacing: 2px;
}

.widget-title{
font-family:  Yantramanav, sans-serif;
}

.widget .widget-title::after {
    position: absolute;
    content: '';
    width: 30px;
    border-bottom: 3px solid #dd694e !important;
    bottom: 0;
    left: 22px;
}

.widget .widget-title {
    padding-bottom: 10px;
    margin-bottom: 30px;
    position: relative;
    font-size: 22px;
    color: black;
}

.widget .widget-title::before {
    position: absolute;
    content: '';
    width: 15px;
    border-bottom: 3px solid #dd694e !important;
    bottom: 0;
    left: 0;
}

.team-img img {
    border-radius: 8px;
    box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19);
}