
.goals-section {
    padding-bottom: 80px;
    text-align: center;
}

.goals-section h2 {
    font-size: 50px;
    font-family: 'ibm-plex-sans-arabic', sans-serif;
    margin-bottom: 60px;
}

.goals-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.goal-card {
    background-color: #f3f5fb;
    border-radius: 20px;
    padding: 40px 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.goal-card .goal-icon {
    margin-bottom: 20px;
    background-color: #fff;
    border-radius: 50%;
    width: 80px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.goal-card p {
    font-size: 18px;
    font-family: 'ibm-plex-sans-arabic', sans-serif;
    color: #545454;
}

.why-hemmtk-section {
    background-color: #1B5AFE;
    color: white;
    overflow: hidden;
}
.why-hemmtk-section h2 {
    text-align: start;
    font-size: 50px;
    font-family: 'ibm-plex-sans-arabic', sans-serif;
    margin-bottom: 40px;
}

.why-hemmtk-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 100px;
    max-width: 100%;
    margin: 0 auto;
    padding: 0 20px;
}

.why-hemmtk-text {
    flex: 0.5;
    z-index: 1;
    padding: 80px 0;
    padding-right: 60px;
}

[dir="ltr"] .why-hemmtk-text {
    padding-right: 0;
    padding-left: 60px;
}

.why-hemmtk-image {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    position: absolute;
    left: 0;
    height: 687px;
}

[dir="ltr"] .why-hemmtk-image {
    left: auto;
    right: 0;
}

.why-hemmtk-image img {
    max-width: 100%;
    height: inherit;
}
.why-hemmtk-list {
    display: flex;
    flex-direction: column;
    gap: 15px;
    list-style: none;
    padding: 0;
}
.why-hemmtk-list li {
    background-color: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    padding: 15px 20px;
    font-size: 18px;
    font-family: 'ibm-plex-sans-arabic', sans-serif;
    position: relative;
    padding-right: 35px;
}

[dir="ltr"] .why-hemmtk-list li {
    padding-left: 35px;
    padding-right: 20px;
}

.why-hemmtk-list li::before {
    content: '•';
    color: white;
    font-size: 24px;
    position: absolute;
    right: 15px;
    top: 50%;
    transform: translateY(-50%);
}

[dir="ltr"] .why-hemmtk-list li::before {
    right: auto;
    left: 15px;
}

.target-audience-section {
    padding: 80px 5%;
}

.target-audience-section h2 {
    text-align: start;
    font-size: 50px;
    font-family: 'ibm-plex-sans-arabic', sans-serif;
    margin-bottom: 12px;
}

.target-audience-content {
    display: flex;
        justify-content: center;
        gap: 71px;
        max-width: 100%;
        margin: 0 auto;
        align-items: center;
}

.target-audience-image {
    flex-shrink: 0;
    width: 30%;
  
}
.target-audience-image img {
    width: 100%;
}

.target-audience-list {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.target-audience-item {
    background-color: #f3f5fb;
    border-radius: 10px;
    padding: 20px;
    font-size: 18px;
    font-family: 'ibm-plex-sans-arabic', sans-serif;
    color: #3C3C3C;
    list-style-position: inside;
    display: list-item;
    list-style-type: disc;
    margin-right: 20px;
}
.stats-section {
    background-color: #f3f5fb;
}

.rtl-flip {
    transform: scaleX(-1);
}

body.dark-mode .goals-section,
body.dark-mode .target-audience-section {
    background-color: #051640;
}

body.dark-mode .goals-section h2,
body.dark-mode .target-audience-section h2,
body.dark-mode .goal-card p,
body.dark-mode .target-audience-item {
    color: #fff;
}

body.dark-mode .goal-card,
body.dark-mode .target-audience-item {
    background-color: #1E2D53;
}

body.dark-mode .stats-section {
    background-color: #051640;
}

@media (max-width: 1130px) {
    .why-hemmtk-content {
        flex-direction: column;
        padding: 60px 20px;
        gap: 40px;
    }
    .why-hemmtk-text {
        padding: 0;
        text-align: center;
    }
    .why-hemmtk-image {
        position: static;
        height: auto;
    }
    .target-audience-content {
        flex-direction: column;
        gap: 40px;
    }
    .target-audience-image {
        width: 100%;
        order: 2;
    }
    .target-audience-list {
        text-align: center;
    }
    .target-audience-item {
        margin-right: 0;
        text-align: start;
    }
    .goals-section h2 {
        font-size: 30px;
        text-align: center;
    }

    .why-hemmtk-section h2 {
        font-size: 30px;
        text-align: center;
    }
    .target-audience-section h2{
        font-size: 30px;
        text-align: center;
    }
}

