:root {
    --rc-navy: #003057;
    --rc-navy-2: #06213a;
    --rc-pink: #e5004d;
    --rc-light: #f6f9fb;
    --rc-white: #ffffff;
    --rc-muted: #6d7d8b;
    --rc-border: rgba(0, 48, 87, 0.14);
    --rc-shadow: 0 24px 70px rgba(0, 48, 87, 0.16);
}

@import url('https://fonts.googleapis.com/css2?family=Noto+Kufi+Arabic:wght@100..900&display=swap');

@font-face {
    font-family: 'Verdana';
    src: url('../fonts/Verdana.woff2') format('woff2'),
        url('../fonts/Verdana.woff') format('woff'),
        url('../fonts/Verdana.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Verdana';
    src: url('../fonts/Verdana-Bold.woff2') format('woff2'),
        url('../fonts/Verdana-Bold.woff') format('woff'),
        url('../fonts/Verdana-Bold.ttf') format('truetype');
    font-weight: bold;
    font-style: normal;
    font-display: swap;
}

html {
    font-family: 'Verdana';
    scroll-behavior: smooth;
    margin: 0;
    padding: 0;
}

body {
    padding: 0;
    margin: 0;
}

.rc-site,
.rc-site * {
    box-sizing: border-box;
}

.rc-site {
    color: var(--rc-navy);
    background: var(--rc-white);
}

.rc-container {
    width: min(1180px, calc(100% - 40px));
    margin: 0 auto;
}

.rc-nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 50;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 24px 48px;
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
}

.rc-nav.scrolled {
    padding: 14px 48px;
    background: #fff;
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
}

.rc-logo img {
    display: block;
    width: 250px;
    height: auto;
    transition: width 0.3s ease, opacity 0.3s ease;
}

.rc-logo .rc-logo-dark {
    display: none;
}

.rc-nav.scrolled .rc-logo img {
    width: 180px;
}

.rc-nav.scrolled .rc-logo .rc-logo-light {
    display: none;
}

.rc-nav.scrolled .rc-logo .rc-logo-dark {
    display: block;
}

.rc-nav-contact {
    display: flex;
    align-items: center;
    gap: 24px;
    margin-left: 36px;
}

.rc-nav-contact-item {
    display: flex;
    align-items: center;
    gap: 8px;
    color: rgba(255, 255, 255, 0.85);
    text-decoration: none;
    font-size: 13px;
    font-weight: 600;
    transition: color 0.3s ease;
}

.rc-nav-contact-item svg {
    width: 16px;
    height: 16px;
    flex-shrink: 0;
}

.rc-nav-contact-item:hover {
    color: #e5004d;
}

.rc-nav.scrolled .rc-nav-contact-item {
    color: #1a1a2e;
}

.rc-nav.scrolled .rc-nav-contact-item:hover {
    color: #e5004d;
}

.rc-lang-switch {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 6px 14px;
    border: 1px solid rgba(255, 255, 255, .3);
    border-radius: 8px;
    color: #fff;
    font-size: 13px;
    text-decoration: none;
    transition: all .3s ease;
    font-family: "Noto Kufi Arabic", sans-serif;
}

.rc-lang-switch:hover {
    background: #e5004d;
    border-color: #e5004d;
}

.rc-nav.scrolled .rc-lang-switch {
    border-color: rgba(16, 35, 59, .2);
    color: #1a1a2e;
}

.rc-nav.scrolled .rc-lang-switch:hover {
    background: #e5004d;
    border-color: #e5004d;
    color: #fff;
}

.rc-menu {
    display: flex;
    align-items: center;
    gap: 36px;
}

.rc-menu a {
    color: #fff;
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
    position: relative;
    padding-bottom: 4px;
    transition: color 0.3s ease;
}

.rc-nav.scrolled .rc-menu a {
    color: #1a1a2e;
}

.rc-nav.scrolled .rc-menu a:hover,
.rc-nav.scrolled .rc-menu a.active {
    color: #e5004d;
}

.rc-menu a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: #e5004d;
    transition: width 0.3s ease;
}

.rc-menu a:hover::after,
.rc-menu a.active::after {
    width: 100%;
}

.rc-menu a:hover {
    color: #e5004d;
}

.rc-menu a.active {
    color: #e5004d;
}

.rc-menu-toggle {
    display: none;
    border: 0;
    background: transparent;
    cursor: pointer;
}

.rc-menu-toggle span {
    display: block;
    width: 28px;
    height: 2px;
    margin: 6px 0;
    background: #fff;
    transition: all 0.3s ease;
}

.rc-nav.scrolled .rc-menu-toggle span {
    background: #1a1a2e;
}

.rc-hero {
    position: relative;
    min-height: 100vh;
    color: var(--rc-white);
    overflow: hidden;
}

.rc-hero-video-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 115%;
    object-fit: cover;
    object-position: center top;
    z-index: 0;
}

.rc-hero-slider {
    position: relative;
    width: 100%;
    height: 100vh;
    min-height: 700px;
}

.rc-hero-slide {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    opacity: 0;
    visibility: hidden;
    transition: opacity 1.2s ease, visibility 1.2s ease;
    z-index: 1;
}

.rc-hero-slide.active {
    opacity: 1;
    visibility: visible;
    z-index: 2;
}

.rc-hero-overlay {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(135deg, rgba(6, 29, 50, 0.92) 0%, rgba(0, 48, 87, 0.78) 50%, rgba(7, 24, 39, 0.88) 100%);
    z-index: 1;
}

.rc-hero-slide::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 20% 30%, rgba(229, 0, 77, 0.18), transparent 40%);
    z-index: 2;
    pointer-events: none;
}

.rc-hero-grid {
    position: relative;
    z-index: 3;
    width: min(1180px, calc(100% - 40px));
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1.04fr 0.96fr;
    align-items: center;
    gap: 54px;
    height: 100%;
    min-height: 700px;
    padding: 150px 0 90px;
}

/* Slide content animations */
.rc-hero-slide .rc-eyebrow,
.rc-hero-slide .rc-hero-copy h1,
.rc-hero-slide .rc-hero-copy p,
.rc-hero-slide .rc-hero-actions,
.rc-hero-slide .rc-hero-visual {
    opacity: 0;
    transform: translateY(40px);
}

.rc-hero-slide.active .rc-eyebrow {
    animation: heroFadeUp 0.8s ease 0.3s both;
}

.rc-hero-slide.active .rc-hero-copy h1 {
    animation: heroFadeUp 0.8s ease 0.5s both;
}

.rc-hero-slide.active .rc-hero-copy p {
    animation: heroFadeUp 0.8s ease 0.7s both;
}

.rc-hero-slide.active .rc-hero-actions {
    animation: heroFadeUp 0.8s ease 0.9s both;
}

.rc-hero-slide.active .rc-hero-visual {
    animation: heroFadeUp 1s ease 0.6s both;
}

.rc-hero-slide.active .rc-hex-frame {
    animation: heroScaleIn 1s ease 0.8s both;
}

.rc-hero-slide.active .rc-floating-card {
    animation: heroCardPop 0.6s ease both;
}

.rc-hero-slide.active .rc-card-a {
    animation-delay: 1.2s;
}

.rc-hero-slide.active .rc-card-b {
    animation-delay: 1.4s;
}

@keyframes heroFadeUp {
    from {
        opacity: 0;
        transform: translateY(40px);
    }

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

@keyframes heroScaleIn {
    from {
        opacity: 0;
        transform: scale(0.85) rotate(5deg);
    }

    to {
        opacity: 1;
        transform: scale(1) rotate(0deg);
    }
}

@keyframes heroCardPop {
    from {
        opacity: 0;
        transform: translateY(20px) scale(0.9);
    }

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

/* Arrows */
.rc-hero-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 10;
    width: 56px;
    height: 56px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.06);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    color: #fff;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    opacity: 0;
}

.rc-hero:hover .rc-hero-arrow {
    opacity: 1;
}

.rc-hero-arrow:hover {
    background: rgba(229, 0, 77, 0.3);
    border-color: rgba(229, 0, 77, 0.5);
    transform: translateY(-50%) scale(1.1);
}

.rc-hero-arrow svg {
    width: 22px;
    height: 22px;
}

.rc-hero-prev {
    left: 24px;
}

.rc-hero-next {
    right: 24px;
}

/* Dots */
.rc-hero-dots {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 10;
    display: flex;
    gap: 12px;
}

.rc-hero-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    border: 2px solid rgba(255, 255, 255, 0.4);
    background: transparent;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    padding: 0 !important;
}

.rc-hero-dot.active {
    border-color: #e5004d;
    background: #e5004d;
    box-shadow: 0 0 12px rgba(229, 0, 77, 0.5);
}

.rc-hero-dot::after {
    content: '';
    position: absolute;
    inset: -4px;
    border-radius: 50%;
    border: 1px solid transparent;
    transition: border-color 0.3s ease;
}

.rc-hero-dot.active::after {
    border-color: rgba(229, 0, 77, 0.3);
}

/* Progress bar */
.rc-hero-progress {
    position: absolute;
    bottom: 0;
    left: 0;
    height: 3px;
    background: linear-gradient(90deg, #e5004d, #ff4d88);
    z-index: 10;
    width: 0;
    transition: width 0.1s linear;
}

.rc-eyebrow,
.rc-kicker {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 18px;
    color: var(--rc-pink);
    font-size: 13px;
    font-weight: bold;
    letter-spacing: 0.14em;
    text-transform: uppercase;
}

.rc-eyebrow::before,
.rc-kicker::before {
    content: "";
    width: 32px;
    height: 12px;
    background: var(--rc-pink);
    transform: skewX(-18deg);
}

.rc-hero h1,
.rc-section h2,
.rc-contact h2 {
    margin: 0;
    font-weight: bold;
    letter-spacing: -0.055em;
    line-height: 0.98;
}

.rc-hero h1 {
    max-width: 760px;
    font-size: clamp(48px, 7vw, 60px);
    color: rgba(255, 255, 255, 0.95);
}

.rc-hero p {
    max-width: 620px;
    margin: 26px 0 0;
    color: rgba(255, 255, 255, 0.78);
    font-size: 18px;
    line-height: 1.75;
}

.rc-hero-actions,
.rc-contact-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    margin-top: 34px;
}

.rc-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 50px;
    padding: 0 24px;
    border-radius: 999px;
    font-size: 14px;
    font-weight: bold;
    text-decoration: none;
    transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease;
}

.rc-btn:hover {
    transform: translateY(-3px);
}

.rc-btn-primary, .rc-footer-form input[type="submit"]{
    color: var(--rc-white);
    background: var(--rc-pink);
    box-shadow: 0 16px 35px rgba(229, 0, 77, 0.34);
}

.rc-btn-ghost {
    color: var(--rc-white);
    border: 1px solid rgba(255, 255, 255, 0.28);
    background: rgba(255, 255, 255, 0.08);
}

.rc-hero-visual {
    position: relative;
    min-height: 560px;
}

/* ── Inner Page Banner ── */
.rc-hero-inner {
    position: relative;
    min-height: 420px;
    padding: 160px 0 80px;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    overflow: hidden;
}

.rc-hero-inner::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        linear-gradient(135deg, rgba(6, 29, 50, 0.92) 0%, rgba(0, 48, 87, 0.82) 50%, rgba(7, 24, 39, 0.90) 100%);
    z-index: 1;
}

.rc-hero-inner::after {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 25% 40%, rgba(229, 0, 77, 0.15), transparent 45%);
    z-index: 2;
    pointer-events: none;
}

.rc-hero-inner .rc-container {
    position: relative;
    z-index: 3;
    width: min(1180px, calc(100% - 40px));
    margin: 0 auto;
}

.rc-breadcrumbs {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 24px;
    font-size: 14px;
}

.rc-breadcrumbs a {
    color: rgba(255, 255, 255, 0.6);
    text-decoration: none;
    transition: color 0.3s ease;
}

.rc-breadcrumbs a:hover {
    color: #e5004d;
}

.rc-breadcrumbs span {
    color: rgba(255, 255, 255, 0.35);
}

.rc-breadcrumbs .rc-bc-current {
    color: rgba(255, 255, 255, 0.9);
    font-weight: 600;
}

.rc-hero-inner h1 {
    max-width: 760px;
    font-size: clamp(36px, 5vw, 56px);
    color: rgba(255, 255, 255, 0.95);
    margin: 0;
    font-weight: bold;
    letter-spacing: -0.055em;
    line-height: 0.98;
}

.rc-hero-inner p {
    max-width: 620px;
    margin: 20px 0 0;
    color: rgba(255, 255, 255, 0.72);
    font-size: 17px;
    line-height: 1.7;
}

.rc-hex-frame {
    position: absolute;
    inset: 42px 0 0 40px;
    width: 580px;
    height: 500px;
    overflow: hidden;
    clip-path: polygon(50% -50%, 100% 50%, 50% 150%, 0 50%);
    box-shadow: var(--rc-shadow);
}

.rc-hex-frame img {
    width: 580px;
    height: 500px;
    object-fit: cover;
}

.rc-hex-slider {
    position: relative;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.rc-hex-slider-img {
    position: absolute;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0;
    transition: opacity 0.8s ease-in-out;
}

.rc-hex-slider-img.active {
    opacity: 1;
}

.rc-hex-frame::after {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 2;
    background: linear-gradient(140deg, rgba(229, 0, 77, 0.35), transparent 48%, rgba(0, 48, 87, 0.38));
    pointer-events: none;
}

.rc-why-visual img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.rc-floating-card {
    position: absolute;
    z-index: 4;
    padding: 18px 22px;
    border: 1px solid rgba(255, 255, 255, 0.26);
    border-radius: 22px;
    background: rgba(255, 255, 255, 0.9);
    color: var(--rc-navy);
    box-shadow: 0 16px 40px rgba(0, 0, 0, 0.18);
    animation: rcFloat 5.4s ease-in-out infinite;
}

.rc-floating-card strong {
    display: block;
    font-size: 28px;
    color: var(--rc-pink);
}

.rc-floating-card span {
    font-size: 12px;
    font-weight: 700;
}

.rc-card-a {
    left: 0;
    top: 88px;
}

.rc-card-b {
    right: 18px;
    bottom: 80px;
    animation-delay: -1.6s;
}

.rc-section {
    position: relative;
    padding: 110px 0;
    scroll-margin-top: 110px;
}

.rc-section.rc-strategy {
    padding-bottom: 200px;
}

.rc-contact {
    scroll-margin-top: 110px;
}

.rc-two-col,
.rc-products-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    align-items: center;
}

.rc-section h2,
.rc-contact h2 {
    font-size: clamp(36px, 4.2vw, 50px);
}

.rc-section p,
.rc-contact p {
    color: var(--rc-muted);
    font-size: 16px;
    line-height: 1.8;
}

.rc-about {
    background: var(--rc-white);
}

.rc-section-copy .rc-kicker {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 16px;
    color: #e5004d;
    font-size: 12px;
    font-weight: bold;
    letter-spacing: .08em;
    text-transform: uppercase;
}

.rc-section-copy .rc-kicker::before {
    content: "";
    width: 30px;
    height: 2px;
    background: #e5004d;
}

.rc-section-copy h2 {
    margin: 0 0 20px;
    color: #10233b;
}

.rc-section-copy p {
    color: #5c6f86;
    line-height: 1.8;
    font-size: 16px;
    margin: 0 0 20px;
}

.rc-about-image {
    border-radius: 28px;
    overflow: hidden;
    box-shadow: 0 24px 70px rgba(0, 48, 87, 0.12);
}

.rc-about-image img {
    display: block;
    width: 100%;
    height: auto;
    object-fit: cover;
}

/* ── Vision & Mission ── */
.rc-vm {
    position: relative;
    background: var(--rc-white);
    overflow: hidden;
    color: var(--rc-navy);
}

.rc-vm .rc-section-head h2 {
    color: var(--rc-navy);
}

.rc-vm-grid {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 32px;
}

/* Card base */
.rc-vm-card {
    position: relative;
    padding: 52px 44px 48px;
    border-radius: 28px;
    overflow: hidden;
    transition: transform 0.4s cubic-bezier(.22, .68, 0, 1.2), box-shadow 0.4s ease;
    cursor: default;
}

/* Gradient border via pseudo-element */
.rc-vm-card::before {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: inherit;
    padding: 1.5px;
    background: linear-gradient(135deg, rgba(229, 0, 77, 0.55), rgba(0, 48, 87, 0.4), rgba(229, 0, 77, 0.2));
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    pointer-events: none;
    transition: opacity 0.4s ease;
}

/* Decorative large numeral */
.rc-vm-card::after {
    content: attr(data-num);
    position: absolute;
    top: -24px;
    right: 28px;
    font-size: 140px;
    font-weight: bold;
    letter-spacing: -0.06em;
    line-height: 1;
    pointer-events: none;
    opacity: 0.03;
    color: var(--rc-navy);
    transition: opacity 0.4s ease;
}

.rc-vm-card:hover {
    transform: translateY(-10px);
}

.rc-vm-card:hover::before {
    opacity: 1;
    background: linear-gradient(135deg, rgba(229, 0, 77, 0.7), rgba(0, 180, 230, 0.3), rgba(229, 0, 77, 0.4));
}

.rc-vm-card:hover::after {
    opacity: 0.065;
}

/* Vision card */
.rc-vm-card--vision {
    background: var(--rc-white);
    box-shadow: 0 20px 60px rgba(0, 48, 87, 0.08), 0 4px 12px rgba(0, 48, 87, 0.04);
}

.rc-vm-card--vision:hover {
    box-shadow: 0 30px 80px rgba(229, 0, 77, 0.12);
}

/* Mission card */
.rc-vm-card--mission {
    background: var(--rc-light);
    box-shadow: 0 20px 60px rgba(0, 48, 87, 0.08), 0 4px 12px rgba(0, 48, 87, 0.04);
}

.rc-vm-card--mission:hover {
    box-shadow: 0 30px 80px rgba(229, 0, 77, 0.12);
}

.rc-vm-card--mission::before {
    background: linear-gradient(135deg, rgba(229, 0, 77, 0.6), rgba(255, 255, 255, 0.1), rgba(229, 0, 77, 0.3));
}

/* Icon */
.rc-vm-card-icon {
    position: relative;
    display: grid;
    width: 64px;
    height: 64px;
    margin: 0 0 24px;
    place-items: center;
    /* border-radius: 20px;
    background: rgba(229,0,77,0.1);
    border: 1px solid rgba(229,0,77,0.25); */
    color: #e5004d;
    transition: background 0.35s ease, box-shadow 0.35s ease;
}

.rc-vm-card:hover .rc-vm-card-icon {
    background: rgba(229, 0, 77, 0.15);
    box-shadow: 0 0 0 8px rgba(229, 0, 77, 0.06), 0 0 20px rgba(229, 0, 77, 0.15);
}

.rc-vm-card--mission .rc-vm-card-icon {
    background: rgba(229, 0, 77, 0.15);
    border-color: rgba(229, 0, 77, 0.35);
    color: #e5004d;
}

.rc-vm-card-icon svg {
    width: 52px;
    height: 52px;
}

/* Label */
.rc-vm-card-label {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 18px;
    font-size: 11px;
    font-weight: bold;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: rgba(229, 0, 77, 0.8);
}

.rc-vm-card-label::before {
    content: "";
    display: inline-block;
    width: 20px;
    height: 2px;
    background: currentColor;
    border-radius: 2px;
}

/* Heading */
.rc-vm-card h3 {
    margin: 0 0 18px;
    font-size: clamp(26px, 3vw, 34px);
    letter-spacing: -0.04em;
    line-height: 1.05;
    color: var(--rc-navy);
}

/* Paragraph */
.rc-vm-card p {
    margin: 0;
    line-height: 1.85;
    font-size: 16px;
    color: var(--rc-muted);
}

/* Bottom accent bar */
.rc-vm-card-bar {
    display: block;
    width: 48px;
    height: 3px;
    margin-top: 32px;
    border-radius: 99px;
    background: linear-gradient(90deg, #e5004d, rgba(229, 0, 77, 0.2));
    transition: width 0.4s ease;
}

.rc-vm-card:hover .rc-vm-card-bar {
    width: 90px;
}

.rc-services,
.rc-strategy {
    color: var(--rc-navy);
    background: var(--rc-white);
}

.rc-services {
    position: relative;
    background: var(--rc-white);
}

.rc-services::before {
    content: "";
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(0, 48, 87, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(0, 48, 87, 0.03) 1px, transparent 1px);
    background-size: 60px 60px;
    pointer-events: none;
}

.rc-services::after {
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    width: 520px;
    height: 520px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(229, 0, 77, 0.06) 0%, transparent 70%);
    pointer-events: none;
}

.rc-section-head {
    max-width: 780px;
    margin-bottom: 44px;
}

.rc-services .rc-section-head h2,
.rc-strategy .rc-section-head h2 {
    color: var(--rc-navy);
}

.rc-service-grid {
    position: relative;
    z-index: 2;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
}

/* Services use VM card style */
.rc-services .rc-vm-card {
    flex: 1 1 calc(33.333% - 20px);
    max-width: 380px;
    min-width: 280px;
    height: 250px;
    padding: 40px 36px 20px 36px;
    background: var(--rc-light);
    border: 1px solid var(--rc-border);
    border-radius: 28px;
    box-shadow: 0 4px 20px rgba(0, 48, 87, 0.06);
    transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease, border-radius 0.3s ease, background 0.3s ease;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    position: relative;
    z-index: 2;
    overflow: visible;
}

.rc-services .rc-vm-card:hover {
    background: #fff;
    transform: translateY(-6px);
    box-shadow: 0 20px 48px rgba(0, 48, 87, 0.12), 0 10px 20px rgba(229, 0, 77, 0.06);
    border-color: var(--rc-pink);
    z-index: 10;
    overflow: visible;
}

.rc-services .rc-vm-card::before {
    background: linear-gradient(135deg, rgba(229, 0, 77, 0.15), rgba(0, 48, 87, 0.08), rgba(229, 0, 77, 0.05));
    transition: opacity 0.3s ease;
}

.rc-services .rc-vm-card:hover::before {
    opacity: 0;
}

.rc-services .rc-vm-card::after {
    color: var(--rc-navy);
    opacity: 0.04;
}

.rc-services .rc-vm-card:hover::after {
    opacity: 0.08;
}

.rc-services .rc-vm-card h3 {
    color: var(--rc-navy);
    margin: 0 0 18px;
    font-size: clamp(22px, 2.4vw, 28px);
    letter-spacing: -0.04em;
    line-height: 1.05;
}

.rc-service-content {
    position: absolute;
    top: var(--mouse-y, 50%);
    left: var(--mouse-x, 50%);
    width: max-content;
    max-width: 320px;
    padding: 24px;
    background: #fff;
    border: 1px solid var(--rc-pink);
    border-radius: 16px;
    box-shadow: 0 24px 48px rgba(0, 48, 87, 0.15);
    opacity: 0;
    visibility: hidden;
    transform: translate(15px, 15px);
    transition: opacity 0.3s ease, visibility 0.3s ease;
    z-index: 99;
    pointer-events: none; /* Prevents tooltip from blocking mouse events */
}

.rc-services .rc-vm-card:hover .rc-service-content {
    opacity: 1;
    visibility: visible;
}

.rc-service-content p {
    color: var(--rc-muted);
    font-size: 15px;
    line-height: 1.65;
    margin: 0 0 10px;
    text-align: left;
}

.rc-service-content p:last-child {
    margin-bottom: 0;
}

.rc-services .rc-vm-card:hover .rc-vm-card-icon {
    background: rgba(229, 0, 77, 0.1);
    box-shadow: 0 0 0 8px rgba(229, 0, 77, 0.06), 0 0 28px rgba(229, 0, 77, 0.15);
}

.rc-services .rc-vm-card-label {
    color: rgba(229, 0, 77, 0.85);
}

.rc-timeline-item h3 {
    margin: 0 0 12px;
    font-size: 22px;
}

.rc-strategy p {
    color: var(--rc-muted);
}

.rc-products {
    background: var(--rc-white);
}

.rc-product-cloud {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
}

.rc-product-cloud span {
    padding: 16px 20px;
    border-radius: 999px;
    border: 1px solid var(--rc-border);
    background: var(--rc-white);
    color: var(--rc-navy);
    font-weight: bold;
    box-shadow: 0 10px 24px rgba(0, 48, 87, 0.06);
}

/* ── Products Explorer ── */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800;900&family=Space+Grotesk:wght@500;700&display=swap');

.rc-products-showcase {
    padding: 110px 0;
    scroll-margin-top: 110px;
    background: var(--rc-white);
}

.rc-products-showcase-wrap {
    width: min(1240px, calc(100% - 40px));
    margin: auto;
}

.rc-products-showcase-head {
    max-width: 820px;
    margin-bottom: 52px;
}

.rc-products-showcase-head .rc-kicker {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 16px;
    color: #e5004d;
    font-size: 12px;
    font-weight: bold;
    letter-spacing: .08em;
    text-transform: uppercase;
}

.rc-products-showcase-head .rc-kicker::before {
    content: "";
    width: 30px;
    height: 2px;
    background: #e5004d;
}

.rc-products-showcase-head h2 {
    margin: 0 0 16px;
    font-size: clamp(40px, 5vw, 76px);
    line-height: .98;
    letter-spacing: -.045em;
    color: #10233b;
}

.rc-products-showcase-head p {
    color: #5c6f86;
    line-height: 1.8;
    font-size: 16px;
    max-width: 650px;
    margin-bottom: 52px;
}

.rc-products-showcase-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin-bottom: 48px;
}

.rc-showcase-card {
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(16, 35, 59, .08);
    border-radius: 24px;
    background: #ffffff;
    color: #5c6f86;
    padding: 28px 24px;
    text-align: left;
    text-decoration: none;
    font-weight: 900;
    box-shadow: 0 16px 40px rgba(15, 23, 42, .06);
    transition: .25s ease;
    display: flex;
    flex-direction: column;
}

.rc-showcase-card-hex {
    position: absolute;
    inset: auto 18px 18px auto;
    width: 54px;
    height: 47px;
    background: rgba(229, 0, 77, .05);
    clip-path: polygon(25% 0, 75% 0, 100% 50%, 75% 100%, 25% 100%, 0 50%);
    transition: .25s ease;
}

.rc-showcase-card:hover .rc-showcase-card-hex {
    background: rgba(229, 0, 77, .5);
}

.rc-showcase-card-num {
    font-size: 14px;
    color: #e5004d;
    font-weight: 900;
    letter-spacing: .04em;
}

.rc-showcase-card h3 {
    margin: 10px 0 0;
    color: #10233b;
    font-size: 20px;
    line-height: 1.15;
    font-weight: 900;
    transition: .25s ease;
}

.rc-showcase-card p {
    margin: 12px 0 0;
    color: #5c6f86;
    font-size: 13px;
    font-weight: 500;
    line-height: 1.5;
    transition: .25s ease;
}

.rc-showcase-card small {
    display: block;
    margin-top: 14px;
    color: #7b8ca1;
    font-weight: 700;
    font-size: 13px;
    transition: .25s ease;
}

.rc-showcase-card:hover {
    transform: translateY(-3px);
    background: linear-gradient(135deg, #e5004d, #ff4d88);
    color: #fff;
    border-color: #e5004d;
}

.rc-showcase-card:hover .rc-showcase-card-num {
    color: rgba(255, 255, 255, .7);
}

.rc-showcase-card:hover h3 {
    color: #fff;
}

.rc-showcase-card:hover p {
    color: rgba(255, 255, 255, .85);
}

.rc-showcase-card:hover small {
    color: rgba(255, 255, 255, .82);
}

.rc-products-showcase-cta {
    text-align: center;
}

.rc-product-explorer {
    min-height: 100vh;
    padding: 110px 0;
    scroll-margin-top: 110px;
    background:
        radial-gradient(circle at 17% 18%, rgba(229, 0, 77, .10), transparent 25%),
        radial-gradient(circle at 88% 15%, rgba(42, 174, 235, .10), transparent 28%),
        linear-gradient(180deg, #f8fbff 0%, #eef4fa 100%);
    color: #10233b;
    overflow: hidden;
}

.rc-product-wrap {
    width: min(1240px, calc(100% - 40px));
    margin: auto;
}

.rc-product-head {
    max-width: 820px;
    margin-bottom: 46px;
}

.rc-product-head .rc-kicker {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 16px;
    color: #e5004d;
    font-size: 12px;
    font-weight: bold;
    letter-spacing: .08em;
    text-transform: uppercase;
}

.rc-product-head .rc-kicker::before {
    content: "";
    width: 30px;
    height: 2px;
    background: #e5004d;
}

.rc-product-head h2 {
    margin: 0;
    font-size: clamp(40px, 5vw, 76px);
    line-height: .98;
    letter-spacing: -.045em;
}

.rc-product-head p {
    max-width: 650px;
    color: #5c6f86;
    line-height: 1.8;
    font-size: 16px;
}

.rc-product-layout {
    display: grid;
    grid-template-columns: 320px 1fr;
    gap: 26px;
    align-items: start;
}

.rc-product-tabs {
    display: grid;
    gap: 14px;
    position: sticky;
    top: 24px;
}

.rc-product-tabs button {
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(16, 35, 59, .08);
    border-radius: 24px;
    background: #ffffff;
    color: #5c6f86;
    padding: 24px;
    text-align: left;
    font-weight: 900;
    cursor: pointer;
    box-shadow: 0 16px 40px rgba(15, 23, 42, .06);
    transition: .25s ease;
}

.rc-product-tabs button::after {
    content: "";
    position: absolute;
    inset: auto 18px 18px auto;
    width: 54px;
    height: 47px;
    background: rgba(229, 0, 77, .05);
    clip-path: polygon(25% 0, 75% 0, 100% 50%, 75% 100%, 25% 100%, 0 50%);
}

.rc-product-tabs button.active::after,
.rc-product-tabs button:hover::after {
    background: rgba(229, 0, 77, .5);
}

.rc-product-tabs button span {
    display: block;
    margin-top: 8px;
    color: #10233b;
    font-size: 20px;
    line-height: 1.15;
}

.rc-product-tabs button small {
    display: block;
    margin-top: 10px;
    color: #7b8ca1;
    font-weight: 700;
}

.rc-product-tabs button.active,
.rc-product-tabs button:hover {
    transform: translateY(-3px);
    background: linear-gradient(135deg, #e5004d, #ff4d88);
    color: #fff;
    border-color: #e5004d;
}

.rc-product-tabs button.active small,
.rc-product-tabs button:hover small {
    color: rgba(255, 255, 255, .82);
}

.rc-product-tabs button.active span,
.rc-product-tabs button:hover span {
    color: #fff;
}

.rc-product-panels {
    min-height: 640px;
    border: 1px solid rgba(16, 35, 59, .08);
    border-radius: 34px;
    background: rgba(255, 255, 255, .88);
    box-shadow: 0 24px 80px rgba(15, 23, 42, .08);
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);
    padding: 34px;
}

.rc-panel {
    display: none;
}

.rc-panel.active {
    display: block;
    animation: fadeUp .45s ease both;
}

.rc-panel-title {
    display: flex;
    align-items: center;
    gap: 18px;
    margin-bottom: 30px;
    padding-bottom: 24px;
    border-bottom: 1px solid rgba(16, 35, 59, .08);
}

.rc-panel-title span {
    display: grid;
    width: 70px;
    height: 61px;
    place-items: center;
    background: #e5004d;
    color: #fff;
    font-weight: 900;
    clip-path: polygon(25% 0, 75% 0, 100% 50%, 75% 100%, 25% 100%, 0 50%);
}

.rc-panel-title h3 {
    margin: 0;
    color: #10233b;
    font-size: clamp(28px, 3vw, 46px);
    line-height: 1.06;
}

.rc-subgroup {
    margin-top: 30px;
}

.rc-subgroup h4 {
    margin: 0 0 15px;
    color: #e5004d;
    font-size: 13px;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: .08em;
}

.rc-chemical-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(210px, 1fr));
    gap: 10px;
}

.rc-chemical-grid span {
    position: relative;
    min-height: 48px;
    display: flex;
    align-items: center;
    padding: 12px 14px 12px 42px;
    border: 1px solid rgba(16, 35, 59, .06);
    border-radius: 15px;
    background: #f8fbff;
    color: #24384f;
    font-size: 13px;
    font-weight: 700;
    line-height: 1.35;
    transition: .22s ease;
}

.rc-chemical-grid span::before {
    content: "";
    position: absolute;
    left: 16px;
    top: 50%;
    width: 11px;
    height: 11px;
    transform: translateY(-50%);
    background: #e5004d;
    clip-path: polygon(25% 0, 75% 0, 100% 50%, 75% 100%, 25% 100%, 0 50%);
}

.rc-chemical-grid span:hover {
    transform: translateY(-3px);
    background: #fff0f5;
    border-color: rgba(229, 0, 77, .25);
    box-shadow: 0 10px 24px rgba(229, 0, 77, .08);
}

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

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

.rc-timeline {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.rc-timeline-item {
    padding: 34px;
    border: 0.5px solid var(--rc-pink);
    border-radius: 28px;
    background: rgba(255, 255, 255, 0.07);
}

.rc-timeline-item b {
    display: block;
    margin-bottom: 32px;
    color: var(--rc-pink);
    font-size: 30px;
}

.rc-why {
    background: var(--rc-white);
}

.rc-why-visual {
    height: 560px;
    overflow: hidden;
    border-radius: 42px;
    box-shadow: var(--rc-shadow);
}

.rc-why-list ul {
    display: grid;
    gap: 14px;
    padding: 0;
    margin: 28px 0 0;
    list-style: none;
}

.rc-why-list li {
    position: relative;
    padding: 18px 18px 18px 54px;
    border: 1px solid var(--rc-border);
    border-radius: 18px;
    background: var(--rc-light);
    font-weight: 700;
}

.rc-why-list li::before {
    content: "";
    position: absolute;
    left: 20px;
    top: 20px;
    width: 16px;
    height: 16px;
    clip-path: polygon(50% -50%, 100% 50%, 50% 150%, 0 50%);
    background: var(--rc-pink);
}

.rc-contact {
    padding: 100px 0 110px;
    background: var(--rc-white);
}

.rc-contact-card {
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 34px;
    align-items: center;
    padding: 60px 56px;
    border-radius: 32px;
    background: linear-gradient(135deg, #071f37 0%, #0b3156 100%);
    box-shadow: 0 20px 50px rgba(0, 48, 87, 0.15);
    position: relative;
    overflow: hidden;
}

.rc-contact-card::before {
    content: "";
    position: absolute;
    top: -50%;
    right: -20%;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(229, 0, 77, 0.15) 0%, transparent 70%);
    pointer-events: none;
}

.rc-contact-card h2 {
    color: #fff !important;
    margin: 0;
}

.rc-contact-card .rc-kicker {
    color: var(--rc-pink);
    margin-bottom: 12px;
}

.rc-contact-actions {
    justify-content: flex-end;
    margin: 0;
    position: relative;
    z-index: 2;
}

.rc-contact-page {
    padding: 110px 0;
    background:
        radial-gradient(circle at 17% 18%, rgba(229, 0, 77, .06), transparent 25%),
        radial-gradient(circle at 88% 15%, rgba(42, 174, 235, .06), transparent 28%),
        linear-gradient(180deg, #f8fbff 0%, #eef4fa 100%);
}

.rc-contact-page-wrap {
    width: min(1240px, calc(100% - 40px));
    margin: auto;
}

.rc-contact-page-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    align-items: start;
}

.rc-contact-info .rc-kicker {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 16px;
    color: #e5004d;
    font-size: 12px;
    font-weight: bold;
    letter-spacing: .08em;
    text-transform: uppercase;
}

.rc-contact-info .rc-kicker::before {
    content: "";
    width: 30px;
    height: 2px;
    background: #e5004d;
}

.rc-contact-info h2 {
    margin: 0 0 16px;
    font-size: clamp(32px, 4vw, 52px);
    line-height: .98;
    letter-spacing: -.045em;
    color: #10233b;
}

.rc-contact-info>p {
    color: #5c6f86;
    line-height: 1.8;
    font-size: 16px;
    margin-bottom: 40px;
}

.rc-contact-details {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.rc-contact-detail-item {
    display: flex;
    gap: 18px;
    align-items: flex-start;
}

.rc-contact-detail-icon {
    width: 52px;
    height: 52px;
    flex-shrink: 0;
    display: grid;
    place-items: center;
    border-radius: 16px;
    background: linear-gradient(135deg, #e5004d, #ff4d88);
    color: #fff;
}

.rc-contact-detail-icon svg {
    width: 22px;
    height: 22px;
}

.rc-contact-detail-item h4 {
    margin: 0 0 4px;
    font-size: 14px;
    font-weight: 800;
    color: #10233b;
    text-transform: uppercase;
    letter-spacing: .04em;
}

.rc-contact-detail-item p {
    margin: 0;
    color: #5c6f86;
    font-size: 15px;
    line-height: 1.6;
}

.rc-contact-detail-item a {
    color: #e5004d;
    text-decoration: none;
    font-size: 15px;
    font-weight: 600;
    transition: color .2s ease;
}

.rc-contact-detail-item a:hover {
    color: #ff4d88;
}

.rc-contact-form {
    padding: 40px;
    border-radius: 34px;
    background: rgba(255, 255, 255, .88);
    border: 1px solid rgba(16, 35, 59, .08);
    box-shadow: 0 24px 80px rgba(15, 23, 42, .08);
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);
}

.rc-contact-form .rc-kicker {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 10px;
    color: #e5004d;
    font-size: 12px;
    font-weight: bold;
    letter-spacing: .08em;
    text-transform: uppercase;
}

.rc-contact-form .rc-kicker::before {
    content: "";
    width: 30px;
    height: 2px;
    background: #e5004d;
}

.rc-contact-form h2 {
    margin: 0 0 28px;
    font-size: 28px;
    font-weight: 900;
    color: #10233b;
    letter-spacing: -.02em;
}

.rc-contact-form .rc-form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    margin-bottom: 16px;
}
.rc-contact-form .rc-form-row p {
    margin: 0 !important;
}
.rc-contact-form label {
    display: flex;
    flex-direction: column;
    gap: 6px;
    margin-bottom: 16px;
}

.rc-contact-form label span {
    font-size: 13px;
    font-weight: 700;
    color: #10233b;
}
.rc-contact-form label span.wpcf7-not-valid-tip {
    color: red;
    font-size: 12px;
}
.rc-contact-form input,
.rc-contact-form textarea {
    width: 100%;
    border: 1px solid rgba(16, 35, 59, .12);
    border-radius: 14px;
    outline: none;
    background: #f8fbff;
    color: #10233b;
    font: inherit;
    padding: 14px 16px;
    transition: border-color .25s ease, background .25s ease, box-shadow .25s ease;
}
.rc-contact-form input[type="submit"] {
    background: linear-gradient(135deg, #e5004d, #ff4d88);
    color: #fff;
    font-weight: 900;
    border: none;
    cursor: pointer;
}

.rc-contact-form input:focus,
.rc-contact-form textarea:focus {
    border-color: #e5004d;
    background: #fff;
    box-shadow: 0 0 0 3px rgba(229, 0, 77, .1);
}

.rc-contact-form input::placeholder,
.rc-contact-form textarea::placeholder {
    color: #a0b0c4;
}

.rc-contact-form textarea {
    resize: vertical;
}

.rc-contact-form .rc-btn {
    width: 100%;
    margin-top: 8px;
    border: none;
}

.rc-footer {
    position: relative;
    padding: 35px 0 25px;
    background: linear-gradient(135deg, rgba(0, 48, 87, 0.88) 0%, rgba(6, 33, 58, 0.88) 100%), url('../images/slider.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    color: #fff;
    overflow: hidden;
}

.rc-footer::before {
    content: "";
    position: absolute;
    inset: 0;
    opacity: .08;
    background-image: linear-gradient(30deg, transparent 40%, #fff 41%, transparent 43%);
    background-size: 38px 66px;
    pointer-events: none;
}

.rc-footer-minimal {
    position: relative;
    z-index: 2;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.rc-footer-brand {
    display: flex;
    align-items: center;
    gap: 24px;
}

.rc-footer-logo-minimal {
    height: 48px;
    width: auto;
    border-radius: 8px;
    display: block;
    filter: drop-shadow(0 4px 12px rgba(0, 0, 0, .2));
}

.rc-footer-copy {
    color: rgba(255, 255, 255, 0.72);
    font-size: 14px;
    margin: 0;
}

.rc-footer-socials {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

.rc-social-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 46px;
    height: 46px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.15);
    color: #fff;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    text-decoration: none;
}

.rc-social-icon svg {
    transition: transform 0.3s ease;
}

.rc-social-icon:hover {
    background: var(--rc-pink);
    border-color: var(--rc-pink);
    transform: translateY(-4px);
    box-shadow: 0 8px 20px rgba(229, 0, 77, 0.4);
}

.rc-social-icon:hover svg {
    transform: scale(1.1);
}

.rc-footer-form {
    position: relative;
    z-index: 2;
    padding: 34px;
    border: 1px solid rgba(255, 255, 255, .14);
    border-radius: 28px;
    background: rgba(255, 255, 255, .08);
    box-shadow: 0 24px 70px rgba(0, 0, 0, .22);
    backdrop-filter: blur(16px);
}

.rc-footer-form h2 {
    margin: 0 0 24px;
    color: #fff;
    font-size: clamp(28px, 3vw, 44px);
    line-height: 1.08;
    letter-spacing: -.035em;
}

.rc-form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

.rc-footer-form label {
    display: grid;
    gap: 8px;
    margin-bottom: 16px;
}
.rc-footer-form p {
    margin: 0 !important;
}

.rc-footer-form label span {
    color: rgba(255, 255, 255, .76);
    font-size: 12px;
    font-weight: bold;
    letter-spacing: .04em;
    text-transform: uppercase;
}

.rc-footer-form input,
.rc-footer-form select,
.rc-footer-form textarea {
    width: 100%;
    border: 1px solid rgba(255, 255, 255, .16);
    border-radius: 14px;
    outline: none;
    background: rgba(255, 255, 255, .1);
    color: #fff;
    font: inherit;
    padding: 15px 16px;
    transition: border-color .25s ease, background .25s ease, box-shadow .25s ease;
}

.rc-footer-form textarea {
    resize: vertical;
}

.rc-footer-form input::placeholder,
.rc-footer-form textarea::placeholder {
    color: rgba(255, 255, 255, .45);
}

.rc-footer-form select option {
    color: var(--rc-navy);
}

.rc-footer-form input:focus,
.rc-footer-form select:focus,
.rc-footer-form textarea:focus {
    border-color: rgba(229, 0, 77, .85);
    background: rgba(255, 255, 255, .14);
    box-shadow: 0 0 0 4px rgba(229, 0, 77, .14);
}

.rc-footer-form button, .rc-footer-form input[type="submit"] {
    width: 100%;
    border: 0;
    cursor: pointer;
}

.rc-footer-bottom {
    position: relative;
    z-index: 2;
    display: flex;
    justify-content: flex-start;
    gap: 16px;
    padding-top: 0;
    margin-top: 16px;
    border-top: none;
    font-size: 13px;
    color: rgba(255, 255, 255, .64);
}

.rc-footer-bottom a {
    color: rgba(255, 255, 255, .78);
    text-decoration: none;
    transition: color .25s ease;
}

.rc-footer-bottom a:hover {
    color: var(--rc-pink);
}
.rc-footer-menu {
    display: flex;
    gap: 16px;
}
.rc-reveal {
    opacity: 0;
    transform: translateY(28px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.rc-reveal.is-visible {
    opacity: 1;
    transform: translateY(0);
}

@keyframes rcFloat {

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

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

@media (max-width: 980px) {
    .rc-nav-contact {
        display: none;
    }

    .rc-menu-toggle {
        display: block;
    }

    .rc-menu {
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        display: none;
        flex-direction: column;
        align-items: flex-start;
        padding: 24px 48px;
        background: transparent;
        gap: 20px;
    }

    .rc-nav.is-open .rc-menu {
        display: flex;
    }

    .rc-menu a {
        font-size: 18px;
        color: #fff;
    }

    .rc-nav.scrolled .rc-menu {
        background: #fff;
    }

    .rc-nav.scrolled .rc-menu a {
        color: #1a1a2e;
    }

    .rc-nav.scrolled .rc-menu a:hover,
    .rc-nav.scrolled .rc-menu a.active {
        color: #e5004d;
    }

    .rc-menu a::after {
        height: 1px;
    }

    .rc-menu a:hover,
    .rc-menu a.active {
        color: #e5004d;
    }

    .rc-menu-toggle span {
        background: #fff;
    }

    .rc-nav.scrolled .rc-menu-toggle span {
        background: #1a1a2e;
    }

    .rc-menu-toggle.is-active span:nth-child(1) {
        transform: rotate(45deg) translate(6px, 6px);
    }

    .rc-menu-toggle.is-active span:nth-child(2) {
        opacity: 0;
    }

    .rc-menu-toggle.is-active span:nth-child(3) {
        transform: rotate(-45deg) translate(6px, -6px);
    }

    .rc-hero-grid,
    .rc-two-col,
    .rc-products-grid,
    .rc-contact-card,
    .rc-contact-page-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .rc-service-grid,
    .rc-timeline,
    .rc-vm-grid {
        grid-template-columns: 1fr;
    }

    .rc-product-layout {
        grid-template-columns: 1fr;
    }

    .rc-product-tabs {
        position: static;
        grid-template-columns: repeat(2, 1fr);
    }

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

    .rc-hero-visual {
        min-height: 420px;
    }

    .rc-hero-slider {
        min-height: 600px;
    }

    .rc-hero-grid {
        min-height: 600px;
        padding: 130px 0 80px;
    }

    .rc-hero-arrow {
        width: 44px;
        height: 44px;
        opacity: 1;
    }

    .rc-hero-arrow svg {
        width: 18px;
        height: 18px;
    }

    .rc-hero-prev {
        left: 12px;
    }

    .rc-hero-next {
        right: 12px;
    }

    .rc-hex-frame {
        width: min(460px, calc(100vw - 80px));
        height: auto;
        aspect-ratio: 1.16 / 1;
    }

    .rc-strategy::before {
        width: 340px;
        height: 340px;
    }

    .rc-contact-actions {
        justify-content: flex-start;
    }

    .rc-footer-top {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .rc-form-row {
        grid-template-columns: 1fr;
    }

    .rc-footer-form {
        padding: 24px;
    }
}

@media (max-width: 640px) {
    .rc-nav {
        padding: 16px 20px;
    }

    .rc-nav.scrolled {
        padding: 12px 20px;
    }

    .rc-logo img {
        width: 180px;
    }

    .rc-nav.scrolled .rc-logo img {
        width: 140px;
    }

    .rc-nav.scrolled .rc-logo .rc-logo-light {
        display: none;
    }

    .rc-nav.scrolled .rc-logo .rc-logo-dark {
        display: block;
    }

    .rc-menu {
        padding: 16px 20px;
    }

    .rc-menu a {
        font-size: 16px;
    }

    .rc-hero-slider {
        min-height: 500px;
    }

    .rc-hero-grid {
        min-height: 500px;
        padding: 120px 0 70px;
        gap: 30px;
    }

    .rc-hero h1 {
        font-size: clamp(32px, 8vw, 42px);
    }

    .rc-hero p {
        font-size: 15px;
    }

    .rc-hero-actions {
        flex-direction: column;
    }

    .rc-hero-actions .rc-btn {
        width: 100%;
    }

    .rc-hero-visual {
        min-height: 300px;
    }

    .rc-hex-frame {
        inset: 20px 0 0 0;
        width: min(260px, calc(100vw - 40px));
        height: auto;
        aspect-ratio: 1.16 / 1;
    }

    .rc-floating-card {
        padding: 10px 14px;
        border-radius: 14px;
    }

    .rc-floating-card strong {
        font-size: 18px;
    }

    .rc-floating-card span {
        font-size: 10px;
    }

    .rc-hero-arrow {
        width: 38px;
        height: 38px;
    }

    .rc-hero-arrow svg {
        width: 16px;
        height: 16px;
    }

    .rc-hero-prev {
        left: 8px;
    }

    .rc-hero-next {
        right: 8px;
    }

    .rc-hero-dots {
        bottom: 24px;
    }

    .rc-card-a {
        left: 0;
        top: 10px;
    }

    .rc-card-b {
        right: 4px;
        bottom: 40px;
    }

    .rc-why-visual {
        height: 380px;
        border-radius: 28px;
    }

    .rc-contact-card {
        padding: 30px;
    }

    .rc-footer {
        padding: 30px 0 20px;
    }

    .rc-footer-minimal {
        justify-content: center;
        gap: 20px;
    }

    .rc-footer-brand {
        flex-direction: column;
        align-items: center;
        text-align: center;
        gap: 12px;
    }

    .rc-footer-logo-minimal {
        height: 40px;
    }

    .rc-section {
        padding: 70px 0;
    }

    .rc-contact {
        padding: 0 0 70px;
    }

    .rc-contact-page {
        padding: 70px 0;
    }

    .rc-contact-form {
        padding: 28px;
    }

    .rc-contact-form .rc-form-row {
        grid-template-columns: 1fr;
    }

    .rc-vm-card {
        padding: 32px 24px;
    }

    .rc-product-explorer {
        padding: 78px 0;
    }

    .rc-product-tabs {
        grid-template-columns: 1fr;
    }

    .rc-products-showcase-grid {
        grid-template-columns: 1fr;
    }

    .rc-product-panels {
        padding: 22px;
        border-radius: 24px;
    }

    .rc-panel-title {
        align-items: flex-start;
        flex-direction: column;
    }


}

/* ── Default Page, Single, and Archive Styles ── */
.rc-article-content {
    max-width: 880px;
    margin: 0 auto;
    padding: 50px;
    background: #ffffff;
    border: 1px solid var(--rc-border);
    border-radius: 32px;
    box-shadow: 0 10px 40px rgba(0, 48, 87, 0.03);
}

.rc-article-content h1, 
.rc-article-content h2, 
.rc-article-content h3, 
.rc-article-content h4 {
    color: var(--rc-navy-2);
    margin-top: 1.6em;
    margin-bottom: 0.6em;
    font-weight: 700;
}

.rc-article-content h2 { font-size: 28px; }
.rc-article-content h3 { font-size: 22px; }

.rc-article-content p {
    color: var(--rc-muted);
    font-size: 16px;
    line-height: 1.8;
    margin-bottom: 1.6em;
}

.rc-article-content ul, 
.rc-article-content ol {
    margin-bottom: 1.6em;
    padding-left: 24px;
}

.rc-article-content li {
    color: var(--rc-muted);
    font-size: 16px;
    line-height: 1.8;
    margin-bottom: 0.6em;
}

.rc-article-content blockquote {
    margin: 2em 0;
    padding: 18px 28px;
    border-left: 4px solid var(--rc-pink);
    background: var(--rc-light);
    border-radius: 0 16px 16px 0;
    font-style: italic;
}

.rc-article-content blockquote p {
    margin-bottom: 0;
}

/* Archive Grid & Cards */
.rc-archive-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(340px, 1fr));
    gap: 30px;
    margin-bottom: 50px;
}

.rc-archive-card {
    background: #ffffff;
    border: 1px solid var(--rc-border);
    border-radius: 28px;
    overflow: hidden;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.01);
}

.rc-archive-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--rc-shadow);
}

.rc-archive-card-image {
    height: 230px;
    overflow: hidden;
    display: block;
}

.rc-archive-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.rc-archive-card:hover .rc-archive-card-image img {
    transform: scale(1.06);
}

.rc-archive-card-content {
    padding: 28px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.rc-archive-meta {
    font-size: 12px;
    color: var(--rc-muted);
    margin-bottom: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.rc-archive-card-content h3 {
    font-size: 20px;
    margin: 0 0 14px;
    line-height: 1.35;
    font-weight: 700;
}

.rc-archive-card-content h3 a {
    color: var(--rc-navy-2);
    text-decoration: none;
    transition: color 0.3s ease;
}

.rc-archive-card-content h3 a:hover {
    color: var(--rc-pink);
}

.rc-archive-card-content p {
    color: var(--rc-muted);
    font-size: 14px;
    line-height: 1.65;
    margin: 0 0 24px;
}

.rc-archive-more-btn {
    margin-top: auto;
    color: var(--rc-pink);
    font-weight: 700;
    text-decoration: none;
    font-size: 14px;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    transition: gap 0.3s ease;
}

.rc-archive-more-btn:hover {
    gap: 12px;
}

.rc-archive-more-btn::after {
    content: '→';
}

/* Pagination */
.rc-pagination {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 50px;
}

.rc-pagination .page-numbers {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 46px;
    height: 46px;
    padding: 0 14px;
    border: 1px solid var(--rc-border);
    border-radius: 14px;
    text-decoration: none;
    color: var(--rc-navy);
    font-weight: 700;
    font-size: 14px;
    transition: all 0.3s ease;
}

.rc-pagination .page-numbers:hover,
.rc-pagination .page-numbers.current {
    background: var(--rc-pink);
    border-color: var(--rc-pink);
    color: #fff;
    box-shadow: 0 8px 24px rgba(229, 0, 77, 0.22);
}

/* Single Post Footer & Tags */
.rc-post-footer {
    margin-top: 40px;
    padding-top: 30px;
    border-top: 1px solid var(--rc-border);
}

.rc-post-tags a {
    display: inline-block;
    padding: 6px 14px;
    background: var(--rc-light);
    border: 1px solid var(--rc-border);
    border-radius: 8px;
    color: var(--rc-navy-2);
    text-decoration: none;
    font-size: 13px;
    margin-right: 8px;
    margin-bottom: 8px;
    transition: all 0.3s ease;
    font-weight: 600;
}

.rc-post-tags a:hover {
    background: var(--rc-pink);
    border-color: var(--rc-pink);
    color: #fff;
    box-shadow: 0 6px 15px rgba(229, 0, 77, 0.15);
}

@media (max-width: 768px) {
    .rc-article-content {
        padding: 30px 20px;
        border-radius: 20px;
    }
    .rc-archive-grid {
        grid-template-columns: 1fr;
    }
}

/* Clients Section & Infinite Marquee Slider */
.rc-clients {
    background: var(--rc-white);
    padding: 100px 0;
    overflow: hidden;
}

.rc-clients-marquee-wrap {
    width: 100%;
    margin-top: 40px;
    position: relative;
}

/* Gradient fade effects on the edges of the marquee */
.rc-clients-marquee-wrap::before,
.rc-clients-marquee-wrap::after {
    content: "";
    position: absolute;
    top: 0;
    bottom: 0;
    width: 120px;
    z-index: 3;
    pointer-events: none;
}

.rc-clients-marquee-wrap::before {
    left: 0;
    background: linear-gradient(to right, var(--rc-white) 0%, transparent 100%);
}

.rc-clients-marquee-wrap::after {
    right: 0;
    background: linear-gradient(to left, var(--rc-white) 0%, transparent 100%);
}

.rc-clients-marquee {
    display: flex;
    overflow: hidden;
    user-select: none;
    width: 100%;
    padding: 20px 0;
}

.rc-clients-track {
    display: flex;
    width: max-content;
    animation: scrollClients 45s linear infinite;
}

.rc-clients-marquee:hover .rc-clients-track {
    animation-play-state: paused;
}

.rc-client-item {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 240px;
    height: 110px;
    padding: 0 32px;
    background: #fff;
    border: 1px solid var(--rc-border);
    border-radius: 20px;
    margin: 0 14px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 4px 10px rgba(0, 48, 87, 0.03);
}

.rc-client-item img {
    max-height: 90px;
    max-width: 180px;
    object-fit: contain;
    filter: grayscale(100%) opacity(70%);
    transition: filter 0.3s ease, opacity 0.3s ease;
}

.rc-client-item:hover {
    transform: translateY(-5px);
    background: #fff;
    border-color: var(--rc-pink);
    box-shadow: 0 12px 28px rgba(229, 0, 77, 0.12);
}

.rc-client-item:hover img {
    filter: grayscale(0%) opacity(100%);
}

@keyframes scrollClients {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}

/* Clients Grid Page */
.rc-clients-page {
    background: var(--rc-white);
    padding: 100px 0;
}

.rc-clients-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
    gap: 30px;
}

.rc-client-card {
    background: #fff;
    border: 1px solid var(--rc-border);
    border-radius: 24px;
    padding: 40px 30px;
    text-align: center;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 10px 30px rgba(0, 48, 87, 0.03);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.rc-client-card:hover {
    transform: translateY(-8px);
    background: #fff;
    border-color: var(--rc-pink);
    box-shadow: 0 20px 40px rgba(229, 0, 77, 0.12);
}

.rc-client-logo-wrap {
    height: 130px;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.rc-client-logo-wrap img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    filter: grayscale(100%) opacity(100%);
    transition: filter 0.3s ease, opacity 0.3s ease;
}

.rc-client-card:hover .rc-client-logo-wrap img {
    filter: grayscale(0%) opacity(100%);
}

.rc-client-placeholder-logo {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(229, 0, 77, 0.08), rgba(0, 48, 87, 0.08));
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--rc-pink);
    font-weight: 800;
    font-size: 24px;
    border: 1px solid rgba(229, 0, 77, 0.15);
    transition: transform 0.3s ease;
}

.rc-client-card:hover .rc-client-placeholder-logo {
    transform: scale(1.1) rotate(5deg);
}

.rc-client-card h3 {
    margin: 0;
    font-size: 16px;
    color: var(--rc-navy-2);
    font-weight: 700;
    line-height: 1.4;
}

.rc-no-clients-message {
    grid-column: 1 / -1;
    text-align: center;
    padding: 60px 40px;
    background: var(--rc-light);
    border: 1px dashed var(--rc-border);
    border-radius: 20px;
    color: var(--rc-muted);
    font-size: 16px;
}

/* Certifications Section */
.rc-certs {
    background: var(--rc-light);
    padding: 100px 0;
}

.rc-certs-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 30px;
}

.rc-cert-card {
    background: #fff;
    border: 1px solid var(--rc-border);
    border-radius: 24px;
    padding: 45px 30px;
    text-align: center;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 10px 30px rgba(0, 48, 87, 0.03);
    display: flex;
    flex-direction: column;
    align-items: center;
}

.rc-cert-card:hover {
    transform: translateY(-8px);
    border-color: var(--rc-pink);
    box-shadow: 0 20px 40px rgba(229, 0, 77, 0.12);
}

.rc-cert-badge {
    width: 84px;
    height: 84px;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(229, 0, 77, 0.08), rgba(0, 48, 87, 0.05));
    border: 1px solid rgba(229, 0, 77, 0.18);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
    transition: transform 0.3s ease;
}

.rc-cert-card:hover .rc-cert-badge {
    transform: scale(1.1) rotate(5deg);
}

.rc-cert-number {
    color: var(--rc-pink);
    font-weight: 800;
    font-size: 14px;
    letter-spacing: -0.01em;
}

.rc-cert-card h3 {
    margin: 0;
    font-size: 18px;
    color: var(--rc-navy-2);
    font-weight: 700;
    line-height: 1.35;
}

@media (max-width: 991px) {
    .rc-certs-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 24px;
    }
}

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

/* WhatsApp Floating Button */
.rc-whatsapp-float {
    position: fixed;
    width: 60px;
    height: 60px;
    bottom: 40px;
    right: 40px;
    background-color: #25d366;
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    z-index: 99999;
    transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
    animation: rc-whatsapp-pulse 2s infinite;
}

.rc-whatsapp-float:hover {
    background-color: #20ba5a;
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 8px 25px rgba(37, 211, 102, 0.4);
}

.rc-whatsapp-float img {
    width: 34px;
    height: 34px;
    object-fit: contain;
    transition: transform 0.3s ease;
}

.rc-whatsapp-float:hover img {
    transform: scale(1.1);
}

@keyframes rc-whatsapp-pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.5), 0 4px 15px rgba(0, 0, 0, 0.2);
    }
    70% {
        box-shadow: 0 0 0 15px rgba(37, 211, 102, 0), 0 4px 15px rgba(0, 0, 0, 0.2);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0), 0 4px 15px rgba(0, 0, 0, 0.2);
    }
}

/* Responsive Styles for WhatsApp Button */
@media (max-width: 768px) {
    .rc-whatsapp-float {
        width: 50px;
        height: 50px;
        bottom: 20px;
        right: 20px;
    }
    .rc-whatsapp-float img {
        width: 28px;
        height: 28px;
    }
}

/* Industries Section */
.rc-industries {
    background: var(--rc-light);
    position: relative;
    border-top: 1px solid var(--rc-border);
    border-bottom: 1px solid var(--rc-border);
}

.rc-industries::before {
    content: "";
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(0, 48, 87, 0.02) 1px, transparent 1px),
        linear-gradient(90deg, rgba(0, 48, 87, 0.02) 1px, transparent 1px);
    background-size: 50px 50px;
    pointer-events: none;
}

.rc-industries-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 24px;
    margin-top: 48px;
    position: relative;
    z-index: 2;
}

.rc-industry-card {
    flex: 1 1 calc(25% - 24px);
    max-width: calc(25% - 18px);
    min-width: 260px;
    background: var(--rc-white);
    border: 1px solid rgba(0, 48, 87, 0.08);
    border-radius: 20px;
    padding: 30px 24px;
    text-align: center;
    box-shadow: 0 8px 24px rgba(0, 48, 87, 0.02);
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1),
                border-color 0.4s ease,
                box-shadow 0.4s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    cursor: pointer;
    min-height: 100px;
}

.rc-industry-card::before {
    content: "";
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 50% 50%, rgba(229, 0, 77, 0.06), transparent 70%);
    opacity: 0;
    transition: opacity 0.4s ease;
    pointer-events: none;
    z-index: 1;
}

.rc-industry-card:hover {
    transform: translateY(-6px);
    border-color: rgba(229, 0, 77, 0.3);
    box-shadow: 0 16px 36px rgba(0, 48, 87, 0.06), 0 8px 16px rgba(229, 0, 77, 0.02);
}

.rc-industry-card:hover::before {
    opacity: 1;
}

.rc-industry-card h3 {
    font-size: 16px;
    line-height: 1.4;
    font-weight: 700;
    color: var(--rc-navy);
    margin: 0;
    position: relative;
    z-index: 2;
    transition: color 0.3s ease;
}

.rc-industry-card:hover h3 {
    color: var(--rc-pink);
}

/* Responsiveness for Industries Section */
@media (max-width: 1100px) {
    .rc-industry-card {
        flex: 1 1 calc(33.333% - 24px);
        max-width: calc(33.333% - 16px);
    }
}

@media (max-width: 800px) {
    .rc-industries {
        padding: 80px 0;
    }
    .rc-industry-card {
        flex: 1 1 calc(50% - 24px);
        max-width: calc(50% - 12px);
        padding: 24px 20px;
        min-height: 90px;
    }
}

@media (max-width: 520px) {
    .rc-industry-card {
        flex: 1 1 100%;
        max-width: 100%;
        padding: 20px;
        min-height: auto;
    }
}