.rs-about-quote {
    position: relative;
    padding: 10px 0 80px;
    overflow: hidden;
    background:
        radial-gradient(circle at 14% 12%, rgba(255, 255, 255, 0.96), transparent 28%),
        radial-gradient(circle at 78% 18%, rgba(96, 170, 255, 0.2), transparent 34%),
        radial-gradient(circle at 50% 100%, rgba(13, 110, 253, 0.08), transparent 34%),
        linear-gradient(135deg, #f8fbff 0%, #edf6ff 46%, #f9fcff 100%);
}

.rs-about-quote .container {
    max-width: 1400px;
}

.rs-quote-card {
    position: relative;
    min-height: 190px;
    padding: 42px 52px;
    display: flex;
    align-items: center;
    gap: 34px;
    overflow: hidden;
    border-radius: 24px;
    background:
        linear-gradient(135deg, rgba(255, 255, 255, 0.72), rgba(235, 247, 255, 0.48));
    border: 1px solid rgba(255, 255, 255, 0.9);
    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.82),
        0 24px 70px rgba(31, 88, 160, 0.12);
    backdrop-filter: blur(22px);
    -webkit-backdrop-filter: blur(22px);
}

.rs-quote-card::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 10% 0%, rgba(255, 255, 255, 0.7), transparent 30%),
        radial-gradient(circle at 88% 18%, rgba(13, 110, 253, 0.12), transparent 34%),
        linear-gradient(120deg, rgba(255, 255, 255, 0.35), transparent 48%);
    pointer-events: none;
}

.rs-quote-icon {
    position: relative;
    z-index: 2;
    color: rgba(13, 110, 253, 0.28);
    font-size: 58px;
    animation: quoteFloat 4.8s ease-in-out infinite;
}

.rs-quote-content {
    position: relative;
    z-index: 3;
    max-width: 760px;
}

.rs-quote-content blockquote {
    margin: 0 0 18px;
    font-size: clamp(18px, 2vw, 20px);
    line-height: 1.55;
    font-weight: 900;
    letter-spacing: -0.6px;
    color: var(--color1);
}

.rs-quote-content p {
    margin: 0;
    font-size: 15px;
    font-weight: 800;
    color: var(--color2);
}

.rs-quote-globe {
    position: absolute;
    right: -30px;
    bottom: -95px;
    width: 430px;
    opacity: 0.5;
    pointer-events: none;
}

.rs-quote-globe img {
    width: 100%;
    object-fit: contain;
    animation: globeRotateSoft 8s ease-in-out infinite;
}

.rs-quote-card:hover .rs-quote-icon {
    color: rgba(13, 110, 253, 0.42);
}

.rs-quote-card:hover .rs-quote-globe img {
    transform: scale(1.04);
}

@keyframes quoteFloat {
    0%, 100% {
        transform: translateY(0) scale(1);
    }

    50% {
        transform: translateY(-8px) scale(1.04);
    }
}

@keyframes globeRotateSoft {
    0%, 100% {
        transform: translateY(0) rotate(0deg);
    }

    50% {
        transform: translateY(-8px) rotate(2deg);
    }
}

@media (max-width: 991.98px) {
    .rs-about-quote {
        padding: 0 0 70px;
    }

    .rs-quote-card {
        padding: 38px;
    }

    .rs-quote-globe {
        width: 340px;
        right: -80px;
        bottom: -90px;
    }
}

@media (max-width: 767.98px) {
    .rs-about-quote {
        padding: 0 0 60px;
    }

    .rs-quote-card {
        align-items: flex-start;
        flex-direction: column;
        gap: 18px;
        padding: 32px 26px 130px;
        border-radius: 22px;
    }

    .rs-quote-icon {
        font-size: 46px;
    }

    .rs-quote-globe {
        width: 300px;
        right: 50%;
        bottom: -130px;
        transform: translateX(50%);
        opacity: 0.42;
    }
}

@media (max-width: 575.98px) {
    .rs-quote-card {
        padding: 28px 22px 115px;
    }

    .rs-quote-content blockquote {
        font-size: 20px;
        line-height: 1.55;
    }

    .rs-quote-content p {
        font-size: 14px;
    }

    .rs-quote-globe {
        width: 260px;
        bottom: -115px;
    }
}

/* ACADEMIC & SUMMARY SECTION */
.rs-about-profile-summary {
    position: relative;
    padding: 90px 0;
    overflow: hidden;
    background:
        radial-gradient(circle at 14% 14%, rgba(255, 255, 255, 0.88), transparent 28%),
        radial-gradient(circle at 86% 20%, rgba(92, 170, 255, 0.24), transparent 34%),
        radial-gradient(circle at 48% 82%, rgba(13, 110, 253, 0.08), transparent 32%),
        linear-gradient(135deg, #f8fbff 0%, #edf6ff 48%, #f9fcff 100%);
}

.rs-about-profile-summary::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        linear-gradient(120deg, rgba(255, 255, 255, 0.42), transparent 44%),
        radial-gradient(circle at 100% 0%, rgba(13, 110, 253, 0.1), transparent 36%);
    pointer-events: none;
}

.rs-about-profile-summary .container {
    position: relative;
    z-index: 2;
    max-width: 1400px;
}

.rs-about-glass {
    position: relative;
    height: 100%;
    padding: 36px;
    overflow: hidden;
    border-radius: 24px;
    background:
        linear-gradient(135deg, rgba(255, 255, 255, 0.72), rgba(236, 248, 255, 0.48));
    border: 1px solid rgba(255, 255, 255, 0.9);
    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.8),
        0 24px 70px rgba(31, 88, 160, 0.12);
    backdrop-filter: blur(22px);
    -webkit-backdrop-filter: blur(22px);
    transition: 0.35s ease;
}

.rs-about-glass::before {
    content: "";
    position: absolute;
    inset: 1px;
    z-index: 0;
    border-radius: inherit;
    background:
        radial-gradient(circle at 10% 0%, rgba(255, 255, 255, 0.76), transparent 30%),
        radial-gradient(circle at 96% 16%, rgba(13, 110, 253, 0.1), transparent 32%),
        linear-gradient(120deg, rgba(255, 255, 255, 0.28), transparent 46%);
    pointer-events: none;
}

.rs-about-glass > * {
    position: relative;
    z-index: 1;
}

.rs-about-glass:hover {
    transform: translateY(-8px);
    border-color: rgba(255, 255, 255, 0.98);
    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.88),
        0 34px 90px rgba(31, 88, 160, 0.18);
}

.rs-about-section-head {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 30px;
}

.rs-about-icon {
    width: 42px;
    height: 42px;
    flex: 0 0 42px;
    border-radius: 13px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: var(--color2);
    font-size: 19px;
    background: rgba(255, 255, 255, 0.74);
    border: 1px solid rgba(13, 110, 253, 0.12);
    box-shadow: inset 0 0 24px rgba(13, 110, 253, 0.08);
}

.rs-about-section-head h2 {
    margin: 0;
    font-size: 26px;
    line-height: 1.2;
    font-weight: 900;
    letter-spacing: -0.6px;
    color: var(--color1);
}

.rs-academic-info {
    margin-bottom: 28px;
}

.rs-academic-row {
    display: grid;
    grid-template-columns: 160px 1fr;
    gap: 18px;
    padding: 17px 0;
    border-bottom: 1px solid rgba(13, 110, 253, 0.1);
}

.rs-academic-row:first-child {
    padding-top: 0;
}

.rs-academic-row span {
    font-size: 13px;
    font-weight: 800;
    color: #465a78;
}

.rs-academic-row strong {
    font-size: 14px;
    font-weight: 900;
    color: var(--color1);
}

.rs-academic-stats {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 14px;
}

.rs-stat-box {
    min-height: 112px;
    padding: 20px 12px;
    border-radius: 16px;
    text-align: center;
    background: rgba(255, 255, 255, 0.56);
    border: 1px solid rgba(255, 255, 255, 0.76);
    box-shadow: 0 16px 42px rgba(31, 88, 160, 0.08);
    transition: 0.35s ease;
}

.rs-stat-box:hover {
    transform: translateY(-6px);
    background: rgba(255, 255, 255, 0.86);
    box-shadow: 0 24px 58px rgba(13, 110, 253, 0.15);
}

.rs-stat-box span {
    display: block;
    min-height: 32px;
    margin-bottom: 10px;
    font-size: 11px;
    line-height: 1.35;
    font-weight: 900;
    color: var(--color2);
}

.rs-stat-box strong {
    display: block;
    font-size: 28px;
    line-height: 1;
    font-weight: 950;
    letter-spacing: -1px;
    color: var(--color2);
}

.rs-summary-card p {
    margin: 0 0 18px;
    font-size: 15px;
    line-height: 1.85;
    font-weight: 300;
    color: #30415f;
}

.rs-summary-card p>span {
    font-weight: 900;
    color: var(--color1);
}

.rs-summary-membership {
    margin-top: 26px;
    padding: 20px;
    border-radius: 18px;
    background:
        linear-gradient(135deg, rgba(255, 255, 255, 0.62), rgba(232, 246, 255, 0.42));
    border: 1px solid rgba(255, 255, 255, 0.78);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.72);
}

.rs-membership-head {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 14px;
}

.rs-membership-head i {
    width: 38px;
    height: 38px;
    border-radius: 13px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    background: linear-gradient(135deg, #0d6efd, #0058df);
    box-shadow: 0 12px 28px rgba(13, 110, 253, 0.18);
}

.rs-membership-head h3 {
    margin: 0;
    font-size: 15px;
    font-weight: 950;
    color: var(--color1);
}

.rs-summary-membership ul {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin: 0;
    padding: 0;
    list-style: none;
}

.rs-summary-membership li {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    min-height: 38px;
    padding: 9px 14px;
    border-radius: 999px;
    color: #263657;
    font-size: 12px;
    font-weight: 900;
    background: rgba(255, 255, 255, 0.66);
    border: 1px solid rgba(13, 110, 253, 0.12);
}

.rs-summary-membership li i {
    color: var(--color2);
}

.rs-summary-highlight {
    position: relative;
    min-height: 140px;
    margin-top: 24px;
    padding: 34px 42px 34px 118px;
    overflow: hidden;
    border-radius: 22px;
    background:
        radial-gradient(circle at 8% 12%, rgba(255, 255, 255, 0.86), transparent 30%),
        radial-gradient(circle at 92% 18%, rgba(86, 168, 255, 0.22), transparent 34%),
        linear-gradient(135deg, rgba(255, 255, 255, 0.78), rgba(225, 243, 255, 0.58));
    border: 1px solid rgba(255, 255, 255, 0.9);
    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.86),
        0 24px 70px rgba(31, 88, 160, 0.13);
    backdrop-filter: blur(22px);
    -webkit-backdrop-filter: blur(22px);
}

.rs-summary-highlight::before {
    content: "";
    position: absolute;
    left: 34px;
    top: 30px;
    bottom: 30px;
    width: 4px;
    border-radius: 999px;
    background: linear-gradient(180deg, #0d6efd, #6aa8ff);
    box-shadow: 0 12px 28px rgba(13, 110, 253, 0.22);
}

.rs-summary-highlight::after {
    content: "";
    position: absolute;
    right: -90px;
    bottom: -110px;
    width: 260px;
    height: 260px;
    border-radius: 50%;
    background: rgba(13, 110, 253, 0.08);
    pointer-events: none;
}

.rs-summary-quote-mark {
    position: absolute;
    left: 54px;
    top: 34px;
    z-index: 2;
    width: 44px;
    height: 44px;
    border-radius: 15px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    background: linear-gradient(135deg, #0d6efd, #0058df);
    box-shadow: 0 14px 34px rgba(13, 110, 253, 0.22);
}

.rs-summary-highlight blockquote {
    position: relative;
    z-index: 2;
    max-width: 860px;
    margin: 0 0 14px;
    font-size: clamp(18px, 2vw, 24px);
    line-height: 1.55;
    font-weight: 950;
    letter-spacing: -0.5px;
    color: var(--color1);
}

.rs-summary-highlight span {
    position: relative;
    z-index: 2;
    display: inline-flex;
    align-items: center;
    padding: 7px 12px;
    border-radius: 999px;
    color: var(--color2);
    font-size: 12px;
    font-weight: 900;
    background: rgba(255, 255, 255, 0.7);
    border: 1px solid rgba(13, 110, 253, 0.12);
}

@media (max-width: 1199.98px) {
    .rs-about-glass {
        padding: 30px;
    }

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

@media (max-width: 991.98px) {
    .rs-about-profile-summary {
        padding: 70px 0;
    }
}

@media (max-width: 767.98px) {
    .rs-about-profile-summary {
        padding: 60px 0;
    }

    .rs-about-glass {
        padding: 26px;
        border-radius: 22px;
    }

    .rs-about-section-head h2 {
        font-size: 24px;
    }

    .rs-academic-row {
        grid-template-columns: 1fr;
        gap: 6px;
    }

    .rs-summary-highlight {
        min-height: auto;
        padding: 86px 24px 26px;
    }

    .rs-summary-highlight::before {
        left: 24px;
        top: 24px;
        bottom: auto;
        width: 56px;
        height: 4px;
    }

    .rs-summary-quote-mark {
        left: 24px;
        top: 36px;
    }
}

@media (max-width: 575.98px) {
    .rs-about-profile-summary {
        padding: 52px 0;
    }

    .rs-about-glass {
        padding: 22px;
    }

    .rs-academic-stats {
        grid-template-columns: 1fr 1fr;
        gap: 10px;
    }

    .rs-stat-box {
        min-height: 100px;
        padding: 18px 10px;
    }

    .rs-stat-box strong {
        font-size: 24px;
    }

    .rs-summary-highlight {
        padding: 82px 22px 24px;
    }

    .rs-summary-highlight blockquote {
        font-size: 18px;
        letter-spacing: 0;
    }
}

/* EXPERIENCE & EDUCATION */
.rs-about-timeline {
    position: relative;
    padding: 90px 0;
    overflow: hidden;
    background:
        radial-gradient(circle at 12% 20%, rgba(255, 255, 255, 0.86), transparent 30%),
        radial-gradient(circle at 88% 24%, rgba(110, 180, 255, 0.24), transparent 34%),
        radial-gradient(circle at 24% 92%, rgba(13, 110, 253, 0.08), transparent 34%),
        linear-gradient(135deg, #f8fbff 0%, #edf6ff 48%, #f9fcff 100%);
}

.rs-about-timeline::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        linear-gradient(120deg, rgba(255, 255, 255, 0.36), transparent 42%),
        radial-gradient(circle at 8% 100%, rgba(96, 170, 255, 0.13), transparent 34%);
    pointer-events: none;
}

.rs-about-timeline .container {
    position: relative;
    z-index: 2;
    max-width: 1400px;
}

.rs-timeline-card {
    padding: 36px 40px;
}

.rs-timeline-list {
    position: relative;
    padding-left: 22px;
}

.rs-timeline-list::before {
    content: "";
    position: absolute;
    top: 9px;
    left: 7px;
    width: 2px;
    height: calc(100% - 22px);
    background: linear-gradient(
        to bottom,
        rgba(13, 110, 253, 0.2),
        rgba(13, 110, 253, 0.75),
        rgba(13, 110, 253, 0.2)
    );
    border-radius: 999px;
}

.rs-timeline-item {
    position: relative;
    display: grid;
    grid-template-columns: 150px 1fr;
    gap: 34px;
    padding-bottom: 34px;
    animation: rsTimelineFade 0.8s ease both;
}

.rs-timeline-item:last-child {
    padding-bottom: 0;
}

.rs-timeline-item::before {
    content: "";
    position: absolute;
    top: 5px;
    left: -22px;
    width: 16px;
    height: 16px;
    border-radius: 50%;
    background: #ffffff;
    border: 4px solid var(--color2);
    box-shadow: 0 0 0 7px rgba(13, 110, 253, 0.08);
    transition: 0.35s ease;
}

.rs-timeline-item:hover::before {
    transform: scale(1.18);
    box-shadow: 0 0 0 10px rgba(13, 110, 253, 0.12);
}

.rs-timeline-year {
    padding-top: 2px;
    font-size: 13px;
    line-height: 1.4;
    font-weight: 900;
    color: var(--color2);
}

.rs-timeline-content {
    padding: 2px 0 0;
    transition: 0.35s ease;
}

.rs-timeline-item:hover .rs-timeline-content {
    transform: translateX(6px);
}

.rs-timeline-content h3 {
    margin: 0 0 6px;
    font-size: 16px;
    line-height: 1.35;
    font-weight: 900;
    color: var(--color1);
}

.rs-timeline-content h4 {
    margin: 0 0 8px;
    font-size: 14px;
    line-height: 1.45;
    font-weight: 800;
    color: #253857;
}

.rs-timeline-content p {
    margin: 0;
    max-width: 520px;
    font-size: 13px;
    line-height: 1.7;
    font-weight: 600;
    color: #465a78;
}

.rs-about-empty {
    min-height: 140px;
    display: grid;
    place-items: center;
    gap: 12px;
    padding: 24px;
    border-radius: 18px;
    text-align: center;
    color: #52627b;
    background: rgba(255, 255, 255, 0.42);
    border: 1px dashed rgba(13, 110, 253, 0.22);
}

.rs-about-empty i {
    width: 46px;
    height: 46px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 15px;
    color: var(--color2);
    background: rgba(255, 255, 255, 0.74);
    box-shadow: 0 14px 30px rgba(13, 110, 253, 0.1);
}

.rs-about-empty p {
    margin: 0;
    font-size: 13px;
    font-weight: 800;
}

.rs-about-empty-carousel {
    flex: 1 0 100%;
}

@keyframes rsTimelineFade {
    from {
        opacity: 0;
        transform: translateY(18px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.rs-timeline-item:nth-child(1) { animation-delay: 0.05s; }
.rs-timeline-item:nth-child(2) { animation-delay: 0.12s; }
.rs-timeline-item:nth-child(3) { animation-delay: 0.19s; }
.rs-timeline-item:nth-child(4) { animation-delay: 0.26s; }
.rs-timeline-item:nth-child(5) { animation-delay: 0.33s; }

@media (max-width: 1199.98px) {
    .rs-timeline-card {
        padding: 32px;
    }

    .rs-timeline-item {
        grid-template-columns: 130px 1fr;
        gap: 28px;
    }
}

@media (max-width: 991.98px) {
    .rs-about-timeline {
        padding: 70px 0;
    }
}

@media (max-width: 767.98px) {
    .rs-about-timeline {
        padding: 60px 0;
    }

    .rs-timeline-card {
        padding: 28px 24px;
        border-radius: 22px;
    }

    .rs-timeline-item {
        grid-template-columns: 1fr;
        gap: 8px;
        padding-bottom: 30px;
    }

    .rs-timeline-year {
        padding-top: 0;
    }

    .rs-timeline-content h3 {
        font-size: 15px;
    }
}

@media (max-width: 575.98px) {
    .rs-about-timeline {
        padding: 52px 0;
    }

    .rs-timeline-card {
        padding: 24px 20px;
    }

    .rs-timeline-list {
        padding-left: 18px;
    }

    .rs-timeline-list::before {
        left: 6px;
    }

    .rs-timeline-item::before {
        left: -18px;
        width: 14px;
        height: 14px;
        border-width: 3px;
    }
}

.rs-about-certifications {
    position: relative;
    padding: 90px 0;
    overflow: hidden;
    background:
        radial-gradient(circle at 12% 20%, rgba(255, 255, 255, 0.86), transparent 30%),
        radial-gradient(circle at 88% 26%, rgba(110, 180, 255, 0.24), transparent 35%),
        radial-gradient(circle at 52% 84%, rgba(13, 110, 253, 0.08), transparent 34%),
        linear-gradient(135deg, #f8fbff 0%, #edf6ff 48%, #f9fcff 100%);
}

.rs-about-certifications::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        linear-gradient(120deg, rgba(255, 255, 255, 0.4), transparent 44%),
        radial-gradient(circle at 100% 0%, rgba(13, 110, 253, 0.1), transparent 36%);
    pointer-events: none;
}

.rs-about-certifications .container {
    position: relative;
    z-index: 2;
    max-width: 1400px;
}

.rs-cert-panel {
    padding: 34px;
}

.rs-cert-carousel-wrap {
    position: relative;
}

.rs-cert-carousel {
    display: flex;
    gap: 22px;
    overflow-x: auto;
    scroll-behavior: smooth;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
    padding: 4px 4px 8px;
}

.rs-cert-carousel.is-centered {
    justify-content: center;
    flex-wrap: wrap;
    overflow-x: visible;
    scroll-snap-type: none;
}

.rs-cert-carousel.is-centered .rs-cert-card {
    flex: 0 1 min(320px, 100%);
    min-width: min(320px, 100%);
}

.rs-cert-carousel::-webkit-scrollbar {
    display: none;
}

.rs-cert-card {
    position: relative;
    flex: 0 0 calc((100% - 66px) / 4);
    min-width: calc((100% - 66px) / 4);
    scroll-snap-align: start;
    border-radius: 18px;
    overflow: visible;
    background:
        linear-gradient(135deg, rgba(255, 255, 255, 0.68), rgba(235, 247, 255, 0.46));
    border: 1px solid rgba(255, 255, 255, 0.86);
    filter: drop-shadow(0 14px 24px rgba(31, 88, 160, 0.06));
    transition: transform 0.35s ease, background 0.35s ease, box-shadow 0.35s ease, border-color 0.35s ease;
}

.rs-cert-card::before {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 0;
    overflow: hidden;
    border-radius: inherit;
    pointer-events: none;
}

.rs-cert-card > * {
    position: relative;
    z-index: 1;
}

.rs-cert-card:hover {
    transform: translateY(-8px);
    background:
        linear-gradient(135deg, rgba(255, 255, 255, 0.86), rgba(232, 246, 255, 0.64));
    border-color: rgba(255, 255, 255, 0.98);
    filter: drop-shadow(0 22px 34px rgba(13, 110, 253, 0.1));
}

.rs-cert-img {
    position: relative;
    height: 170px;
    padding: 0;
    background:
        radial-gradient(circle at 50% 35%, rgba(13, 110, 253, 0.1), transparent 60%),
        rgba(255, 255, 255, 0.42);
    overflow: hidden;
    border-radius: 18px 18px 0 0;
}

.rs-cert-img img {
    position: relative;
    z-index: 2;
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
    object-position: center;
    transition: 0.35s ease;
}

.rs-cert-card:hover .rs-cert-img img {
    transform: scale(1.07);
}

.rs-cert-body {
    position: relative;
    min-height: 142px;
    padding: 16px 18px 48px;
    overflow: hidden;
    border-radius: 0 0 18px 18px;
}

.rs-cert-badge {
    position: absolute;
    top: 12px;
    left: 12px;
    z-index: 3;
    width: max-content;
    max-width: 100%;
    display: inline-flex;
    align-items: center;
    padding: 5px 9px;
    border-radius: 999px;
    font-size: 10px;
    line-height: 1;
    font-weight: 900;
    color: var(--color2);
    background: rgba(13, 110, 253, 0.08);
    border: 1px solid rgba(13, 110, 253, 0.12);
}

.rs-cert-badge-training {
    color: #0758cf;
    background: rgba(13, 110, 253, 0.08);
    border-color: rgba(13, 110, 253, 0.14);
}

.rs-cert-badge-competency {
    color: #0b7b68;
    background: rgba(32, 201, 151, 0.1);
    border-color: rgba(32, 201, 151, 0.18);
}

.rs-cert-badge-international {
    color: #7a4b00;
    background: rgba(255, 193, 7, 0.16);
    border-color: rgba(255, 193, 7, 0.24);
}

.rs-cert-body h3 {
    min-height: 42px;
    margin: 0 0 4px;
    font-size: 13px;
    line-height: 1.35;
    font-weight: 900;
    color: var(--color1);
}

.rs-cert-body p {
    margin: 0;
    font-size: 12px;
    line-height: 1.35;
    font-weight: 700;
    color: #3f5270;
}

.rs-cert-year {
    position: absolute;
    right: 16px;
    bottom: 16px;
    display: inline-flex;
    padding: 5px 9px;
    border-radius: 999px;
    font-size: 11px;
    font-weight: 900;
    color: var(--color2);
    background: rgba(13, 110, 253, 0.08);
    border: 1px solid rgba(13, 110, 253, 0.12);
}

.rs-cert-nav {
    position: absolute;
    top: 50%;
    z-index: 5;
    width: 48px;
    height: 48px;
    border: 0;
    border-radius: 50%;
    color: var(--color2);
    background: rgba(255, 255, 255, 0.88);
    box-shadow: 0 18px 46px rgba(31, 88, 160, 0.18);
    backdrop-filter: blur(18px);
    transform: translateY(-50%);
    transition: 0.3s ease;
}

.rs-cert-nav:hover {
    color: #fff;
    background: linear-gradient(135deg, #0d6efd, #0058df);
    transform: translateY(-50%) scale(1.08);
}

.rs-cert-prev {
    left: -22px;
}

.rs-cert-next {
    right: -22px;
}

@media (max-width: 1199.98px) {
    .rs-cert-card {
        flex-basis: calc((100% - 44px) / 3);
        min-width: calc((100% - 44px) / 3);
    }
}

@media (max-width: 991.98px) {
    .rs-about-certifications {
        padding: 70px 0;
    }

    .rs-cert-card {
        flex-basis: calc((100% - 22px) / 2);
        min-width: calc((100% - 22px) / 2);
    }
}

@media (max-width: 767.98px) {
    .rs-about-certifications {
        padding: 60px 0;
    }

    .rs-cert-panel {
        padding: 26px 24px;
        border-radius: 22px;
    }

    .rs-cert-card {
        flex-basis: 82%;
        min-width: 82%;
    }

    .rs-cert-nav {
        display: none;
    }

    .rs-cert-img {
        height: 190px;
    }
}

@media (max-width: 575.98px) {
    .rs-about-certifications {
        padding: 52px 0;
    }

    .rs-cert-panel {
        padding: 24px 20px;
    }

    .rs-cert-card {
        flex-basis: 82%;
        min-width: 82%;
    }

    .rs-cert-img {
        height: 220px;
    }

    .rs-cert-body h3 {
        font-size: 13px;
    }
}

.rs-about-interest {
    position: relative;
    padding: 90px 0;
    overflow: hidden;
    background:
        radial-gradient(circle at 12% 20%, rgba(255, 255, 255, 0.86), transparent 30%),
        radial-gradient(circle at 88% 26%, rgba(110, 180, 255, 0.24), transparent 35%),
        radial-gradient(circle at 46% 90%, rgba(13, 110, 253, 0.08), transparent 34%),
        linear-gradient(135deg, #f8fbff 0%, #edf6ff 48%, #f9fcff 100%);
}

.rs-about-interest::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        linear-gradient(120deg, rgba(255, 255, 255, 0.38), transparent 44%),
        radial-gradient(circle at 0% 0%, rgba(13, 110, 253, 0.09), transparent 36%);
    pointer-events: none;
}

.rs-about-interest .container {
    position: relative;
    z-index: 2;
    max-width: 1400px;
}

.rs-interest-card {
    min-height: 310px;
    padding: 34px;
}

.rs-achievement-grid {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: 1fr;
    gap: 18px;
}

.rs-achievement-card {
    min-width: 0;
    min-height: 100%;
    display: grid;
    grid-template-columns: 190px minmax(0, 1fr);
    gap: 18px;
    padding: 16px;
    overflow: hidden;
    border-radius: 22px;
    background:
        radial-gradient(circle at 12% 10%, rgba(255, 255, 255, 0.72), transparent 28%),
        linear-gradient(135deg, rgba(255, 255, 255, 0.76), rgba(237, 247, 255, 0.48));
    border: 1px solid rgba(255, 255, 255, 0.82);
    box-shadow: 0 18px 42px rgba(31, 88, 160, 0.09);
    transition: 0.32s ease;
}

.rs-achievement-card:hover {
    transform: translateY(-6px);
    border-color: rgba(13, 110, 253, 0.16);
    box-shadow: 0 26px 58px rgba(31, 88, 160, 0.14);
}

.rs-achievement-card figure {
    position: relative;
    height: 100%;
    min-height: 140px;
    margin: 0;
    overflow: hidden;
    border-radius: 18px;
    background:
        linear-gradient(135deg, rgba(13, 110, 253, 0.12), rgba(100, 177, 255, 0.14)),
        rgba(255, 255, 255, 0.72);
    border: 1px solid rgba(255, 255, 255, 0.78);
}

.rs-achievement-card figure::after {
    content: "";
    position: absolute;
    inset: 0;
    background:
        linear-gradient(135deg, rgba(255, 255, 255, 0.24), transparent 48%),
        linear-gradient(0deg, rgba(7, 24, 74, 0.08), transparent 42%);
    pointer-events: none;
}

.rs-achievement-card img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
    object-position: center;
    transition: transform 0.42s ease, filter 0.42s ease;
}

.rs-achievement-card:hover img {
    transform: scale(1.045);
    filter: saturate(1.06) contrast(1.03);
}

.rs-achievement-card div {
    min-width: 0;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
}

.rs-achievement-card span {
    display: inline-flex;
    margin-bottom: 10px;
    padding: 6px 10px;
    border-radius: 999px;
    color: #7a4b00;
    font-size: 11px;
    line-height: 1;
    font-weight: 950;
    background: rgba(255, 193, 7, 0.16);
    border: 1px solid rgba(255, 193, 7, 0.24);
}

.rs-achievement-card h3 {
    margin: 0;
    color: var(--color1);
    font-size: 17px;
    line-height: 1.35;
    font-weight: 950;
    letter-spacing: -0.35px;
}

.rs-achievement-card p {
    margin: 9px 0 0;
    color: #52627b;
    font-size: 13px;
    line-height: 1.7;
    font-weight: 300;
}

@media (min-width: 992px) {
    .rs-awards-scroll {
        max-height: 255px;
        padding-right: 8px;
        overflow-x: hidden;
        overflow-y: auto;
        scrollbar-width: thin;
        scrollbar-color: rgba(13, 110, 253, 0.28) rgba(255, 255, 255, 0.34);
    }

    .rs-awards-scroll::-webkit-scrollbar {
        width: 7px;
    }

    .rs-awards-scroll::-webkit-scrollbar-track {
        border-radius: 999px;
        background: rgba(255, 255, 255, 0.34);
    }

    .rs-awards-scroll::-webkit-scrollbar-thumb {
        border-radius: 999px;
        background: rgba(13, 110, 253, 0.28);
    }
}

.rs-info-list {
    position: relative;
    z-index: 2;
    display: grid;
    gap: 14px;
    margin: 0;
    padding: 0;
    list-style: none;
}

.rs-info-list li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    font-size: 14px;
    line-height: 1.5;
    font-weight: 800;
    color: #243653;
    transition: 0.3s ease;
}

.rs-info-list li span {
    flex: 1 1 auto;
    min-width: 0;
    overflow-wrap: anywhere;
}

.rs-info-list li span small {
    display: block;
    margin-top: 4px;
    color: #65758f;
    font-size: 12px;
    line-height: 1.55;
    font-weight: 600;
}

.rs-info-list li strong {
    flex: 0 0 auto;
    margin-left: auto;
    padding: 4px 9px;
    border-radius: 999px;
    color: #7a4b00;
    font-size: 11px;
    line-height: 1;
    font-weight: 950;
    background: rgba(255, 193, 7, 0.16);
    border: 1px solid rgba(255, 193, 7, 0.24);
}

.rs-info-list li:hover {
    transform: translateX(6px);
    color: var(--color2);
}

.rs-info-list li i {
    width: 20px;
    margin-top: 2px;
    text-align: center;
    font-size: 15px;
    flex: 0 0 20px;
}

.rs-list-blue li i {
    color: var(--color2);
}

.rs-list-gold li i {
    color: #f3a712;
}

.rs-bg-watermark {
    position: absolute;
    right: 28px;
    bottom: 18px;
    z-index: 1;
    color: rgba(13, 110, 253, 0.06);
    font-size: 96px;
    pointer-events: none;
    transition: 0.45s ease;
}

.rs-interest-card:hover .rs-bg-watermark {
    transform: translateY(-8px) rotate(-5deg) scale(1.04);
    color: rgba(13, 110, 253, 0.1);
}

.rs-interest-card:hover .rs-about-icon {
    color: #fff;
    background: linear-gradient(135deg, #0d6efd, #0058df);
    transform: rotate(-6deg) scale(1.06);
}

.rs-about-icon {
    transition: 0.35s ease;
}

@media (max-width: 991.98px) {
    .rs-about-interest {
        padding: 70px 0;
    }

    .rs-interest-card {
        min-height: auto;
    }

    .rs-achievement-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 767.98px) {
    .rs-about-interest {
        padding: 60px 0;
    }

    .rs-interest-card {
        padding: 28px 24px;
        border-radius: 22px;
    }

    .rs-info-list li {
        font-size: 13px;
    }

    .rs-info-list li strong {
        margin-left: 0;
    }

    .rs-achievement-grid {
        grid-template-columns: 1fr;
    }

    .rs-achievement-card {
        grid-template-columns: 140px minmax(0, 1fr);
    }

    .rs-bg-watermark {
        font-size: 78px;
        right: 20px;
        bottom: 16px;
    }
}

@media (max-width: 575.98px) {
    .rs-about-interest {
        padding: 52px 0;
    }

    .rs-interest-card {
        padding: 24px 20px;
    }

    .rs-info-list {
        gap: 12px;
    }

    .rs-achievement-card {
        grid-template-columns: 1fr;
    }

    .rs-achievement-card figure {
        min-height: auto;
        aspect-ratio: 16 / 10;
    }

    .rs-bg-watermark {
        font-size: 68px;
        opacity: 0.75;
    }
}
