.innter_hero {
    margin-top: 123px;
}

.innter_hero_link {
    margin: 0;
    padding: 0;
    display: flex;
    align-items: center;
    gap: 5px;

}

.innter_hero_link li {
    list-style: none;
    color: var(--666-grey);
    font-size: 18px;
    font-weight: 400;
    line-height: 24px;
}

.innter_hero_link li a:hover {
    color: var(--282-blue);
}

.innter_hero_link span {
    color: var(--282-blue);
    font-weight: 600;
}

.innter_hero_top .title_72 {
    margin-bottom: 13px;
}

.innter_hero_bot {
    margin: 60px 0;
}

.innter_hero_bot .title_30 {
    color: var(--666-grey);
    line-height: 42px;
    font-weight: 300;
    /* text-align: justify; */
}

.innter_hero_bot_rt {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    row-gap: 40px;
}

.innter_hero_bot_rt .child h6 {
    color: var(--333-grey);
    font-size: 20px;
    font-weight: 600;
    line-height: 26px;
    margin-bottom: 10px;
}

.innter_hero_bot_rt .child .para {
    color: var(--666-grey);
    font-size: 20px;
    font-weight: 400;
    line-height: 26px;
    text-decoration-line: underline;
    text-decoration-style: solid;
    text-decoration-skip-ink: none;
    text-decoration-thickness: auto;
    text-underline-offset: auto;
    display: flex;
    gap: 20px;
    margin-bottom: 0;
}

.innter_hero_bot_rt .child .icon {
    display: flex;
    align-items: center;
    gap: 15px;
}

/* Icon link styles and hover effects */
.innter_hero_bot_rt .child .icon a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #666666;
    cursor: pointer;
    transition: color .18s ease, transform .18s ease;
    text-decoration: none;
}

.innter_hero_bot_rt .child .icon a svg {
    width: 24px;
    height: 24px;
    transition: transform .18s ease;
    /* make svg use text color */
    fill: currentColor;
}

.innter_hero_bot_rt .child .icon a svg path,
.innter_hero_bot_rt .child .icon a svg g {
    transition: fill .18s ease;
    fill: currentColor !important;
}

.innter_hero_bot_rt .child .icon a:hover {
    color: var(--282-blue);
    transform: translateY(-3px);
}

.innter_hero_bot_rt .child .icon a:focus-visible {
    outline: 2px solid var(--282-blue);
    outline-offset: 3px;
    border-radius: 4px;
}

.innter_hero_bot_rt .child .icon a:hover svg,
.innter_hero_bot_rt .child .icon a:focus-visible svg {
    transform: translateY(-2px) scale(1.08);
}

.project_details_link {
    margin-top: 40px;
    text-align: end;
}

.project_details_link a {
    color: var(--666-grey);
    font-size: 80px;
    font-weight: 300;
    line-height: 56px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    text-decoration: none;
    transition: color .16s ease;
}

.project_details_link a span:last-child svg {
    transition: transform .16s ease, opacity .12s ease;
    transform-origin: center;
    height: auto;
}

/* Simple hover and focus */
.project_details_link a:hover {
    color: var(--282-blue);
}

.project_details_link a:hover span:last-child svg {
    transform: translateX(6px);
    opacity: 0.95;
}

.project_details_link a:focus-visible {
    box-shadow: 0 0 0 3px rgba(40,38,99,0.08);
    outline: none;
    border-radius: 6px;
}

@media (max-width: 768px) {
    .project_details_link a { font-size: 20px; line-height: 28px; }
    .project_details_link { text-align: center; }
}