.section_box_product_detail {
    margin-top: 50px;
}
.section_box_product_detail .left_box {
    padding: 23px 30px;
    border-radius: 30px;
    background: rgba(255, 255, 255, 0.1);
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 0;
    transform: perspective(1200px) translateY(-100px);
    animation: fadeInAndMove 1.2s ease-out forwards;
}
@keyframes fadeInAndMove {
    0% {
        opacity: 0;
        transform: perspective(1200px) translateY(-100px);
    }
    100% {
        opacity: 1;
        transform: perspective(1200px) translateY(0);
    }
}
.section_box_product_detail .left_box .content span {
    color: #ff6e0c;
    text-align: center;
    font-family: Satoshi;
    font-size: 11px;
    font-style: normal;
    font-weight: 700;
    line-height: 22px;
    text-transform: uppercase;
    border-radius: 39px;
    background: rgba(255, 255, 255, 0.1);
    padding: 3px 11.746px 7px 12px;
}
.section_box_product_detail .left_box .content h1 {
    color: #fff;
    font-family: Unbounded;
    font-size: 32px;
    font-style: normal;
    font-weight: 400;
    line-height: 42px;
    letter-spacing: -2.5px;
    margin-top: 0.5rem;
}
.section_box_product_detail .image_box_right img {
    width: 100%;
    opacity: 0;
    transform: perspective(1200px) translateY(-100px);
    animation: fadeInAndMove 1.2s ease-out forwards;
}
.section_box_product_detail .center_content_box {
    border-radius: 30px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(2.5px);
    padding: 2rem;
    margin-top: 1rem;
    margin-bottom: 1rem;
}
.section_box_product_detail .center_content_box .sub_head {
    color: #ff6e0c;
    text-align: center;
    font-family: Satoshi;
    font-size: 11px;
    font-style: normal;
    font-weight: 700;
    line-height: 22px;
    text-transform: uppercase;
    border-radius: 39px;
    background: rgba(255, 255, 255, 0.1);
    padding: 3px 11.746px 7px 12px;
    width: 11%;
    display: block;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 1rem;
}
.section_box_product_detail .center_content_box p {
    color: #fff;
    text-align: center;
    font-family: Satoshi;
    font-size: 23px;
    font-style: normal;
    font-weight: 400;
    line-height: 35px;
    letter-spacing: -1.2px;
}
.section_box_product_detail .center_content_box p span {
    color: #ff6e0c;
}
/* Results Section */
.results_section {
    margin-top: 1.5rem;
    margin-bottom: 2rem;
}
.results_heading {
    text-align: center;
    margin-bottom: 1.5rem;
}
.results_badge {
    color: #ff6e0c;
    font-family: Unbounded;
    font-size: 10px;
    font-weight: 600;
    line-height: 22px;
    text-transform: uppercase;
    border-radius: 39px;
    background: rgba(255, 110, 12, 0.15);
    padding: 4px 16px 6px 16px;
    display: inline-block;
    margin-bottom: 0.75rem;
    letter-spacing: 0.5px;
    transition:
        background 0.3s ease,
        transform 0.3s ease;
}
.results_badge:hover {
    background: rgba(255, 110, 12, 0.25);
    transform: scale(1.05);
}
.results_heading h2 {
    color: #fff;
    font-family: Unbounded;
    font-size: 34px;
    font-weight: 500;
    line-height: 44px;
    letter-spacing: -1.5px;
    opacity: 0;
    animation: resultsFadeUp 0.8s ease-out 0.2s forwards;
}
@keyframes resultsFadeUp {
    0% {
        opacity: 0;
        transform: translateY(20px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}
@keyframes resultsCardReveal {
    0% {
        opacity: 0;
        transform: translateY(30px) scale(0.98);
    }
    100% {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}
@keyframes statCountUp {
    0% {
        opacity: 0;
        transform: scale(0.8);
    }
    60% {
        transform: scale(1.05);
    }
    100% {
        opacity: 1;
        transform: scale(1);
    }
}
@keyframes keywordSlideIn {
    0% {
        opacity: 0;
        transform: translateX(-15px);
    }
    100% {
        opacity: 1;
        transform: translateX(0);
    }
}
.results_card {
    border-radius: 20px;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.06);
    padding: 2.5rem 3rem;
    opacity: 0;
    animation: resultsCardReveal 0.8s ease-out 0.4s forwards;
    transition:
        border-color 0.4s ease,
        box-shadow 0.4s ease;
}
.results_card:hover {
    box-shadow: 0 8px 40px rgba(255, 110, 12, 0.06);
}
.results_desc {
    color: #fff;
    text-align: center;
    font-family: Unbounded;
    font-size: 20px;
    font-style: normal;
    font-weight: 400;
    line-height: 26px;
    letter-spacing: -0.1px;
    margin-bottom: 2.5rem;
    padding: 0 2rem;
}
.results_stats {
    display: flex;
    justify-content: space-around;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 2rem;
}
.results_stats .stat_item {
    text-align: center;
    flex: 1;
    padding: 1rem 0.5rem;
    border-radius: 16px;
    transition:
        background 0.3s ease,
        transform 0.3s ease;
    cursor: default;
    opacity: 0;
    animation: statCountUp 0.6s ease-out forwards;
}
.results_stats .stat_item:nth-child(1) {
    animation-delay: 0.6s;
}
.results_stats .stat_item:nth-child(2) {
    animation-delay: 0.8s;
}
.results_stats .stat_item:nth-child(3) {
    animation-delay: 1s;
}
/* .results_stats .stat_item:hover {
    background: rgba(255, 110, 12, 0.06);
    transform: translateY(-4px);
} */
.results_stats .stat_item h3 {
    color: #ff6e0c;
    font-family: Unbounded;
    font-size: 50px;
    font-style: normal;
    font-weight: 600;
    line-height: 40px;
    letter-spacing: -2.5px;
    margin-bottom: 0.25rem;
    transition:
        text-shadow 0.3s ease,
        transform 0.3s ease;
}
.results_stats .stat_item:hover h3 {
    text-shadow: 0 0 25px rgba(255, 110, 12, 0.4);
    transform: scale(1.05);
}
.results_stats .stat_item p {
    color: #fff;
    /* font-family: Saira; */
    font-size: 14.5px;
    font-style: normal;
    font-weight: 400;
    line-height: 27px;
    opacity: 0.8;
    letter-spacing: -0.2px;
    transition: color 0.3s ease;
}
.results_stats .stat_item:hover p {
    color: rgba(255, 255, 255, 0.75);
}
.results_keywords {
    display: flex;
    justify-content: space-between;
    gap: 1rem;
}
.keyword_tag {
    flex: 1;
    display: flex;
    align-items: center;
    gap: 10px;
    border-radius: 10px;
    background: rgba(255, 110, 12, 0.06);
    border: 1px solid rgba(255, 110, 12, 0.15);
    padding: 12px 18px;
    transition:
        background 0.3s ease,
        border-color 0.3s ease,
        transform 0.3s ease,
        box-shadow 0.3s ease;
    cursor: default;
    opacity: 0;
    animation: keywordSlideIn 0.5s ease-out forwards;
}
.keyword_tag:nth-child(1) {
    animation-delay: 1.1s;
}
.keyword_tag:nth-child(2) {
    animation-delay: 1.25s;
}
.keyword_tag:nth-child(3) {
    animation-delay: 1.4s;
}
.keyword_tag:hover {
    background: rgba(255, 110, 12, 0.12);
    border-color: rgba(255, 110, 12, 0.35);
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(255, 110, 12, 0.1);
}
.keyword_tag svg {
    flex-shrink: 0;
    transition: transform 0.3s ease;
}
.keyword_tag:hover svg {
    transform: scale(1.15) rotate(5deg);
}
.keyword_tag span {
    color: rgba(255, 255, 255, 0.75);
    font-family: Unbounded;
    font-size: 16px;
    font-weight: 400;
    line-height: 20px;
    letter-spacing: -0.2px;
    transition: color 0.3s ease;
}
.keyword_tag:hover span {
    color: rgba(255, 255, 255, 0.95);
}
@media (max-width: 991px) {
    .results_card {
        padding: 2rem;
    }
    .results_stats .stat_item h3 {
        font-size: 30px;
        line-height: 38px;
    }
    .results_desc {
        padding: 0;
        font-size: 14px;
    }
}
@media (max-width: 767px) {
    .results_stats {
        flex-direction: column;
        gap: 0.5rem;
    }
    .results_keywords {
        flex-direction: column;
        gap: 0.75rem;
    }
    .results_stats .stat_item h3 {
        font-size: 28px;
        line-height: 36px;
    }
    .results_heading h2 {
        font-size: 24px;
        line-height: 32px;
    }
    .results_card {
        padding: 1.5rem;
    }
    .results_desc {
        font-size: 13px;
        line-height: 22px;
        margin-bottom: 1.5rem;
    }
}

/* Challenge Section */
@keyframes challengeReveal {
    0% {
        opacity: 0;
        transform: translateY(35px) scale(0.98);
    }
    100% {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}
@keyframes challengeTextFade {
    0% {
        opacity: 0;
        transform: translateY(15px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}
@keyframes challengeListSlide {
    0% {
        opacity: 0;
        transform: translateX(-20px);
    }
    100% {
        opacity: 1;
        transform: translateX(0);
    }
}
.challenge_section {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    margin-top: 1.5rem;
    margin-bottom: 2rem;
    background-size: cover;
    background-position: center right;
    background-repeat: no-repeat;
    min-height: 300px;
    opacity: 0;
    animation: challengeReveal 0.9s ease-out 0.3s forwards;
    transition: box-shadow 0.4s ease;
}
.challenge_section:hover {
    box-shadow:
        0 10px 50px rgba(0, 0, 0, 0.5),
        0 0 0 1px rgba(255, 110, 12, 0.15);
}

.challenge_content {
    position: relative;
    z-index: 2;
    padding: 2rem 3rem;
    max-width: 70%;
}
.challenge_badge {
    color: #ff6e0c;
    font-family: Unbounded;
    font-size: 8px;
    font-weight: 500;
    line-height: 18px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    border-radius: 39px;
    background: rgba(255, 110, 12, 0.18);
    padding: 2px 12px 4px 12px;
    display: inline-block;
    margin-bottom: 0.6rem;
    opacity: 0;
    animation: challengeTextFade 0.6s ease-out 0.5s forwards;
    transition:
        background 0.3s ease,
        transform 0.3s ease;
}
.challenge_badge:hover {
    background: rgba(255, 110, 12, 0.3);
    transform: scale(1.05);
}
.challenge_content h2 {
    color: #fff;
    font-family: Unbounded;
    font-size: 40px;
    font-style: normal;
    font-weight: 400;
    line-height: 56.2px;
    letter-spacing: -1px;
    margin-bottom: 0.6rem;
    opacity: 0;
    animation: challengeTextFade 0.6s ease-out 0.65s forwards;
}
.challenge_desc {
    color: #fff;
    font-family: Unbounded;
    font-size: 14px;
    font-weight: 300;
    line-height: 22px;
    letter-spacing: -0.2px;
    margin-bottom: 0.5rem;
    opacity: 0;
    animation: challengeTextFade 0.6s ease-out 0.8s forwards;
}
.challenge_list {
    list-style: none;
    padding-left: 0;
    margin-bottom: 1rem;
}
.challenge_list li {
    color: #ff6e0c;
    font-family: Unbounded;
    font-size: 14px;
    font-weight: 300;
    line-height: 26px;
    letter-spacing: -0.2px;
    padding: 3px 0;
    padding-left: 18px;
    position: relative;
    opacity: 0;
    animation: challengeListSlide 0.5s ease-out forwards;
    transition:
        color 0.3s ease,
        transform 0.3s ease;
}
.challenge_list li span {
    color: #ff6e0c;
    font-weight: 400;
}
.challenge_list li:nth-child(1) {
    animation-delay: 0.9s;
}
.challenge_list li:nth-child(2) {
    animation-delay: 1s;
}
.challenge_list li:nth-child(3) {
    animation-delay: 1.1s;
}
.challenge_list li:nth-child(4) {
    animation-delay: 1.2s;
}
.challenge_list li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 10px;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: #ff6e0c;
    transition:
        box-shadow 0.3s ease,
        transform 0.3s ease;
}
.challenge_list li:hover {
    transform: translateX(5px);
}
.challenge_list li:hover::before {
    box-shadow: 0 0 10px rgba(255, 110, 12, 0.6);
    transform: scale(1.3);
}
.challenge_closing {
    color: rgba(255, 255, 255, 0.85);
    font-family: Unbounded;
    font-size: 14px;
    font-weight: 300;
    line-height: 20px;
    letter-spacing: -0.2px;
    margin-bottom: 0;
    opacity: 0;
    animation: challengeTextFade 0.6s ease-out 1.3s forwards;
    margin-top: 0.5rem;
    transition: color 0.3s ease;
}
.challenge_section:hover .challenge_closing {
    color: #fff;
}
@media (max-width: 991px) {
    .challenge_content {
        padding: 1.5rem 2rem;
        max-width: 85%;
    }
    .challenge_content h2 {
        font-size: 22px;
        line-height: 30px;
    }
}
@media (max-width: 767px) {
    .challenge_section {
        min-height: auto;
    }
    .challenge_content {
        padding: 1.5rem;
        max-width: 100%;
    }
    .challenge_content h2 {
        font-size: 20px;
        line-height: 28px;
    }
    .challenge_desc,
    .challenge_list li,
    .challenge_closing {
        font-size: 10px;
        line-height: 18px;
    }
}

/* Framework Section */
@keyframes frameworkFadeUp {
    0% {
        opacity: 0;
        transform: translateY(25px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}
@keyframes frameworkCardSlide {
    0% {
        opacity: 0;
        transform: translateY(30px) scale(0.98);
    }
    100% {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}
.framework_section {
    margin-top: 1.5rem;
    margin-bottom: 2rem;
}
.framework_heading {
    text-align: center;
    margin-bottom: 2rem;
    opacity: 0;
    animation: frameworkFadeUp 0.8s ease-out 0.2s forwards;
}
.framework_badge {
    color: #ff6e0c;
    font-family: Unbounded;
    font-size: 8px;
    font-weight: 500;
    line-height: 18px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    border-radius: 39px;
    background: rgba(255, 110, 12, 0.18);
    padding: 2px 12px 4px 12px;
    display: inline-block;
    margin-bottom: 0.6rem;
    transition:
        background 0.3s ease,
        transform 0.3s ease;
}
.framework_badge:hover {
    background: rgba(255, 110, 12, 0.3);
    transform: scale(1.05);
}
.framework_heading h2 {
    color: #fff;
    font-family: Unbounded;
    font-size: 30px;
    font-weight: 600;
    line-height: 42px;
    letter-spacing: -1.2px;
}
/* Card */
.framework_card {
    position: relative;
    border-radius: 16px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-left: 3px solid #ff6e0c;
    padding: 2.8rem 1.8rem 2.8rem 1.8rem;
    margin-bottom: 1.5rem;
    opacity: 0;
    animation: frameworkCardSlide 0.7s ease-out forwards;
    transition:
        border-color 0.4s ease,
        box-shadow 0.4s ease,
        transform 0.3s ease;
}
.framework_card:nth-child(2) {
    animation-delay: 0.4s;
}
.framework_card:nth-child(3) {
    animation-delay: 0.6s;
}
.framework_card:nth-child(4) {
    animation-delay: 0.8s;
}
.framework_card:hover {
    border-color: rgba(255, 255, 255, 0.1);
    border-left-color: #ff6e0c;
    box-shadow:
        0 8px 40px rgba(0, 0, 0, 0.3),
        0 0 0 1px rgba(255, 110, 12, 0.08);
    transform: translateY(-3px);
}
/* Icon - positioned top-left overlapping the card edge */
.framework_card_icon {
    position: absolute;
    left: -22px;
    top: 20px;
    width: 44px;
    height: 44px;
    border-radius: 12px;
    background: #1a1a1a;
    border: 2px solid #ff6e0c;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2;
    transition:
        background 0.3s ease,
        transform 0.3s ease,
        box-shadow 0.3s ease;
}
.framework_card:hover .framework_card_icon {
    background: #ff6e0c;
    transform: scale(1.08);
    box-shadow: 0 4px 20px rgba(255, 110, 12, 0.35);
}
.framework_card:hover .framework_card_icon img {
    filter: brightness(0) invert(1);
}
.framework_card_icon img {
    width: 22px;
    height: 22px;
    transition: filter 0.3s ease;
}
/* Card body layout */
.framework_card_body {
    display: flex;
    gap: 1.5rem;
    align-items: stretch;
    margin-left: 1.5rem;
}
.framework_card_text {
    flex: 1;
    min-width: 0;
}
.framework_card_text h3 {
    color: #fff;
    font-family: Unbounded;
    font-size: 22px;
    font-style: normal;
    font-weight: 400;
    line-height: 26px; /* 118.182% */
    letter-spacing: -0.1px;
    margin-bottom: 0.4rem;
    transition: color 0.3s ease;
}
.framework_card:hover .framework_card_text h3 {
    color: #ff6e0c;
}
.framework_card_text p {
    color: rgba(255, 255, 255, 0.85);
    font-family: Unbounded;
    opacity: 0.6;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 24px;
    letter-spacing: -0.1px;
    margin-bottom: 0.3rem;
}
.framework_card_text ul {
    list-style: none;
    padding-left: 0;
    margin-bottom: 0.4rem;
}
.framework_card_text ul li {
    opacity: 0.6;
    color: #ff6e0c;
    font-family: Unbounded;
    font-size: 14px;
    font-weight: 300;
    line-height: 24px;
    letter-spacing: -0.1px;
    padding: 1.5px 0;
    padding-left: 14px;
    position: relative;
    transition:
        transform 0.3s ease,
        color 0.3s ease;
}
.framework_card_text ul li span {
    color: #ff6e0c;
    font-weight: 400;
}
.framework_card_text ul li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 8px;
    width: 5px;
    height: 5px;
    border-radius: 50%;
    background: #ff6e0c;
    transition:
        box-shadow 0.3s ease,
        transform 0.3s ease;
}
.framework_card_text ul li:hover {
    transform: translateX(4px);
    color: #fff;
}
.framework_card_text ul li:hover::before {
    box-shadow: 0 0 8px rgba(255, 110, 12, 0.6);
    transform: scale(1.4);
}
.framework_card_note {
    color: rgba(255, 255, 255, 0.55) !important;
    font-style: italic;
    margin-top: 0.4rem;
    margin-bottom: 0 !important;
    transition: color 0.3s ease;
}
.framework_card:hover .framework_card_note {
    color: rgba(255, 255, 255, 0.75) !important;
}
/* Card image */
.framework_card_img {
    width: 360px;
    min-width: 260px;
    border-radius: 14px;
    overflow: hidden;
    align-self: center;
}
.framework_card_img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 14px;
    display: block;
    transition: transform 0.5s ease;
}
.framework_card:hover .framework_card_img img {
    transform: scale(1.06);
}
/* Responsive */
@media (max-width: 991px) {
    .framework_heading h2 {
        font-size: 24px;
        line-height: 34px;
    }
    .framework_card {
        padding: 1.5rem;
    }
    .framework_card_icon {
        left: -18px;
        top: 16px;
        width: 38px;
        height: 38px;
    }
    .framework_card_icon img {
        width: 20px;
        height: 20px;
    }
    .framework_card_body {
        flex-direction: column;
        margin-left: 1.2rem;
    }
    .framework_card_img {
        width: 100%;
        min-width: unset;
        max-height: 220px;
    }
}
@media (max-width: 767px) {
    .framework_heading h2 {
        font-size: 20px;
        line-height: 28px;
    }
    .framework_card {
        padding: 1.2rem;
        padding-left: 1.5rem;
        margin-left: 20px;
    }
    .framework_card_icon {
        left: -16px;
        top: 14px;
        width: 32px;
        height: 32px;
        border-radius: 10px;
    }
    .framework_card_icon img {
        width: 16px;
        height: 16px;
    }
    .framework_card_body {
        margin-left: 0.8rem;
    }
    .framework_card_text h3 {
        font-size: 14px;
        line-height: 20px;
    }
    .framework_card_text p,
    .framework_card_text ul li {
        font-size: 9px;
        line-height: 16px;
    }
    .framework_card_img {
        max-height: 180px;
    }
}

/* Key Learnings Section */
@keyframes keylearningCardPop {
    0% {
        opacity: 0;
        transform: translateY(20px) scale(0.96);
    }
    100% {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}
.keylearnings_section {
    margin-top: 2rem;
    margin-bottom: 2.5rem;
}
.keylearnings_heading {
    text-align: center;
    margin-bottom: 1.8rem;
    opacity: 0;
    animation: frameworkFadeUp 0.8s ease-out 0.2s forwards;
}
.keylearnings_badge {
    color: #ff6e0c;
    font-family: Unbounded;
    font-size: 8px;
    font-weight: 500;
    line-height: 18px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    border-radius: 39px;
    background: rgba(255, 110, 12, 0.18);
    padding: 2px 12px 4px 12px;
    display: inline-block;
    margin-bottom: 0.5rem;
    transition:
        background 0.3s ease,
        transform 0.3s ease;
}
.keylearnings_badge:hover {
    background: rgba(255, 110, 12, 0.3);
    transform: scale(1.05);
}
.keylearnings_heading h2 {
    color: #fff;
    font-family: Unbounded;
    font-size: 30px;
    font-weight: 500;
    line-height: 44px;
    letter-spacing: -1px;
    /* font-style: italic; */
}
.keylearnings_grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px;
}
.keylearning_card {
    display: flex;
    align-items: center;
    gap: 16px;
    border-radius: 30px;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);
    padding: 1.61rem 1.8rem;
    opacity: 0;
    animation: keylearningCardPop 0.6s ease-out forwards;
    transition:
        border-color 0.3s ease,
        box-shadow 0.3s ease,
        transform 0.3s ease,
        background 0.3s ease;
}
.keylearning_card:nth-child(1) {
    animation-delay: 0.3s;
}
.keylearning_card:nth-child(2) {
    animation-delay: 0.45s;
}
.keylearning_card:nth-child(3) {
    animation-delay: 0.6s;
}
.keylearning_card:nth-child(4) {
    animation-delay: 0.75s;
}
.keylearning_card:hover {
    border-color: rgba(255, 110, 12, 0.25);
    box-shadow: 0 6px 30px rgba(0, 0, 0, 0.25);
    transform: translateY(-3px);
    background: rgba(255, 255, 255, 0.06);
}
.keylearning_icon {
    width: 34px;
    height: 34px;
    min-width: 34px;
    border-radius: 50%;
    background: #ff6e0c;
    display: flex;
    align-items: center;
    justify-content: center;
    transition:
        transform 0.3s ease,
        box-shadow 0.3s ease;
}
.keylearning_card:hover .keylearning_icon {
    transform: scale(1.1);
    box-shadow: 0 4px 16px rgba(255, 110, 12, 0.4);
}
.keylearning_icon svg {
    width: 16px;
    height: 16px;
}
.keylearning_card p {
    color: #fff;
    font-family: Unbounded;
    font-size: 16px;
    font-style: normal;
    font-weight: 300;
    line-height: 24px;
    letter-spacing: -0.32px;
    margin: 0;
    transition: color 0.3s ease;
}
.keylearning_card:hover p {
    color: #fff;
}

/* Conclusion Section */
@keyframes conclusionFadeIn {
    0% {
        opacity: 0;
        transform: translateY(20px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}
.conclusion_section {
    margin-top: 2.5rem;
    margin-bottom: 2rem;
    opacity: 0;
    animation: conclusionFadeIn 0.8s ease-out 0.3s forwards;
}
.conclusion_heading {
    text-align: center;
    margin-bottom: 1rem;
}
.conclusion_heading h2 {
    color: #fff;
    font-family: Unbounded;
    font-size: 28px;
    font-weight: 500;
    line-height: 38px;
    letter-spacing: -1px;
    display: inline-block;
    margin-bottom: 0.3rem;
    position: relative;
    padding-bottom: 10px;
}
.conclusion_line {
    width: 60px;
    height: 2px;
    background: #ff6e0c;
    border-radius: 1px;
    margin: 0 auto;
}
.conclusion_text {
    color: rgba(255, 255, 255, 0.5);
    font-family: Unbounded;
    font-size: 14px;
    font-weight: 300;
    line-height: 25px;
    letter-spacing: -0.2px;
    text-align: center;
    max-width: 780px;
    margin: 1rem auto 2rem auto;
    /* font-style: italic; */
}
.conclusion_image {
    border-radius: 24px;
    overflow: hidden;
    background: linear-gradient(180deg, #1a1a2e 0%, #f5f5f5 100%);
    transition:
        transform 0.4s ease,
        box-shadow 0.4s ease;
}
.conclusion_image:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 50px rgba(0, 0, 0, 0.3);
}
.conclusion_image img {
    width: 100%;
    display: block;
    transition: transform 0.5s ease;
}
.conclusion_image:hover img {
    transform: scale(1.015);
}

/* Key Learnings & Conclusion responsive */
@media (max-width: 991px) {
    .keylearnings_heading h2,
    .conclusion_heading h2 {
        font-size: 22px;
        line-height: 32px;
    }
    .conclusion_text {
        font-size: 11px;
        line-height: 20px;
    }
    .keylearning_card {
        border-radius: 40px;
        padding: 1rem 1.5rem;
    }
}
@media (max-width: 767px) {
    .keylearnings_grid {
        grid-template-columns: 1fr;
    }
    .keylearnings_heading h2,
    .conclusion_heading h2 {
        font-size: 20px;
        line-height: 28px;
    }
    .keylearning_card {
        border-radius: 30px;
        padding: 0.9rem 1.3rem;
        gap: 12px;
    }
    .keylearning_icon {
        width: 30px;
        height: 30px;
        min-width: 30px;
    }
    .keylearning_icon svg {
        width: 14px;
        height: 14px;
    }
    .keylearning_card p {
        font-size: 10px;
        line-height: 17px;
    }
    .conclusion_text {
        font-size: 10px;
        line-height: 18px;
        padding: 0 1rem;
    }
    .conclusion_image {
        border-radius: 16px;
    }
}

.section_box_product_detail .main_content_box_detail p {
    color: #fff;
    font-family: Satoshi;
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: 24px;
    opacity: 0.6;
}
.section_box_product_detail .main_content_box_detail ul {
    padding-left: 1rem;
}
.section_box_product_detail .main_content_box_detail ul li {
    color: #fff;
    font-family: Satoshi;
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: 24px;
    opacity: 0.6;
}
.section_box_product_detail .subscribe_box_sec {
    border-radius: 30px;
    background: rgba(255, 255, 255, 0.05);
    padding: 20px;
    margin-bottom: 3rem;
}
.section_box_product_detail .subscribe_box_sec h4 {
    color: #fff;
    font-family: Unbounded;
    font-size: 20px;
    font-style: normal;
    font-weight: 400;
    line-height: 26px;
    letter-spacing: -0.1px;
}
.section_box_product_detail .subscribe_box_sec p {
    color: #fff;
    font-family: inter;
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: 24px;
}
.section_box_product_detail .subscribe_box_sec .form_group {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 7px;
}
.section_box_product_detail .subscribe_box_sec .form_group input {
    border-radius: 30px;
    background: #ebebeb;
    color: #000;
    font-family: Satoshi;
    font-size: 16px;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
    height: 45px;
}
.section_box_product_detail .subscribe_box_sec .form_group input:focus {
    outline: none;
    box-shadow: none;
}
.section_box_product_detail .subscribe_box_sec .form_group button {
    border-radius: 30px;
    background: #ff6e0c;
    padding: 16px 14.651px 16px 15px;
    border: none;
    height: 45px;
    display: flex;
    justify-content: center;
    align-items: center;
    color: #0d0d0d;
    text-align: center;
    font-family: Unbounded;
    font-size: 13px;
    font-style: normal;
    font-weight: 400;
    line-height: 16px;
}
.section_box_product_detail .subscribe_box_sec .bot_sub {
    display: flex;
    gap: 1rem;
    justify-content: space-between;
    align-items: center;
    margin-top: 2rem;
}
.section_box_product_detail .subscribe_box_sec .bot_sub p {
    color: #fff;
    font-family: Satoshi;
    font-size: 11px;
    font-style: normal;
    font-weight: 700;
    line-height: 22px;
    text-transform: uppercase;
}
.section_box_product_detail .subscribe_box_sec .bot_sub .sub_social {
    border-radius: 30px;
    background: rgba(255, 255, 255, 0.05);
}
.section_box_product_detail .subscribe_box_sec .bot_sub .sub_social ul {
    padding: 14px 114.5px;
    margin-bottom: 0;
}
.section_box_product_detail .subscribe_box_sec .bot_sub .sub_social ul li {
    display: inline-block;
}
.img_box img {
    width: 100%;
    margin-bottom: 2rem;
}
.our_works_section {
    margin-top: 100px;
}
.our_works_section .section_headings span {
    padding: 5px 11.653px 5px 12px;
    border-radius: 39px;
    background: rgba(255, 255, 255, 0.1);
    color: #ff6e0c;
    text-align: center;
    font-family: Inter;
    font-size: 10.656px;
    font-style: normal;
    font-weight: 700;
    line-height: 22px;
    text-transform: uppercase;
}
.our_works_section .section_headings h2 {
    color: #fff;
    font-family: Unbounded;
    font-size: 40px;
    font-style: normal;
    font-weight: 400;
    line-height: 44px;
    letter-spacing: -1.8px;
    margin-top: 1rem;
    margin-bottom: 1rem;
}

.our_works_section .section_headings p {
    color: #fff;
    font-family: "inter";
    font-size: 17px;
    font-style: normal;
    font-weight: 400;
    line-height: 25px;
    letter-spacing: -1.8px;
    /* margin-top: 1rem; */
    opacity: 0.6;
}
.right_box_button_second a {
    width: 250.95px;
    height: 50px;
    border-radius: 60px;
    background: #ff6e0c;
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: #212121;
    font-family: Unbounded;
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: 24px;
    letter-spacing: -0.1px;
    text-transform: uppercase;
    text-decoration: none;
    gap: 0.5rem;
    padding: 16.5px 27.05px 16.5px 26.06px;
    margin-left: auto;
    margin-right: auto;
    margin-top: 1rem;
    margin-bottom: 2rem;
}
.right_box_button_second a svg {
    transition: all 0.5s;
}
.right_box_button_second a:hover svg {
    transform: rotate(45deg);
}

.our_works_section .work_box a {
    text-decoration: none;
    display: flex;
    gap: 10px;
}
.our_works_section .work_box:hover .image_box img {
    transform: scale(1.065);
}
.our_works_section .work_box .image_box {
    /* margin-bottom: 0.5rem; */
    /* margin-bottom: 0.5rem; */
    overflow: hidden;
    border-radius: 30px;
    width: 34%;
}
.our_works_section .work_box .image_box img {
    width: 100%;
    border-radius: 30px;
    height: 332px;
    transition: transform 0.8s ease-in-out;
}

.our_works_section .work_box .content-box {
    border-radius: 30px;
    background: rgba(255, 255, 255, 0.05);
    padding: 20px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: border-color 0.8s ease-in-out;
    width: 65%;
    position: relative;
}
.our_works_section .work_box:hover .content-box {
    border-color: rgba(255, 255, 255, 0.59);
}
.our_works_section .work_box .content-box span {
    color: #ff6e0c;
    text-align: center;
    font-family: Inter;
    font-size: 10.656px;
    font-style: normal;
    font-weight: 700;
    line-height: 22px;
    text-transform: uppercase;
    display: flex;
    width: 93.2px;
    height: 28px;
    padding: 5.5px 11.684px 4.5px 12px;
    justify-content: center;
    align-items: center;
    border-radius: 39px;
    background: rgba(255, 255, 255, 0.1);
}
.our_works_section .work_box .content-box h3 {
    color: #fff;
    font-family: Unbounded;
    font-size: 20px;
    font-style: normal;
    font-weight: 400;
    line-height: 26px;
    letter-spacing: -0.1px;
    margin-top: 1rem;
}
.our_works_section .work_box .content-box p {
    color: #fff;
    font-family: "Satoshi";
    font-size: 14.625px;
    font-style: normal;
    font-weight: 400;
    line-height: 24px;
    opacity: 0.8;
}
.our_works_section .work_box .content-box .boxes {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 4rem;
    position: absolute;
    bottom: 0;
    width: 77%;
    left: 20px;
    /* right: 25px; */
}
.our_works_section .work_box {
    margin-bottom: 3rem;
}
.our_works_section .work_box .content-box .boxes .box h4 {
    color: #ff6e0c;
    font-family: Unbounded;
    font-size: 50px;
    font-style: normal;
    font-weight: 600;
    line-height: 40px;
    letter-spacing: -2.5px;
}

.our_works_section .work_box .content-box .boxes .box p {
    color: #fff;
    font-family: Satoshi;
    font-size: 14.5px;
    font-style: normal;
    font-weight: 400;
    line-height: 24px;
    opacity: 0.8;
}
@media (max-width: 991px) {
    .our_works_section .work_box a {
        flex-direction: column;
        width: 100%;
    }
    .our_works_section .work_box .image_box {
        width: 100%;
    }
    .our_works_section .work_box .content-box {
        width: 100%;
    }
    .our_works_section .work_box .content-box .boxes {
        position: relative;
        bottom: 0;
        width: 100%;
        left: 0;
        /* right: 25px; */
        margin-top: 3rem;
    }
    .our_works_section .work_box .content-box .boxes .box h4 {
        font-size: 40px;
    }
    .our_works_section .work_box .image_box img {
        height: 340px;
    }
}
@media (max-width: 767px) {
    .services_heading_box_sec h1 {
        font-size: 40px;
    }
    .our_works_section {
        margin-top: 40px;
    }
    .our_works_section .work_box {
        margin-bottom: 2rem !important;
    }
    .our_works_section .right_sec {
        padding-top: 0rem !important;
    }
    .section_box_product_detail .subscribe_box_sec .bot_sub {
        flex-direction: column;
        gap: 0.2rem;
    }
    .section_box_product_detail .subscribe_box_sec .bot_sub .sub_social ul {
        padding: 14px 76px;
        text-align: center;
    }
}
