/* Hero */
.hero {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 3.125rem 0;
    position: relative;
}

.hero-container {
    display: flex;
    flex-flow: row wrap-reverse;
    justify-content: center;
    align-items: center;
    width: 100%;
}

.hero-text-wrapper {
    max-width: 33.8125rem;
    display: flex;
    flex-flow: column nowrap;
    justify-content: start;
    align-items: start;
    gap: 2.5rem;
}

#hero-button {
    min-width: 11.8125rem;
    max-width: 11.8125rem;
    height: 3.125rem;
    max-height: 3.125rem;
    font-size: var(--font-size-sm);
    font-weight: var(--weight-medium);
    line-height: 1.25rem;
    cursor: pointer;
    overflow: hidden;
}

.circle-wrapper {
    width: 37.5rem;
    height: 37.5rem;
    background-image: url("../../../images/circles-group.png");
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-image-wrapper {
    max-width: 49.9375rem;
}

.inner-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
}

.full-circle-wrapper {
    position: absolute;
    width: 12.5rem;
    top: 20%;
    left: 2%;
}

.half-circle-wrapper {
    position: absolute;
    bottom: 0;
    left: 20%;
    width: 12.5rem;
    height: 6.25rem;
    border-top-left-radius: 6.25rem;
    border-top-right-radius: 6.25rem;
    border-bottom-left-radius: 0;
    border-bottom-right-radius: 0;
    overflow: hidden;
}

.half-circle-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}


/* About Us */

.icon-aboutUs {
    width: 3.125rem;
    height: 3.125rem;
}

.aboutUs {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: var(--bgc-primary);
    padding: 6.25rem 0;
}

.aboutUs-container {
    display: flex;
    flex-flow: row nowrap;
    justify-content: space-between;
    align-items: center;
    width: 80%;
    gap: 1.9375rem;
}

.aboutUs-image-wrapper {
    max-width: 34.6875rem;
    border-radius: 0.625rem;
    overflow: hidden;
}

.text-aboutUs-container {
    display: flex;
    flex-flow: column nowrap;
    justify-content: center;
    gap: 0.8125rem;
}

.title-container {
    display: flex;
    flex-flow: column nowrap;
    align-items: left;
    gap: 0.625rem;
}

.text-title {
    font-weight: var(--weight-bold);
    font-size: var(--font-size-xl);
    color: var(--primary);
    line-height: 1.25rem;
    max-width: 20rem;
    word-break: break-word;
    overflow-wrap: break-word;
    white-space: normal;
}

.text-subtitle {
    font-weight: var(--weight-bold);
    font-size: var(--font-size-xxl);
    line-height: 3.125rem;
    background-image: var(--text-gradient);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    color: transparent;
    max-width: 35.875rem;
    word-break: break-word;
    overflow-wrap: break-word;
    white-space: normal;
}

.text-aboutUs-paragraph {
    max-width: 35.5626rem;
    font-weight: var(--weight-regular);
    font-size: var(--font-size-lg);
    line-height: 2rem;
    background-image: var(--text-gradient);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    color: transparent;
    word-break: break-word;
    overflow-wrap: break-word;
    white-space: normal;
}

/* Goals */
.goals {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: var(--seondary);
    padding: 6.25rem 0;
}

.goals-container {
    display: flex;
    flex-flow: column nowrap;
    justify-content: center;
    align-items: center;
    width: 100%;
    gap: 2.5rem;
}

#centered-title-container {
    align-items: center;
}

.goals-cards-container {
    width: 80%;
    display: flex;
    flex-flow: row wrap;
    align-items: start;
    justify-content: start;
    gap: 1.875rem;
}

.goals-card-wrapper {
    background-color: var(--bgc-primary);
    border-radius: 0.625rem;

}

.goals-card-container {
    padding: 0.625rem 0.625rem 1.875rem 1.875rem;
    display: flex;
    flex-flow: column nowrap;
    justify-content: left;
    gap: 1.875rem;
}

.numbering {
    width: 13.9375rem;
    display: flex;
    flex-flow: row nowrap;
    justify-content: space-between;
}

.icon-wrapper {
    width: 5rem;
    height: 5rem;
    background-color: var(--secondary);
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 0.625rem;
    margin-top: 1.25rem;
    cursor: pointer;
}

.numbered {
    font-weight: 800;
    font-size: 3rem;
    line-height: 3.125rem;
    color: rgba(14, 31, 81, 0.2);
    word-break: break-word;
    overflow-wrap: break-word;
    white-space: normal;
}

.goals-card-texts {
    width: 13.9375rem;
    display: flex;
    flex-flow: column nowrap;
    gap: 1.25rem;
}

.goals-card-title-wrapper {
    display: flex;
    flex-flow: column nowrap;
    gap: 0.8125rem;
    max-width: 12.75rem;
    word-break: break-word;
    overflow-wrap: break-word;
    white-space: normal;
}

.goals-card-title {
    font-weight: 800;
    font-size: var(--font-size-lg);
    line-height: 1.625rem;
    background-image: var(--text-gradient);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    color: transparent;
}

.lines-wrapper {
    display: flex;
    flex-flow: row nowrap;
    gap: 0.625rem;
}

.line-left {
    width: 3.75rem;
    height: 0.375rem;
    background-color: var(--primary);
    border-radius: 0.375rem;
}

.line-right {
    width: 1.25rem;
    height: 0.375rem;
    background-color: var(--primary);
    border-radius: 0.375rem;

}

.goals-p-description {
    width: 12.6875rem;
    font-weight: var(--weight-medium);
    font-size: var(--font-size-sm);
    line-height: 1.625rem;
    color: var(--black);
    word-break: break-word;
    overflow-wrap: break-word;
    white-space: normal;
}

/* Purpose */
.purpose {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--text-gradient);
    padding: 6.25rem 0;
}

.purpose-container {
    display: flex;
    flex-flow: row nowrap;
    justify-content: space-between;
    align-items: center;
    width: 80%;
    gap: 1.9375rem;
}

.purpose-image-wrapper {
    max-width: 34.6875rem;
    border-radius: 0.625rem;
    overflow: hidden;
}

.text-purpose-container {
    display: flex;
    flex-flow: column nowrap;
    justify-content: center;
    gap: 1.875rem;
}

#purpose-text-subtitle {
    font-weight: var(--weight-bold);
    font-size: var(--font-size-xxl);
    line-height: 3.125rem;
    color: var(--secondary);
    max-width: 33.75rem;
    word-break: break-word;
    overflow-wrap: break-word;
    white-space: normal;
}

#text-purpose-paragraph {
    max-width: 35.5626rem;
    font-weight: var(--weight-regular);
    font-size: var(--font-size-sm);
    line-height: 1.625rem;
    color: var(--secondary);
    word-break: break-word;
    overflow-wrap: break-word;
    white-space: normal;
}

#text-purpose-paragraph + p {
    color: var(--secondary);
}

#purpose-button {
    width: 7.8125rem;
    height: 3.125rem;
    cursor: pointer;
    max-height: 3.125rem;
    max-width: 8rem;
    overflow: hidden;
    word-break: break-word;
    overflow-wrap: break-word;
    white-space: normal;
}

/* Team */
.team {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: var(--secondary);
    padding: 6.25rem 0;
}

.team-container {
    display: flex;
    flex-flow: column nowrap;
    justify-content: center;
    align-items: center;
    width: 80%;
    gap: 2.5rem;

    overflow-x: hidden;
}

.test {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.team-cards-wrapper {
    display: flex;
    flex-flow: row nowrap;
    align-items: start;
    justify-content: space-between;
    width: 100%;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    scroll-behavior: smooth;
    gap: 1rem;
}

.team-cards-wrapper::-webkit-scrollbar {
    display: none;
}

.team-image-wrapper {
    max-width: 14.4375rem;
    max-height: 15rem;
    height: 19rem;
    width: 15rem;
    margin-bottom: 0.625rem;
}

.image-employee {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.team-card-wrapper {
    flex: 0 0 auto;
    scroll-snap-align: start;
}

.team-card-wrapper,
.team-card-texts {
    display: flex;
    flex-flow: column nowrap;
    justify-content: center;
    align-items: center;
    gap: 1rem;
}

.team-card-texts {
    gap: 1.625rem;
}

#team-card-title {
    font-size: var(--font-size-lg);
    max-width: 13.5rem;
    max-height: 1.25rem;
    text-align: center;
    word-break: break-word;
    /* ✅ Force breaks in long words */
    overflow-wrap: break-word;
    /* ✅ Optional fallback */
    white-space: normal;
}

#text-position {
    background-image: var(--text-gradient);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    color: transparent;
    /* width: 13.5rem; */
    /* min-height: 1.25rem; */
    /* max-height: 1.25rem; */

}

/* Blogs */
.blogs {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: var(--bgc-primary);
    padding: 6.25rem 0;
}

.blogs-container {
    display: flex;
    flex-flow: column nowrap;
    justify-content: center;
    align-items: center;
    width: 80%;
    gap: 2.5rem;
    overflow-x: hidden;
}

.blogs-cards-container {
    display: flex;
    flex-flow: column nowrap;
    justify-content: center;
    align-items: center;
}

.blogs-cards-wrapper {
    display: flex;
    flex-flow: row nowrap;
    align-items: start;
    justify-content: space-between;
    width: 100%;
    gap: 1.875rem;
    min-width: 17rem;

    overflow-x: auto;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    /* Firefox */
    scroll-behavior: smooth;
}

.blog-link {
    cursor: pointer;
}

.blogs-card-wrapper {
    width: 22.5rem;
    background-color: var(--secondary);
    border-radius: 0.625rem;
    display: flex;
    flex-flow: column nowrap;
    justify-content: center;
    align-items: center;
    padding-top: 1.25rem;
    padding-bottom: 1.25rem;
}

.blogs-card-container {
    width: 90%;
    overflow: hidden;
    display: flex;
    flex-flow: column nowrap;
    justify-content: center;
    align-items: center;
    gap: 1.25rem;
}

.blogs-image-wrapper {
    max-width: 20rem;
    min-width: 15rem;
    max-height: 12.5rem;
    /* min-height: 12.5rem; */
    overflow: hidden;
    display: flex;
    justify-content: center;
    align-items: center;
    object-fit: cover;
}

.blogs-image {
    object-fit: cover;
    overflow: hidden;
    width: 100%;
    height: 100%;
    max-height: 12.5rem;
    min-width: 20rem;
    min-height: 12.5rem;
}

.blogs-card-text {
    display: flex;
    flex-flow: column nowrap;
    gap: 1.25rem;
}

.blogs-card-title {
    color: var(--primary);
    font-size: var(--font-size-lg);
    line-height: 1.875rem;
    font-weight: var(--weight-bold);

    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
    word-break: break-word;
    overflow-wrap: break-word;
    white-space: normal;

}

.blog-post-info {
    display: flex;
    flex-flow: row nowrap;
    justify-content: space-between;
    align-items: center;
}

.poster-img-wrapper {
    width: 2.5rem;
    height: 2.5rem;
    border-radius: 50%;
    overflow: hidden;
}

#poster-image {
    border-radius: 50%;
    height: 100%;
    border-radius: 0;
}

.blog-poster {
    display: flex;
    align-items: center;
    gap: 0.375rem;
}

#poster-name {
    font-size: var(--font-size-sm);
    font-weight: var(--weight-semibold);
    line-height: 1.25rem;
    max-width: 6.625rem;
    max-height: 2.5rem;
    display: -webkit-box;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
}

#blogs-button {
    max-width: 8.5625rem;
    height: 3.125rem;
    max-height: 3.125rem;
    font-size: var(--font-size-sm);
    font-weight: var(--weight-medium);
    cursor: pointer;
    padding: 0 1.5rem;
    overflow: hidden;
}

.blog-date-text {
    max-width: 7.25rem;
    word-break: break-word;
    overflow-wrap: break-word;
    white-space: normal;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    overflow: hidden;
    text-overflow: ellipsis;
}

/* Help */
.help {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: var(--secondary);
    padding: 6.25rem 0;
}

.help-container {
    display: flex;
    flex-flow: column nowrap;
    justify-content: space-between;
    align-items: center;
    width: 80%;
    gap: 2.5rem;
}

.test {
    display: flex;
    flex-flow: row nowrap;
    justify-content: space-between;
    align-items: center;
    gap: 1.875rem;
    width: 100%;
}

.formhelp-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-flow: row nowrap;
    width: 100%;
}

.form-wrapper {
    display: flex;
    flex-flow: column nowrap;
    gap: 1.875rem;
    width: 100%;

}

.form-container {
    display: flex;
    gap: 1.25rem;
    flex-flow: column nowrap;
}

.form {
    display: flex;
    flex-flow: column nowrap;
    gap: 1.875rem;
    width: 100%;
}

.input-wrapper {
    height: 3.125rem;
    display: flex;
    justify-content: start;
    align-items: start;
    flex-flow: column nowrap;
}

.form-input {
    border-radius: 0.625rem;
    border-color: transparent;
    background-color: var(--bgc-primary);
    padding: 0.875rem;
    height: 100%;
    width: 100%;
    resize: none;
}

.form-input::placeholder {
    color: rgba(37, 37, 37, 1);
    font-family: 'Raleway', sans-serif;
    font-weight: var(--weight-medium);
}

.message-area-wrapper {
    height: 9.375rem;
}

.btn-submit {
    width: 8.125rem;
    background-color: var(--primary);
    color: var(--secondary);
    border: none;
}

#form-button {
    font-size: var(--font-size-sm);
    font-weight: var(--weight-medium);
    line-height: 1.625rem;
    min-width: 7.8125rem;
    max-width: 8rem;
    max-height: 3.125rem;
    height: 3.125rem;
    cursor: pointer;
    padding: 0 1.5rem;
    overflow: hidden;
}

.connect-help-wrapper {
    display: flex;
    flex-flow: column nowrap;
    gap: 3.125rem;
    max-width: 22.5rem;
    justify-content: center;
    align-items: center;
}

.connect-info-container {
    display: flex;
    flex-flow: column nowrap;
    gap: 1.875rem;
    padding-left: 1.875rem;
}

.connect-info-icon-wrapper {
    width: 4.375rem;
    height: 4.375rem;
    min-width: 4.375rem;
    min-height: 4.375rem;
    max-width: 4.375rem;
    max-height: 4.375rem;
    background-color: var(--bgc-primary);
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 0.625rem;
}

.connect-info-wrapper {
    display: flex;
    flex-flow: row nowrap;
    gap: 1rem;
    cursor: pointer;
}

.connect-info-text-wrapper {
    display: flex;
    flex-flow: column nowrap;
    gap: 0.625rem;
}

#connect-info-title {
    font-size: var(--font-size-lg);
}

.connect-info-text-subtitle {
    font-weight: var(--weight-medium);
    font-size: var(--font-size-sm);
    max-width: 13rem;
    word-break: break-word;
    overflow-wrap: break-word;
    white-space: normal;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    overflow: hidden;
    text-overflow: ellipsis;
}

.followUs-container {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-flow: column nowrap;
}

#follwUs-title {
    font-size: var(--font-size-xl);
}

.folowUs-links-wrapper {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-flow: row nowrap;
    gap: 1.25rem;
}

#followUs-icon {
    background-color: var(--primary);
    width: 3.75rem;
    height: 3.75rem;
}

.form-icon {
    width: 1.4375rem;
    height: 1.875rem;
}

.followUs-icon {
    max-height: 1.25rem;
    max-width: 1.25rem;
    min-height: 0.9375rem;
}


.error-message {
    color: red;
    font-size: 0.85rem;
    margin-top: 0.25rem;
}

.form-success-message {
    margin-top: 1rem;
    font-size: 1rem;
    color: green;
    font-weight: 500;
}
