@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700&display=swap');

/* @import url('https://fonts.cdnfonts.com/css/segoe-ui-4?family=Segoe+UI+Bold&display=swap'); */
* {
    font-family: "Segoe UI", "Plus Jakarta Sans", sans-serif !important;
    /* font-weight:700 !important; */
}

.rgb-portfolio-container {
    font-family: "Plus Jakarta Sans", sans-serif;
    max-width: 1216px;
    margin: 0 auto;
    padding: 60px 0px;
    background-color: #FFFFFF;
    color: #18181B;
}

.rgb-filter-btn {
    padding: 10px 24px;
    border-radius: 9999px;
    border: none;
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.2s;
    background-color: #F4F4F5;
    color: #71717A;
}

.rgb-filter-btn:hover:not(.active) {
    background-color: #E4E4E7;
}

/* Grid */
.rgb-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(296px, 33.333%));
    gap: 32px;
}

/* Card */
.rgb-card {
    background: white;
    border-radius: 32px;
    overflow: hidden;
    border: 1px solid #F4F4F5;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.rgb-card:hover {
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.05);
    transform: translateY(-4px);
}

.rgb-card-header {
    height: 240px;
    background: linear-gradient(to bottom, #FEF9C3, #FFFBEB);
    display: flex;
    align-items: center;
    justify-content: center;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
}

.rgb-initial-box {
    width: 64px;
    height: 64px;
    background: white;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    font-weight: 700;
    color: #FACC15;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05);
}

.rgb-card-body {
    padding: 24px;
}

.rgb-tags {
    display: flex;
    gap: 8px;
    margin-bottom: 12px;
}

.rgb-tag {
    padding: 4px 12px;
    font-size: 12px;
    font-weight: 600;
}

.rgb-tag-yellow {
    background-color: #FCF3D8 !important;
    color: #EAB108 !important;
    font-size: 12px !important;
    padding: 4px 8px !important;
    border-radius: 20px;
    line-height: 1.25rem;
}

.rgb-tag-gray {
    background-color: #F4F4F5;
    color: #71717A;
    border-radius: 20px;
    font-size: 12px !important;
}

.rgb-card-title {
    font-size: 20px;
    font-weight: 700;
    margin: 0 0 8px 0;
    color: #18181B;
}

.rgb-card-text {
    font-size: 14px;
    line-height: 1.6;
    color: #71717A;
    margin-bottom: 16px;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.rgb-card-footer {
    /*     display: flex;
    justify-content: space-between;
    align-items: center; */
    padding-top: 16px;
    border-top: 1px solid #FAFAFA;
}

.rgb-stat {
    font-size: 14px;
    font-weight: 700;
    color: #FACC15;
}

.rgb-link {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 10px;
    gap: 6px;
    font-size: 14px;
    font-weight: 500;
    color: #71717A;
    text-decoration: none;
    transition: color 0.2s;
}

.rgb-link:hover {
    color: #18181B;
}

@media (max-width: 640px) {
    .rgb-grid {
        grid-template-columns: 1fr;
    }
}

/* for blog page */
.blog-wrapper {
    max-width: 1200px;
    margin: 0 auto;

}

.blog-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(300px, 33.333%));
    gap: 32px;
}

.blog-card-link {
    position: absolute;
    inset: 0;
    z-index: 5;
    text-decoration: none;
}

.blog-image,
.blog-content {
    position: relative;
    z-index: 10;
}

/* Card */
.blog-card {
    position: relative;
    background: #ffffff;
    border-radius: 16px;
    border: 1px solid #e5e7eb;
    overflow: hidden;
    transition: box-shadow 0.2s ease, transform 0.2s ease;
}

.blog-card .blog-meta {
    position: absolute;
    bottom: 0;
}

.blog-card * {
    pointer-events: none;
}

.blog-card-link {
    pointer-events: auto;
}

.blog-card:hover {
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    transform: translateY(-2px);
}

.blog-card:hover .blog-title {
    color: #EBB000;

}

/* Image */
.blog-image {
    display: block;
    height: 180px;
    background: #fef3c7;
    position: relative;
    text-decoration: none;
}

/* Badge */
.blog-badge {
    position: absolute;
    top: 16px;
    left: 16px;
    background: #ffffff;
    color: #111827;
    font-size: 12px;
    font-weight: 500;
    padding: 6px 12px;
    border-radius: 999px;
}

/* Content */
.blog-content {
    padding: 24px;
    height: 53%;
}

.blog-title {
    font-size: 1.125rem !important;
    font-family: "Plus Jakarta Sans", sans-serif;
    line-height: 1.4;
    margin: 0 0 12px;
    font-weight: 600;
}

.blog-title a {
    text-decoration: none;
    color: #111827;
}

.blog-title.highlight a {
    color: #f59e0b;
}

.blog-title a:hover {
    text-decoration: underline;
}

.blog-excerpt {
    font-size: 0.875rem !important;
    line-height: 1.6;
    color: #4b5563;
    margin: 0 0 20px;
}

.blog-meta {
    display: flex;
    font-size: 14px;
    gap: 20px;
    margin-top: 20px;
    font-size: 0.75rem !important;
    font-family: "Plus Jakarta Sans", sans-serif;
    font-weight: 600;
    color: black;
    /*justify-content: space-around;*/
}

/* Responsive */
@media (max-width: 1024px) {
    .blog-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .rt_blog_heading {
        margin-top: 100px !important;
    }

    .rgb_feat-category,
    .rgb_feat-meta {
        margin-bottom: 10px !important;
    }

    .rgb_feat-title {
        margin: 0 0 16px !important;
    }

    .rgb_feat-excerpt {
        margin: 0 0 12px !important;
    }

    .case-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .rgb_feat-card {
        grid-template-columns: 1fr !important;
        gap: 20px !important;
    }

    .rgb_feat-media {
        min-height: 260px;
    }

    .rgb_feat-title {
        font-size: 24px;
    }

    .header-btn a {
        display: block !important;
        padding: 10px 15px !important;
        border-radius: 8px !important;
        background-color: #EBB000 !important;
        color: white !important;

    }

    .rt_header_animated {
        display: none !important;
    }
}

@media (max-width: 640px) {
    .blog-grid {
        grid-template-columns: 1fr;
    }

    .blog-image {
        height: 160px;
    }
}

/* for service accordian */
.rgb-faq-section {
    width: 100%;
    margin: 0 auto;
    padding: 40px 20px;
    font-family: "Plus Jakarta Sans", sans-serif;
}

.rgb-faq-title {
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 24px;
}

.rgb-accordion {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.rgb-accordion-item {
    max-width: 1098px;
    border: 1px solid #E8E6E3;
    border-radius: 16px;
    background: #fff;
}

.rgb-accordion-item.active {
    border: 1px solid #EBB000;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.rgb-accordion-header {
    width: 100%;
    padding: 20px 24px;
    background: none;
    border: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 18px;
    font-weight: 600;
    cursor: pointer;
    color: black;
}

.rgb-accordion-header:focus {
    outline: none;
    background: none;
    color: black;
}

.rgb-accordion-header:hover {
    outline: none;
    background: none;
    color: black;
}

.rgb-accordion-body {
    display: none;
    overflow: hidden;
    padding: 0 25px;
    height: 125px;
    transition: max-height 0.35s ease, padding 0.35s ease;
}

.rgb-accordion-item.active .rgb-accordion-body {
    display: block;
    padding: 0 25px 20px;
}


.rgb-accordion-body p {
    color: #555;
    line-height: 1.6;
    margin: 0;
}

/* Chevron Icon */
.rgb-icon {
    width: 14px;
    height: 14px;
    border-right: 2px solid #333;
    border-bottom: 2px solid #333;
    transform: rotate(45deg);
    transition: transform 0.3s ease;
}

.rgb-accordion-item.active .rgb-icon {
    transform: rotate(-135deg);
}

/* case study home page design 02-jan 2026 **/

.case-wrapper {
    max-width: 1300px;
    margin: 0 auto;
    /*     padding: 80px 0px; */
}

.case-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
}

/* Card */
.case-card {
    display: flex;
    flex-direction: column;
    background: rgba(255, 255, 255, 0.04);
    border-radius: 28px;
    text-decoration: none;
    color: inherit;
    overflow: hidden;
    transition: transform 0.25s ease, box-shadow 0.25s ease;
    border: 1px solid #393D3B !important;
}

.case-card:hover {
    /*     transform: translateY(-6px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.4); */
    border: 1px solid #EBB000 !important;
}

.case-card:hover .case-content h3 {
    color: #EBB000;
}

.case-card:hover .case-link:after {
    transform: translateX(4px);
}

/* Image */
.case-image {
    position: relative;
    padding: 24px;
    background: #e9eef3;
}

.image-placeholder {
    height: 220px;
    border-radius: 14px;
    background: linear-gradient(135deg, #cfd6dc, #eef2f6);
}

/* Badge */
.case-badge {
    position: absolute;
    top: 20px;
    left: 20px;
    background: #f4b000;
    color: white;
    font-size: 12px;
    font-weight: 600;
    padding: 6px 12px;
    border-radius: 999px;
}

/* Content */
.case-content {
    padding: 24px;
}

.case-metric {
    /*     display: flex; */
    align-items: baseline;
    text-align: left !important;
    gap: .5rem;
    color: #f4b000;
    font-size: 14px;
    margin-bottom: 16px;
}

.case-metric .text-1 {
    font-size: 1.5rem;
    color: #f4b000;
    font-weight: 700;
}

.case-metric span {
    color: #cbd5d1;
}

.case-metric p {
    color: #B7C0BC;
}

.arrow {
    font-size: 18px;
}

.case-content h3 {
    font-size: 20px;
    margin: 0 0 12px;
    text-align: left;
}

.case-link::after .case-content p {
    text-align: left;
    font-size: 14px;
    line-height: 1.6;
    color: #b7c0bc;
    margin: 0 0 18px;
}

.case-link {
    text-align: left;
    margin-top: 25px;
    display: block;
    font-size: 14px;
    font-weight: 600;
    color: #f4b000;
}

.case-link::after {
    content: "";
    width: 16px;
    height: 16px;
    display: inline-block;
    margin-left: 6px;
    vertical-align: middle;
    background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23F4B000' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M5 12h14'/%3E%3Cpath d='m12 5 7 7-7 7'/%3E%3C/svg%3E") no-repeat center;
}

/* Footer Button */
.case-footer {
    text-align: center;
    margin-top: 48px;
}

.all-cases-btn {
    position: relative;
}

.rt_case-footer::after {
    content: "";
    position: absolute;
    bottom: 18px;
    width: 16px;
    height: 16px;
    right: 5px;
    display: inline-block;
    margin-left: 6px;
    vertical-align: middle;
    background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23ffffff' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M5 12h14'/%3E%3Cpath d='m12 5 7 7-7 7'/%3E%3C/svg%3E") no-repeat center;
}

.all-cases-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 28px;
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: #ffffff;
    text-decoration: none;
    transition: background 0.2s ease;
}

.all-cases-btn:hover {
    background: #2E3331;
    color: #ffffff;
}

@media (max-width: 640px) {
    .case-grid {
        grid-template-columns: 1fr;
    }

    .image-placeholder {
        height: 200px;
    }
}


/* for single blog featured */
.rgb_feat-card {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 35px;
    max-width: 1200px;
    margin: 40px auto;
    background: #ffffff;
    border: 1px solid #e5e7eb;
    border-radius: 24px;
    text-decoration: none;
    color: inherit;
    transition: box-shadow 0.25s ease, transform 0.25s ease;
}

.rgb_feat-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
}

/* Left media area */
.rgb_feat-media {
    position: relative;
    border-radius: 20px 0 0 20px;
    /* top-left, top-right, bottom-right, bottom-left */
    background: linear-gradient(135deg, #fff2c6, #fde7a4);
}

/* Featured badge */
.rgb_feat-featured-badge {
    position: absolute;
    top: 20px;
    left: 20px;
    background: #f4b000;
    color: white;
    font-size: 0.75rem;
    font-weight: 600;
    padding: 6px 16px;
    border-radius: 999px;
}

/* Content */
.rgb_feat-content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 16px;
}

.rgb_feat-category {
    display: inline-block;
    width: fit-content;
    background: #fff7dc;
    color: #F4B000;
    font-size: 12px;
    font-weight: 500;
    padding: 4px 12px;
    border-radius: 999px;
    margin-bottom: 16px;
}

.rgb_feat-title {
    font-size: 30px;
    font-weight: 700;
    line-height: 1.3;
    margin: 0 0 16px;
    color: #111827;
}

.rgb_feat-excerpt {
    font-size: 16px;
    line-height: 1.7;
    color: #6D7875;
    margin: 0 0 24px;
}

.rgb_feat-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    font-size: 14px;
    color: #6D7875;
    margin-bottom: 20px;
}

.rgb_feat-dot {
    margin: 0 2px;
}

.rgb_feat-link {
    font-size: 16px;
    font-weight: 600;
    color: #f4b000;
}

@media (max-width: 640px) {
    .rgb_feat-card {
        padding: 24px;
    }

    .rgb_feat-media {
        min-height: 220px;
        background-position: 40px !important;
    }

    .title-2 h2 {
        font-size: 2.5rem !important;
    }
}

/* rgb home page settings 05-01-2025 */
.elementor-element.elementor-element-093f32a.e-con-full.e-flex.e-con.e-child {
    max-width: 900px;
}

.rgb_accordian_cl .e-n-accordion-item {
    border: 1px solid #e8e6e3;
    border-radius: 20px;
    margin: 20px auto;
    padding: 10px 20px;
}

.rgb_accordian_cl .e-n-accordion-item[open] {
    border-color: #EBB000;
}

/* blog page css single 05-01-2025 */
.blog-hero {
    margin-top: -20px;
    background: #fff9ee;
    padding: 114px 20px 40px;
}

.portfolio-hero {
    margin-top: -25px;
    background: #fff9ee;
    padding: 150px 24px 40px;
    width: 100% !important;
}

.portfolio-hero-inner {
    max-width: 1220px;
    margin: 0 auto;
}

.blog-hero-inner {
    max-width: 1275px;
    margin: 0 auto;
    padding: 0 32px;
}

.breadcrumb {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 24px;
    font-size: 16px !important;
}

.back-link {
    text-decoration: none;
    color: #6D7875;
    font-size: 16px;
}

.blog-title {
    font-size: 44px;
    line-height: 1.2;
    font-weight: 700;
    max-width: 800px;
    margin-bottom: 20px;
}

.blog-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    font-size: 14px;
    color: #6D7875;
}

.content-wrapper-blogs {
    margin-top: 30px;
    padding: 0 20px 48px;
}

section.exert-wrapper-blogs {
    max-width: 1275px;
    margin: 0 auto;
    padding: 0 32px;
}

.exert-wrapper-blogs p {
    color: #6D7875 !important;
    padding-bottom: 10px;
}

.exert-wrapper-blogs h2 {
    padding: 8px 0 0px 0;
    font-size: 24px !important;
    font-weight: 700;
}

.content-card-blogs {
    padding: 0 32px;
    margin-top: 30px;
    max-width: 1216px;
    height: 420px;
    margin: 0 auto;
    background: linear-gradient(135deg, #fff3c4, #ffefb0);
    border-radius: 24px;
}

.related-list-port a:hover {
    transform: translateY(-6px);
    box-shadow: 0 4px 5px rgba(0, 0, 0, 0.1);
    background-color: #fff;
}

.related-list-port a:hover .rgb_link {
    color: #EBB000;
}

.related-list-port a:hover svg {
    color: #EBB000 !important;
}

@media (max-width: 768px) {
    .blog-hero-inner {
        padding: 0 24px;
    }

    .blog-title {
        font-size: 32px;
    }

    .content-card-blogs {
        padding: 0 24px;
    }

    .content-card-blogs {
        height: 300px;
    }

    .portfolio-hero-inner {
        width: 100%;
    }

    section.exert-wrapper-blogs {
        padding: 0 24px;
    }

    .content-wrapper-portfolio,
    .content-reduc-text {
        padding: 0 16px !important;
    }

    .exert-wrapper-portfolio {
        margin: 0 6px !important;
    }

    .portfolio-hero {
        padding: 150px 16px 40px !important;
    }

    .related-list-port {
        display: flex !important;
        flex-direction: column !important;
        gap: 20px;
    }

    .blog-wrapper {
        margin-top: 64px !important;
    }
}

.related-list-port {
    display: flex !important;
    flex-direction: row;
    gap: 20px !important;
}

.related-articles {
    padding: 80px 20px 120px;
    background: #ffffff;
}

.related-inner {
    max-width: 1275px;
    padding: 0 32px;
    margin: 0 auto;
}

.related-inner-port {
    max-width: 1220px;
    margin: 0 auto;
}

.related-list-port a {
    max-width: 390px;
}

.related-title {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 32px;
}

.related-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.related-list-port {
    display: flex;
    flex-direction: row;
    gap: 20px;
}

.related-item {
    display: flex;
    flex-direction: column;
    border: 1px solid #E8E6E3;
    width: 100%;
    padding: 24px;
    border-radius: 16px;
    background: #fafafa;
    text-decoration: none;
    transition: background 0.25s ease, transform 0.25s ease;
}

.rgb_link {
    color: #6D7875;
    font-size: 14px;
    font-family: "Plus Jakarta Sans", sans-serif;
}

.related-list-port svg {
    color: #6D7875;
}

.related-list {
    transition: transform .3s ease;
}

.related-item:hover {
    background: #f5f5f5;
}

.related-item:hover .related-post-title {
    color: #F4B000 !important;
}

.related-item:hover .related-arrow {
    transform: translateX(4px);
}

.related-text {
    max-width: 80%;
}

.related-cat {
    display: block;
    font-size: 13px;
    font-weight: 600;
    color: #f5a623;
    margin-bottom: 6px;
}

.related-post-title {
    font-size: 16px;
    font-weight: 600;
    color: #111;
}

.related-arrow {
    font-size: 20px !important;
    color: #777;
}

.content-card-portfolio {
    margin-top: 30px !important;
    max-width: 1216px;
    height: 800px;
    margin: 0 auto;
    border-radius: 25px;
}

/* Mobile */
@media (max-width: 768px) {

    .related-item {
        padding: 20px;
    }

    .related-inner {
        padding: 0 24px;
    }

    .content-card-portfolio {
        width: 100%;
        padding: 0 32px !important;
        height:320px;
    }

    .related-post-title {
        font-size: 16px;
    }
}

/* Shared */
.exert-wrapper-portfolio {
    max-width: 1216px;
    margin: 2rem auto;
    /*         padding: 10px 0px; */
}

.headsportfolio {
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 36px;
}

/* -----------------------------
   KEY FEATURES (LIGHT)
------------------------------ */

.key-features {
    background: #ffffff;
}

.features-list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px 24px;
    list-style: none;
    padding: 0;
    margin: 0;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 20px 24px;
    border-radius: 16px;
    background: #ffffff;
    border: 1px solid #e6e6e6;
}

.feature-icon {
    min-width: 22px;
    min-height: 22px;
    border-radius: 50%;
    border: 2px solid #f5b000;
    position: relative;
}

.feature-icon::after {
    content: '';
    position: absolute;
    left: 5px;
    top: 2px;
    width: 6px;
    height: 10px;
    border: solid #f5b000;
    border-width: 0 2px 2px 0;
    transform: rotate(45deg);
}

.feature-text {
    font-size: 16px;
    font-weight: 500;
    color: #111;
}

/* -----------------------------
   OUTCOMES & IMPACT (DARK)
------------------------------ */

.outcomes-impact {
    padding: 128px 0;
    width: 100%;
    background: radial-gradient(circle at center,
            #2d3330 0%,
            #0f1412 60%,
            #000000 100%);
}

.headsportfolio-dark {
    color: #ffffff;
}

.impact-list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 22px 26px;
    list-style: none;
    padding: 0;
    margin: 0;
}

.impact-item {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 22px 26px;
    border-radius: 16px;
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(6px);
}

.impact-icon {
    font-size: 20px;
    font-weight: 600;
    color: #f5b000;
    width: 50px;
}

.impact-text {
    font-size: 16px;
    font-weight: 500;
    color: #ffffff;
}

/* -----------------------------
   RESPONSIVE
------------------------------ */

@media (max-width: 768px) {

    .features-list,
    .impact-list {
        grid-template-columns: 1fr;
    }

    .feature-item,
    .impact-item {
        padding: 18px 20px;
    }
}

.content-card-reductportfolio {
    background: #ebb000;
    max-width: 1216px;
    margin: 50px auto;
    text-align: center;
    padding: 35px 15px;
    border-radius: 25px;
    color: white;
    /* font-size: 2.25rem; */
}

.content-card-reductportfolio p {
    font-size: 32px;
    font-weight: 700;
}

h3.reducttext {
    font-size: 24px;
    font-weight: 700;
}

/* 09-01-2026 custom file upload */
.elementor-field-group-rt_file_upload {
    position: relative;
    width: 100%;
    max-width: 600px;
}

.elementor-field-group-rt_file_upload::before {
    content: 'Upload File *';
    font-size: 14px;
    font-family: "Plus Jakarta Sans", sans-serif;
    font-weight: 600;
}

.elementor-field-group-rt_file_upload input[type="file"] {
    position: absolute;
    inset: 0;
    opacity: 0;
    cursor: pointer;
    z-index: 2;
}

.elementor-field-group-rt_file_upload label {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 160px;
    border: 1px dashed #E8E6E3;
    border-radius: 14px;
    cursor: pointer;
    text-align: center;
    font-size: 16px;
    font-weight: 600;
    color: #000;
    transition: border-color 0.3s;
    margin-top: 8px;
}

.elementor-field-group-rt_file_upload label::before {
    content: "";
    width: 40px;
    height: 40px;
    margin-bottom: 10px;
    background: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' fill='none' stroke='%23777' stroke-width='1.8' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M12 16V7M12 7l-4 4M12 7l4 4M4 17v2a1 1 0 001 1h14a1 1 0 001-1v-2'/%3E%3C/svg%3E") no-repeat center;
}

.elementor-field-group-rt_file_upload label::after {
    content: "PDF, DOC, or DOCX (max 5MB)";
    font-size: 14px;
    font-weight: 400;
    color: #6D7875;
    margin-top: 10px;
}

.elementor-field-group-rt_file_upload .elementor-field-label {
    width: 100% !important;
}

.elementor-field-group-rt_file_upload input[type="file"] {
    z-index: 1;
}

.elementor-field-group-rt_file_upload label {
    position: relative;
    z-index: 2;/
}

.elementor-field-group-rt_file_upload label:hover {
    border-color: #EBB000;
    border-width: 1px;
}

@media (max-width: 1093px) {
    .rt_header-btn .elementor-button {
        padding: 14px 10px 14px 10px ! important;
    }

    .rt_nav_menu ul li a {
        padding: 1rem !important;
    }
}

@media (max-width: 1036px) {
    .rt_header-btn .elementor-button {
        padding: 13px 10px 13px 10px ! important;
    }
}

@media (max-width: 1040px) {
    .rt_nav_menu nav ul li a {
        padding: 14px !important;
    }
}

.rt_solution_contianer p {
    margin-bottom: 16px;
}

.rt_nav_menu_open nav ul .elementor-item-active {
    background-color: transparent !important;
    color: #4C5055 !important;
}

.rt_nav_menu_open nav ul {
    padding: 0 18px !important;
    ;
}

.header-btn a {
    display: none !important;
}

/*  10/01/2026 changes in the blog page*/
.blog-wrapper {
    position: relative;
    text-align: center;
    margin-top: 128px;
}

.blog-wrapper {
    text-align: center;
    margin-top: 128px;
}

.rt_blog_heading {
    margin-top: 128px !important;
    font-weight: 600 !important;
    font-size: 12px !important;
    background-color: #FDF7E5 !important;
    margin-bottom: 16px !important;
    display: inline-block !important;
    color: #EBB415 !important;
    padding: 0.375rem 1rem;
    border-radius: 12px;
    font-family: "Plus Jakarta Sans", sans-serif;
}

.rt_blog_heading-2 {
    font-size: 48px !important;
    font-weight: 700 !important;
    /*         font-family: "Plus Jakarta Sans", sans-serif; */
    margin: 0 !important;
    color: #171C1A !important;
}

.rt_blog_paragraph {
    font-size: 16px !important;
    font-family: "Plus Jakarta Sans", sans-serif;
    margin-top: 16px !important;
    margin-bottom: 80px !important;
    color: #6D7886 !important;
}

/*  12-01-2026 */
@media (max-width:887px) {
    .rt_blog_heading {
        margin-top: 64px !important;
    }

    .rgb_feat-excerpt {
        font-size: 12px !important;
        margin-bottom: 10px !important;
    }

    .rgb_feat-title {
        font-size: 18px !important;
        margin: 0 0 10px !important;
    }

    .rgb_feat-excerpt {
        margin-bottom: 6px !important;
    }

    .title-1 h2 {
        font-size: 3rem !important;
    }
}

@media (max-width:1024px) {
    .rgb_feat-card {
        grid-template-columns: 1fr !important;
        gap: 20px !important;
    }

    .header-btn a {
        display: block !important;
    }

    .rt_nav_menu_open nav ul {
        padding: 10px !important;
    }

    .content-wrapper-portfolio,
    .content-reduc-text {
        padding: 0 24px !important;
    }

    .exert-wrapper-portfolio {
        margin: 0 24px !important;
    }

    .rt_blog_heading-2 {
        font-size: 36px !important;
    }
}

.rgb_feat-media {
    height: 500px !important;
}

article.blog-card {
    text-align: left !important;
}

.rt_nav_menu_open nav {
    top: 38px !important;
}

.rt_header {
    padding-top: 10px !important;
    padding-bottom: 10px !important;
}

.main_card {
    position: relative;
}

.card {
    position: absolute;
    animation: floatVertical 3s ease-in-out infinite;
}

.card.top {
    animation-delay: 0s;
}

.card.right {
    animation-delay: 0.6s;
}

.card.left {
    animation-delay: 1.2s;
}

@keyframes floatVertical {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-10px);
    }
}

.rt_service_class .elementor-item-active,
.rt_nav_menu_open .elementor-item-active {
    background-color: #FFFFFF !important;
    color: #33373d !important;
}

.portfolio-hero-inner .blog-title {
    font-size: 48px !important;
    font-weight: 700 !important;
    /*         font-family: "Plus Jakarta Sans", sans-serif; */
}

.content-wrapper-portfolio,
.content-reduc-text {
    padding: 0 32px !important;
}

.elementor-element-44790f5 {
    padding: 0 !important;
}

@media (max-width:768px) {
    .portfolio-hero-inner .blog-title {
        font-size: 36px !important;
    }

    .blog-hero .blog-title {
        font-size: 36px !important;
    }

    .rt_blog_heading-2 {
        font-size: 30px !important;
    }
}

.rgb-filters {
    margin-bottom: 48px !important;
    display: flex;
    flex-wrap: wrap;
    gap: .75rem;
    justify-content: center;
}

.rgb-filters button {
    background-color: #F6F5F4 !important;
    border-radius: 20px !important;
    padding: 8px 16px !important;
    color: #6D7875 !important;
    border: none !important;
    font-size: 0.875rem !important;
    font-weight: 500;
}

.rgb-filter-btn.active {
    background-color: #EBB000 !important;
    color: white !important;
}

/*  14/01/2026 */
.blog-hero-inner .tag {
    font-size: 0.875rem !important;
    color: #EBB104 !important;
    font-weight: 500 !important;
    background: #FDF3D6;
    padding: 6px 14px;
    border-radius: 999px;
    font-weight: 500;
}

@media (min-width:769px) {
    .blog-hero .blog-title {
        font-size: 48px !important;
        font-weight: 700 !important;
        letter-spacing: -0.025em;
        line-height: 1 !important;
        color: #171C1A !important;
    }
}

@media (min-width:1024px) {
    .rt_values_card {
        max-width: 286px !important;
    }
}

.rt_service_svg p::after {
    content: "";
    width: 20px;
    height: 20px;
    display: inline-block;
    margin-left: 6px;
    vertical-align: middle;
    background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23F4B000' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M5 12h14'/%3E%3Cpath d='m12 5 7 7-7 7'/%3E%3C/svg%3E") no-repeat center;
}

.rt_service_svg p {
    transition: transform .2s ease;
}

.rt_service_main_container:hover .rt_service_svg p {
    transform: translateX(-4px);
}

@media (max-width:1024px) {
    .rgb-grid {
        display: grid;
        grid-template-columns: repeat(2, minmax(345px, 50%));
        gap: 32px;
    }
}

@media (max-width:768px) {
    .rgb-grid {
        display: grid;
        grid-template-columns: repeat(1, minmax(345px, 100%));
        gap: 32px;
    }

    .rgb_feat-link {
        font-size: 14px !important;
    }
}

.rgb_feat-link::after {
    content: "";
    width: 20px;
    height: 20px;
    display: inline-block;
    margin-left: 6px;
    vertical-align: middle;
    background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23F4B000' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M5 12h14'/%3E%3Cpath d='m12 5 7 7-7 7'/%3E%3C/svg%3E") no-repeat center;
}

.rgb_feat-card:hover .rgb_feat-link::after {
    transform: translateX(4px);
}

.rgb_feat-card:hover .rgb_feat-title {
    color: #F4B000;
}

label[for="form-field-name"]::after,
label[for="form-field-email"]::after,
label[for="form-field-field_3dfd2d0"]::after {
    content: ' *';
}

form ::placeholder {
    font-weight: 400;
}

label[for="form-field-rt_file_upload"] {
    font-weight: 500 !important;
    font-size: 16px !important;
}

.rt_service_class ul {
    border: 1px solid #E8E6E3 !important;
    border-radius: 15px !important;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.rt_service_class ul li a:hover {
    background-color: #F2F0ED;
    color: black;
}

.rt_service_class ul li a {
    font-size: 14px !important;
    font-weight: 400 !important;
    font-family: "Plus Jakarta Sans", sans-serif;
}

.rt_service_class ul li:last-child a:hover {
    border-radius: 0 0 12px 12px !important;
}

.rt_quick-link div li:not(:first-child) {
    margin-top: 12px !important;
}

@media (max-width:1024px) {

    .rt_title-1 h1,
    .rt_title-1 h1 span,
    .rt_title-1 h2 {
        font-size: 48px !important;
    }

    .rt_title-2 h2,
    .rt_solution_contianer h2 {
        font-size: 36px !important;
    }
}

@media (max-width:768px) {

    .rt_title-1 h1,
    .rt_title-1 h1 span,
    .rt_title-1 h2 {
        font-size: 36px !important;
    }

    .rt_title-2 h2,
    .rt_solution_contianer h2 {
        font-size: 30px !important;
    }

    .rt_para,
    .rt_title-2 p {
        font-size: 18px !important;
    }

    .rt_testimonial-para .elementor-testimonial-content {
        font-size: 20px !important;
    }
}

/* Slider 17/03/2026 */
.simple-slider {
    position: relative;
    overflow: hidden;
    width: 100%;
}

.simple-slider-track {
    display: flex;
    transition: transform 0.4s ease;
}

.simple-slider img {
    width: 50%;
    /* 2 slides visible */
    flex-shrink: 0;
    padding: 5px;
    border-radius: 10px;
}

/* Buttons */
.slider-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(0, 0, 0, 0.5);
    color: #fff;
    border: none;
    padding: 10px;
    cursor: pointer;
    z-index: 10;
}

.slider-prev {
    left: 10px;
}

.slider-next {
    right: 10px;
}

.case-project-link a {
    color: blue;
}

/* Home Portfolio card */
.case-image div {
    background-size: cover;
}

/*  19-03-2026 scroll header background color and color of text*/
/* header .rt_header {
    transition: all 0.3s ease;
}

header .rt_header.dark {
    background-color: red !important;
}

header  .rt_header.dark a {
    color:white !important;
}

header .rt_header.light {
    background-color: green !important;
}

header .rt_header.light a{
    color: red !important;
} */
.rt_challenges_accordian div {
    margin: 16px 0 !important;
}

.rt_challenges_accordian .softlite-dynamic-list-item-inner {
    border: 1px solid #393D3C !important;
}

.rt_challenges_accordian .softlite-dynamic-list-item-text-1 {
    font-weight: 400 !important;
}

.rt-solution-card:hover .softlite-dynamic-card-box-text-3 svg {
    transform: translateX(4px);
}

.rt-process-card .softlite-dynamic-card-box-background-color-2 {
    border: 1px solid #E8E6E3 !important;
}

.pattern-dots {
    background-image: radial-gradient(circle, #2C302E 1px, transparent 0);
    background-size: 30px 30px;
    background-repeat: repeat;
}

.pattern-dots-1 {
    background-image: radial-gradient(circle, #2C302E 1px, transparent 0);
    background-size: 20px 20px;
    background-repeat: repeat;
}

/* Your card */
.case-content {
    position: relative;
    background-color: #232826;
    /* or whatever card BG you want */
}

.case-grid a {
    background-color: #232826;
}

.page-id-10 .blog-wrapper {
    margin-top: 0 !important;
}

/* normal state */


/* hover state */
.rt_view_article {
    position: relative;
}

.rt_view_article :hover::before {
    content: "";
    position: absolute;
    left: 55.2%;
    bottom: 16px;
    height: 16px;
    width: 16px;
    background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23ffffff' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M5 12h14'/%3E%3Cpath d='m12 5 7 7-7 7'/%3E%3C/svg%3E") no-repeat center;
}


.page-id-3211 .rt-anchor a,
.page-id-3212 .rt-anchor a {
    color: blue;
}

.rgb_feat-media {
    background-position: 30px !important;
}

.rt-api-ux .softlite-dynamic-card-box-text-2:before {
    content: 'Learn More';
    position: absolute;
    margin-bottom: 16px;
    bottom: 0;
    font-size: 16px;
    color: #EBB000;
    font-family: "Plus Jakarta Sans", sans-serif;
    font-weight: 500;
    -webkit-text-fill-color: #EBB000 !important;
}

.rt-api-ux .softlite-dynamic-card-box-text-2:after {
    content: "";
    position: absolute;
    left: 180px;
    bottom: 20px;
    height: 16px;
    width: 16px;
    background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23F4B000' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M5 12h14'/%3E%3Cpath d='m12 5 7 7-7 7'/%3E%3C/svg%3E") no-repeat center;
}

.rt-api-ux:hover .softlite-dynamic-card-box-text-2:after {
    transform: translateX(4px);
}

@media (max-width:768px) {
    .rt-api-ux .softlite-dynamic-card-box-text-2:after {
        bottom: 5px !important;
    }

    .rt-api-ux .softlite-dynamic-card-box-text-2:before {
        margin-bottom: 4px !important;
    }

    .related-articles {
        padding: 40px 20px 80px;
    }

    .outcomes-impact {
        padding: 80px 0 !important;
    }
}

.header-btn a,
.rt_header-btn a {
    font-weight: 600 !important;
}

@media(max-width:475px) {
    .content-card-blogs {
        padding: 0 16px;
    }

    section.exert-wrapper-blogs {
        padding: 0 16px;
    }

    .related-inner {
        padding: 0 16px;
    }

    .blog-hero-inner {
        padding: 0 16px;
    }
    .rt-carer-cont{
      grid-template-columns: repeat(1, 1fr) !important ;
    }
}

.rt_icon svg {
    height: 16px !important;
    width: 16px !important;
}

.impact-icon::after {
    content: "";
    position: absolute;
    left: 25px;
    bottom: 48px;
    height: 20px;
    width: 20px;
    background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23F4B000' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M5 12h14'/%3E%3Cpath d='m12 5 7 7-7 7'/%3E%3C/svg%3E") no-repeat center;
}

.related-post-title::after {
    content: "";
    position: absolute;
    display: inline-block;
    right: 20%;
    height: 20px;
    width: 20px;
    background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23909896' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M5 12h14'/%3E%3Cpath d='m12 5 7 7-7 7'/%3E%3C/svg%3E") no-repeat center;
}

.rt_header-btn a {
    padding: 8px 20px !important;
    border-radius: 12px !important;
}

.rt_header-btn a span {
    line-height: 1.92 !important;
}

.rt-view-btn:after {
    content: "";
    width: 16px;
    height: 16px;
    display: inline-block;
    position: absolute;
    right: 38px;
    top: 36%;
    vertical-align: middle;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23000000' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M5 12h14'/%3E%3Cpath d='m12 5 7 7-7 7'/%3E%3C/svg%3E");
}

.rt_form input {
    padding: 8px 12px !important;
}

.rt_form label {
    line-height: 1.5rem !important;
}

.rt_process .softlite-dynamic-list-item-inner {
    border: 1px solid #393D3C !important;
}

@media(min-width:1024px)and (max-width:1068px) {

    .rt_book_btn a,
    .rt-view-btn a {
        padding: 16px 40px !important;
        font-size: 16px !important;
    }

    .rt-view-btn:after {
        right: 24px !important;
    }
}

.rt_case-footer {
    display: inline-block !important;
    position: relative !important;
}

#form-field-field_3dfd2d0:focus,
#form-field-message:focus,
#form-field-field_3dfd2d0:focus,
#form-field-field_cf547ba:focus,
#form-field-name:focus,
#form-field-field_89123b1:focus,
#form-field-field_cf6359d:focus,
#form-field-field_152844a:focus,
#form-field-email:focus {
    border: 2px solid #E8E6E3 !important;
    box-shadow: 0 0 0 3px #ffffff, 0 0 0 5px #ebb000 !important;
    outline: none !important;
    /* Recommended to ensure the effect is clean */
}

.rgb-filters {
    display: none;
}

@media(min-width:1024px) {
    .page-id-35 .rt_nav_menu ul li a {
        color: #B6B8B7 !important;
    }
}

.rt_team-img {
    margin: auto;
}

.rt_team-img img {
    object-position: top;
    height: 320px !important;
}

.rt-team-cont>div,
.rt-team-cont1>div {
    height: 100% !important;
}

.rt_team-img {
    max-width: 230px !important;
    min-width: 180px !important;
}

.rt_team-img .eszlsoy5,
.rt_team-img .rozf2yj0,
.rt_team-img .vtkfhkia,
.rt_team-img .b12h0dfr {
    padding: 16px !important;
}

.rt_team-img .elementor-widget-container {
    width: 100% !important;
    height: 340px !important;
}
@media(max-width:1024px) {
    .rgb_feat-media{
        background-position: -10px ;
    }
}
@media(max-width:1024px) {
    .rgb_feat-media {
        border-radius: 10px 10px 0 0 !important;
        height: 260px !important;
    }
}
@media(min-width:768px) {
    .rgb_feat-media {
       min-height: 320px;
    }
}
.rt_team-img .ti14br93{
    transform: scale(1.4);
}
.rt_title-2 a{
    color: #EBB000 !important;
}
@media(max-width:400px) {
    .rgb-tag-yellow ,.rgb-tag-gray{
       width: fit-content !important;
    }
    .rgb-tags{
        flex-direction: column !important;
    }
    .rgb-grid {
        grid-template-columns: repeat(1, 1fr) !important ;
    }
}