:root {
    /* --theme-color: #FF5F13; */
    /* --theme-color: #e59b24; */ /* logo icon color  */
    /* --theme-color: #d59226;
    --primary-color: #02665b;
    --secondary-color: #25aca3;
    --text-primary-color: #222222;
    --text-secondary-color: #4a5568;
    --background-color: #2faea513;
    --heading-color: #013b34; */


  
  }



.why-yashfa-card-main{
    margin-top: 100px;
}
.why-yashfa-card-img {
    position: relative;
}
.why-yashfa-card-img img{
    width: 100%;
    aspect-ratio: 5/5;
    object-fit: cover;
}
.why-yashfa-title{
    position: absolute;
    bottom: 0%;
    width: 100%;
    /* height: 50px; */
    transform: translateY(-0%);
    vertical-align: middle;
}
.why-yashfa-title h3{
color: #ffffff;
line-height: 50px;
background: #000;
opacity: .8;
padding: 5px 0 5px 10px;
margin: 0;
z-index: 3;
font-size: 18px;
text-transform: uppercase;
}






/* General Styles */



/* Intro Section */
.intro-section {
    background-color: white;
    margin-top: 100px;
}

.intro-content h2 {
    font-size: 32px;
    margin-bottom: 20px;
}

.intro-content p {
    font-size: 14px;
    color: var(--text-secondary-color)
}

/* Values Section */
.values-section {
    background-color: #f9f9f9;
    margin-top: 100px;
    padding: 50px 0;
}

.values-title h2, .expertise-title h2, .testimonials-title h2 {
    font-size: 36px;
    color: #02665b;
}

.values-title p, .expertise-title p, .cta-title p, .testimonials-title p {
    font-size: 16px;
    color: var(--text-secondary-color);
}

.value-card {
    background-color: white;
    padding: 20px;
    border-radius: 10px;
    text-align: center;
    transition: transform 0.3s;
}

.value-card img {
    width: 60px;
    margin-bottom: 15px;
}

.value-card h3 {
    font-size: 22px;
    margin-bottom: 15px;
    color: #d59226;
}

.value-card p {
    font-size: 14px;
    color: var(--text-secondary-color)
}

.value-card:hover {
    transform: scale(1.05);
}

/* Expertise Section */
.expertise-section {
    background-color: white;
    padding: 50px 0 ;
}

.expertise-card {
    background-color: #f9f9f9;
    padding: 20px;
    border-radius: 10px;
    text-align: center;
    transition: transform 0.3s;
}

.expertise-card img {
    width: 60px;
    margin-bottom: 15px;
}

.expertise-card h3 {
    font-size: 22px;
    margin-bottom: 15px;
    color: var(--text-primary-color)
}

.expertise-card p {
    font-size: 14px;
    color: var(--text-secondary-color)
}

/* cta section  */

.cta-section  h3 {
    font-size: 22px;
    margin-bottom: 15px;
    color: var(--text-primary-color)
}

.cta-button {
    background-color: var(--primary-color);
    color: white;
    padding: 10px 20px;
    border: none;
    border-radius: 5px;
    text-transform: uppercase;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.cta-button:hover {
    background-color: var(--theme-color);
}