*,
*::before,
*::after {
    /* Reset Box Model */
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    border: 0;
    outline: 0;
    /* Reset Typography */
    font-size: 100%;
    font-weight: inherit;
    font-style: inherit;
    font-family: inherit;
    vertical-align: baseline;
    line-height: 1;
    color: inherit;
    text-decoration: none;
    /* Reset Backgrounds */
    background: transparent;
}

body {
    line-height: 1.5;
    -webkit-font-smoothing: antialiased;
    background: black;
}

img,
picture,
video,
canvas,
svg {
    display: block;
    max-width: 100%;
}

ol,
ul {
    list-style: none;
}

table {
    border-collapse: collapse;
    border-spacing: 0;
}

button,
input,
textarea,
select {
    font: inherit;
    background: none;
    border: none;
    color: inherit;
    appearance: none;
    -webkit-appearance: none;
}

:root {
    /* Professional University Blue Palette */
    --rs-color-primary: #1e40af;
    /* Blue 800 - Classic University Blue */
    --rs-color-primary-glow: rgba(30, 64, 175, 0.4);
    --rs-color-secondary: #3b82f6;
    /* Blue 500 - Bright Accent */
    --rs-color-accent: #0284c7;
    /* Sky 600 */
    --rs-color-dark: #333333;
    /* Slate 900 */
    --rs-color-text-main: #334155;
    /* Slate 700 */
    --rs-color-text-muted: #64748b;
    /* Slate 500 */
    --rs-bg-body: #f8fafc;

    /* Glassmorphism Variables */
    --rs-glass-bg: rgba(255, 255, 255, 0.85);
    /* Slightly less transparent for better readability over image */
    --rs-glass-border: rgba(255, 255, 255, 0.6);
    --rs-glass-shadow: 0 8px 32px 0 rgba(15, 23, 42, 0.1);

    /* Gradients - Professional & Trustworthy */
    --rs-gradient-primary: linear-gradient(135deg, #1e40af 0%, #3b82f6 100%);

    /* Background Overlay Gradient */
    --rs-bg-overlay: linear-gradient(135deg, rgba(248, 250, 252, 0.95) 0%, rgba(239, 246, 255, 0.85) 100%);

    --rs-font-main: 'Outfit', 'Inter', sans-serif;
    --rs-container-width: 1300px;
    --rs-radius-lg: 1.5rem;
    --rs-radius-xl: 2.5rem;
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    font-family: var(--rs-font-main);
    background-color: var(--rs-bg-body);
    color: var(--rs-color-text-main);
    line-height: 1.6;
    overflow-x: hidden;
    /* Restored Parallax Background */
    background-image: var(--rs-bg-overlay);
    background-size: cover;
    background-attachment: fixed;
    background-position: center;
}

/* * =========================================
         * UTILITY CLASSES (rs- prefix)
         * =========================================
         */
.rs-container {
    max-width: var(--rs-container-width);
    margin: 0 auto;
    padding: 0 1.5rem;
}

/* Modern Light Glassmorphism */
.rs-glass {
    background: var(--rs-glass-bg);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid var(--rs-glass-border);
    box-shadow: var(--rs-glass-shadow);
}

.rs-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.875rem 1.75rem;
    border-radius: 0.75rem;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    cursor: pointer;
    border: none;
    font-size: 1rem;
    gap: 0.625rem;
    position: relative;
    overflow: hidden;
}

.rs-btn-primary {
    background: var(--rs-gradient-primary);
    color: white;
    box-shadow: 0 10px 20px -5px rgba(30, 64, 175, 0.4);
}

.rs-btn-primary:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 20px 30px -10px rgba(30, 64, 175, 0.6);
}

.rs-btn-outline {
    background: white;
    border: 1px solid #e2e8f0;
    color: var(--rs-color-text-main);
}

.rs-btn-outline:hover {
    background: #f8fafc;
    border-color: var(--rs-color-primary);
    color: var(--rs-color-primary);
    transform: translateY(-3px);
}

.rs-btn-lg {
    padding: 1rem 2rem;
    font-size: 1.125rem;
}

.rs-btn-full {
    width: 100%;
}

.rs-icon {
    width: 20px;
    height: 20px;
    fill: currentColor;
}

.rs-icon-lg {
    width: 28px;
    /* Slightly larger */
    height: 28px;
}

/* Animation Classes */
.rs-fade-up {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

.rs-fade-up.rs-active {
    opacity: 1;
    transform: translateY(0);
}

/* Staggered Animations */
.rs-stagger-item {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 1s cubic-bezier(0.16, 1, 0.3, 1), transform 1s cubic-bezier(0.16, 1, 0.3, 1);
}

.rs-active .rs-stagger-item {
    opacity: 1;
    transform: translateY(0);
}

.rs-delay-1 {
    transition-delay: 0.1s;
}

.rs-delay-2 {
    transition-delay: 0.2s;
}

.rs-delay-3 {
    transition-delay: 0.3s;
}

.rs-delay-4 {
    transition-delay: 0.4s;
}

.rs-delay-5 {
    transition-delay: 0.5s;
}

.rs-slide-in-left {
    opacity: 0;
    transform: translateX(-30px);
    transition: opacity 1s cubic-bezier(0.16, 1, 0.3, 1), transform 1s cubic-bezier(0.16, 1, 0.3, 1);
}

.rs-active .rs-slide-in-left {
    opacity: 1;
    transform: translateX(0);
}

@keyframes rs-text-shine {
    0% {
        background-position: 100% 0;
    }

    100% {
        background-position: -100% 0;
    }
}

.rs-text-shine {
    background: linear-gradient(90deg,
            transparent,
            rgba(255, 255, 255, 0.4),
            transparent);
    background-size: 200% 100%;
    -webkit-background-clip: text;
    background-clip: text;
    animation: rs-text-shine 3s infinite linear;
}

/* * =========================================
         * HEADER SECTION
         * =========================================
         */
.rs-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    padding: 1.5rem 0;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    background: white;
}

.rs-header.scrolled {
    background: white;
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    padding: 0.875rem 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.03);
}

.rs-nav-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
    /* Prevent elements from touching */
}

.rs-logo {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--rs-color-dark);
    display: flex;
    align-items: center;
    /*gap: 0.5rem;*/
    text-decoration: none;
    letter-spacing: -0.02em;
    flex-shrink: 0;
    /* Prevent logo from shrinking */
}

.rs-logo span {
    color: var(--rs-color-primary);
}

.logo-cr {
    height: 28px;
    width: 28px;
    border-radius: 50%;
    object-fit: cover;
}

.rs-nav-menu {
    display: flex;
    gap: 2rem;
    /* Reduce gap slightly */
    align-items: center;
    flex-wrap: nowrap;
}

.rs-nav-link {
    color: var(--rs-color-text-main);
    text-decoration: none;
    font-weight: 600;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    position: relative;
    padding: 0.5rem 0;
}

.rs-nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--rs-color-primary);
    transition: width 0.3s ease;
    border-radius: 2px;
}

.rs-nav-link:hover {
    color: var(--rs-color-primary);
}

.rs-nav-link:hover::after {
    width: 100%;
}

.rs-header-actions {
    display: flex;
    gap: 1rem;
    flex-shrink: 0;
    /* Prevent actions from shrinking */
    align-items: center;
}

.rs-hamburger {
    display: none;
    background: none;
    border: none;
    color: var(--rs-color-dark);
    cursor: pointer;
    z-index: 1100;
}

/* * =========================================
         * MOBILE SIDEBAR
         * =========================================
         */
.rs-sidebar-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.4);
    z-index: 1050;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    backdrop-filter: blur(4px);
}

.rs-sidebar {
    position: fixed;
    top: 0;
    right: -320px;
    width: 300px;
    height: 100%;
    background: white;
    z-index: 1100;
    padding: 2.5rem;
    display: flex;
    flex-direction: column;
    gap: 2rem;
    transition: right 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    box-shadow: -10px 0 30px rgba(0, 0, 0, 0.1);
}

.rs-sidebar.rs-open {
    right: 0;
}

.rs-sidebar-overlay.rs-open {
    opacity: 1;
    visibility: visible;
}

.rs-mobile-nav {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

/* * =========================================
         * HERO SECTION
         * =========================================
         */
.rs-hero {
    min-height: 70vh;
    display: flex;
    align-items: center;
    padding-top: 140px;
    padding-bottom: 80px;
    position: relative;
}

.rs-hero-content {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 5rem;
    align-items: center;
}

.rs-hero-text h1 {
    font-size: 3.75rem;
    line-height: 1.15;
    margin-bottom: 1.5rem;
    color: var(--rs-color-dark);
    font-weight: 800;
    letter-spacing: -0.03em;
}

.rs-hero-text h1 span {
    color: var(--rs-color-primary);
}

.rs-hero-text p {
    font-size: 1.2rem;
    color: var(--rs-color-text-muted);
    margin-bottom: 2.5rem;
    max-width: 540px;
    font-weight: 400;
}

.rs-hero-actions {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

/* Hero Cards - Advanced 2025 Glassmorphism */
.rs-hero-btn-card {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 2.25rem 2.5rem;
    border-radius: 1.75rem;
    text-decoration: none;
    transition: all 0.6s cubic-bezier(0.16, 1, 0.3, 1);
    background: rgba(255, 255, 255, 0.3);
    backdrop-filter: blur(20px) saturate(180%);
    -webkit-backdrop-filter: blur(20px) saturate(180%);
    border: 1px solid rgba(255, 255, 255, 0.4);
    box-shadow:
        0 10px 40px -10px rgba(0, 0, 100, 0.05),
        inset 0 0 0 1px rgba(255, 255, 255, 0.5);
    position: relative;
    overflow: hidden;
}

.rs-hero-btn-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(120deg,
            transparent,
            rgba(255, 255, 255, 0.4),
            transparent);
    transform: translateX(-100%);
    transition: transform 0.8s ease;
    z-index: 1;
}

/* Infinite Shimmer for specific button */
.rs-hero-btn-card.rs-btn-shimmer::before {
    animation: rs-infinite-shimmer 3s infinite linear;
}

@keyframes rs-infinite-shimmer {
    0% {
        transform: translateX(-100%);
    }

    20%,
    100% {
        transform: translateX(100%);
    }
}

.rs-hero-btn-card:hover {
    transform: translateY(-12px) scale(1.02);
    background: rgba(255, 255, 255, 0.6);
    border-color: var(--rs-color-primary);
    box-shadow:
        0 40px 80px -20px rgba(30, 64, 175, 0.15),
        inset 0 0 0 1px rgba(30, 64, 175, 0.2);
}

.rs-hero-btn-card:hover::before {
    transform: translateX(100%);
}

.rs-hero-btn-card .rs-btn-text {
    position: relative;
    z-index: 2;
}

.rs-hero-btn-card .rs-btn-text h3 {
    color: var(--rs-color-dark);
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
    font-weight: 800;
    letter-spacing: -0.02em;
}

.rs-btn-text p {
    color: var(--rs-color-text-muted);
    font-size: 1rem;
    margin: 0;
    font-weight: 500;
    opacity: 0.8;
}

.rs-hero-btn-card .rs-icon-lg {
    width: 64px;
    height: 64px;
    padding: 16px;
    background: white;
    border-radius: 1.25rem;
    transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
    position: relative;
    z-index: 2;
    fill: var(--rs-color-primary);
    box-shadow: 0 10px 20px -5px rgba(0, 0, 0, 0.05);
}

.rs-hero-btn-card:hover .rs-icon-lg {
    background: var(--rs-color-primary);
    fill: white !important;
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 15px 30px -10px rgba(30, 64, 175, 0.4);
}

/* Transparent Glass Variant */
.rs-hero-btn-card.glass-transparent {
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    box-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.05);
}

.rs-hero-btn-card.glass-transparent:hover {
    background: rgba(255, 255, 255, 0.4);
    border-color: rgba(255, 255, 255, 0.8);
    transform: translateY(-8px) scale(1.01);
    box-shadow:
        0 20px 40px -10px rgba(0, 0, 0, 0.1),
        inset 0 0 0 1px rgba(255, 255, 255, 0.4);
}

/* * =========================================
         * CUSTOMER LOGOS (Infinite Scroll)
         * =========================================
         */
.rs-logos-section {
    padding: 4rem 0;
    background: white;
    border-top: 1px solid rgba(0, 0, 0, 0.05);
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    overflow: hidden;
    position: relative;
    z-index: 2;
}

.rs-logos-header {
    text-align: center;
    margin-bottom: 3rem;
}

.rs-logos-title {
    font-size: 0.875rem;
    font-weight: 700;
    letter-spacing: 0.2em;
    color: var(--rs-color-text-muted);
    text-transform: uppercase;
}

.rs-logos-canvas {
    position: relative;
    width: 100%;
    padding: 1rem 0;
}

/* Edge Fading Effect */
.rs-logos-canvas::before,
.rs-logos-canvas::after {
    content: "";
    position: absolute;
    top: 0;
    width: 250px;
    height: 100%;
    z-index: 2;
    pointer-events: none;
}

.rs-logos-canvas::before {
    left: 0;
    background: linear-gradient(to right, white, transparent);
}

.rs-logos-canvas::after {
    right: 0;
    background: linear-gradient(to left, white, transparent);
}

.rs-logos-track {
    display: flex;
    width: max-content;
    animation: scrollLogos 40s linear infinite;
    gap: 4rem;
    padding-left: 4rem;
}

.rs-logo-item {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    opacity: 0.5;
    transition: all 0.4s ease;
    filter: grayscale(100%);
}

.rs-logo-item:hover {
    opacity: 1;
    filter: grayscale(0%);
    transform: translateY(-2px);
}

.rs-logo-placeholder {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem 1.5rem;
    background: #f8fafc;
    border-radius: 0.75rem;
    border: 1px solid #e2e8f0;
}

.rs-logo-img {
    height: 32px;
    width: auto;
    object-fit: contain;
}

.rs-logo-text {
    font-weight: 700;
    font-size: 1.125rem;
    color: var(--rs-color-dark);
    letter-spacing: -0.01em;
}

@keyframes scrollLogos {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(calc(-50% - 2rem));
    }
}

/* * =========================================
         * ABOUT SECTION
         * =========================================
         */
.rs-about-section {
    padding: 8rem 0;
    position: relative;
    background: linear-gradient(to bottom, #f8fafc, #ffffff);
}

.rs-about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8rem;
    align-items: center;
}

.rs-about-card {
    padding: 4rem;
    border-radius: 3rem;
    background: white;
    border: 1px solid #f1f5f9;
    box-shadow: 0 50px 100px -20px rgba(0, 0, 0, 0.08);
    /* Premium Shadow */
    position: relative;
    overflow: hidden;
}

.rs-section-title {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: var(--rs-color-dark);
    font-weight: 700;
}

.rs-feature-list {
    list-style: none;
    margin-top: 2rem;
}

.rs-feature-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.25rem;
    color: var(--rs-color-text-main);
    font-weight: 500;
}

.rs-check-icon {
    color: var(--rs-color-primary);
    flex-shrink: 0;
    background: rgba(37, 99, 235, 0.1);
    border-radius: 50%;
    padding: 2px;
    width: 24px;
    height: 24px;
}

/* * =========================================
         * FOOTER
         * =========================================
         */
.rs-footer {
    background: white;
    padding: 5rem 0 2rem 0;
    border-top: 1px solid #e2e8f0;
}

.rs-footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 4rem;
    margin-bottom: 4rem;
}

.rs-footer h4 {
    color: var(--rs-color-dark);
    margin-bottom: 1.5rem;
    font-weight: 700;
}

.rs-footer-links a {
    display: block;
    color: var(--rs-color-text-muted);
    text-decoration: none;
    margin-bottom: 0.85rem;
    transition: color 0.2s;
}

.rs-footer-links a:hover {
    color: var(--rs-color-primary);
}

.rs-copyright {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid #f1f5f9;
    color: #94a3b8;
    font-size: 0.875rem;
}

/* * =========================================
         * ENHANCED ANIMATED MODALS (Login Popups)
         * =========================================
         */
.rs-modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(15, 23, 42, 0.4);
    /* Darker backdrop for contrast */
    backdrop-filter: blur(8px);
    z-index: 2000;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s ease;
    perspective: 1000px;
    /* Essential for 3D effect */
}

.rs-modal-overlay.rs-open {
    opacity: 1;
    visibility: visible;
}

.rs-modal {
    background: white;
    border: 1px solid #e2e8f0;
    width: 100%;
    max-width: 480px;
    padding: 3rem;
    border-radius: 1.5rem;
    /* Initial Animation State: Scaled down, rotated slightly, moved down */
    opacity: 0;
    transform: scale(0.8) translateY(50px) rotateX(10deg);
    /* The Spring/Elastic Animation */
    transition: all 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
    position: relative;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.15);
    display: none;
}

.rs-modal-overlay.rs-open .rs-modal {
    opacity: 1;
    /* Final Animation State: Normal */
    transform: scale(1) translateY(0) rotateX(0deg);
}

.rs-modal-header {
    margin-bottom: 2.5rem;
    text-align: center;
}

.rs-modal-title {
    font-size: 1.75rem;
    color: var(--rs-color-dark);
    margin-bottom: 0.5rem;
    font-weight: 700;
}

.rs-close-modal {
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
    background: #f1f5f9;
    border: none;
    color: #64748b;
    cursor: pointer;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s;
}

.rs-close-modal:hover {
    background: #e2e8f0;
    color: var(--rs-color-dark);
    transform: rotate(90deg);
}

.rs-form-group {
    margin-bottom: 1.5rem;
}

.rs-form-label {
    display: block;
    margin-bottom: 0.5rem;
    color: var(--rs-color-text-main);
    font-size: 0.9rem;
    font-weight: 500;
}

.rs-form-input {
    width: 100%;
    padding: 0.875rem;
    background: #f8fafc;
    border: 1px solid #cbd5e1;
    border-radius: 0.5rem;
    color: var(--rs-color-dark);
    outline: none;
    transition: all 0.2s;
    font-size: 1rem;
}

.rs-form-input:focus {
    border-color: var(--rs-color-primary);
    background: white;
    box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.1);
}

.rs-form-input::placeholder {
    color: #94a3b8;
}

/* * =========================================
         * RESPONSIVE DESIGN
         * =========================================
         */
@media (max-width: 992px) {
    .rs-hero-content {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 3rem;
    }

    .rs-hero-text h1 {
        font-size: 3rem;
    }

    .rs-hero-text p {
        margin: 0 auto 2.5rem auto;
    }

    .rs-about-grid {
        grid-template-columns: 1fr;
        gap: 4rem;
    }
}

@media (max-width: 768px) {

    .rs-nav-menu,
    .rs-header-actions {
        display: none;
    }

    .rs-hamburger {
        display: block;
    }

    .rs-hero-content {
        padding-top: 1rem;
    }

    .rs-about-card {
        padding: 2rem;
        border-radius: 2rem;
    }

    .rs-footer-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .rs-modal {
        padding: 1.5rem;
        width: 90%;
    }
}

/* * =========================================
         * ABOUT US PAGE SPECIFIC STYLES
         * =========================================
         */
.rs-about-page {
    padding-top: 60px;
}

.rs-about-hero {
    padding: 140px 0 80px;
    background: radial-gradient(circle at 70% 30%, rgba(37, 99, 235, 0.05) 0%, transparent 50%);
    position: relative;
    overflow: hidden;
}

.rs-hero-image-wrapper {
    position: relative;
    border-radius: 2rem;
    overflow: hidden;
    box-shadow: 0 50px 100px -20px rgba(0, 0, 0, 0.1);
}

.rs-about-hero-img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.8s ease;
}

.rs-about-hero:hover .rs-about-hero-img {
    transform: scale(1.05);
}

.rs-mission-section {
    padding: 60px 0;
    margin-top: -60px;
}

.rs-mission-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2.5rem;
}

.rs-mission-card {
    padding: 3.5rem;
    border-radius: var(--rs-radius-xl);
    text-align: center;
    transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
    background: white;
    border: 1px solid #f1f5f9;
}

.rs-mission-card:hover {
    transform: translateY(-15px);
    border-color: var(--rs-color-primary);
    box-shadow: 0 40px 80px -20px rgba(30, 64, 175, 0.12);
}

.rs-mission-icon {
    width: 64px;
    height: 64px;
    background: rgba(37, 99, 235, 0.1);
    color: var(--rs-color-primary);
    border-radius: 1.25rem;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
}

.rs-mission-card h2 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
    color: var(--rs-color-dark);
}

.rs-stats-row {
    display: flex;
    gap: 3rem;
    margin-top: 3rem;
    flex-wrap: wrap;
}

.rs-stat-item h3 {
    font-size: 2.5rem;
    color: var(--rs-color-primary);
    margin-bottom: 0.25rem;
    font-weight: 800;
}

.rs-stat-item p {
    color: var(--rs-color-text-muted);
    font-weight: 600;
}

.rs-values-section {
    padding: 100px 0;
    background: #f8fafc;
}

.rs-values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.rs-value-card {
    background: white;
    padding: 3rem;
    border-radius: var(--rs-radius-lg);
    border: 1px solid #e2e8f0;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.rs-value-card:hover {
    box-shadow: 0 30px 60px -12px rgba(0, 0, 0, 0.08);
    transform: translateY(-10px);
    border-color: var(--rs-color-primary);
}

.rs-value-icon {
    font-size: 0.875rem;
    font-weight: 800;
    color: var(--rs-color-primary);
    margin-bottom: 1.5rem;
    display: inline-block;
    padding: 0.5rem 1rem;
    background: rgba(37, 99, 235, 0.05);
    border-radius: 0.75rem;
}

.rs-value-card h4 {
    font-size: 1.4rem;
    margin-bottom: 1rem;
    color: var(--rs-color-dark);
}

.rs-cta-section {
    padding: 100px 0;
}

.rs-cta-card {
    padding: 5rem;
    border-radius: 3rem;
    text-align: center;
    border: 1px solid rgba(37, 99, 235, 0.1);
}

@media (max-width: 768px) {
    .rs-about-hero {
        padding: 60px 0 40px;
    }

    .rs-hero-image-wrapper {
        margin-top: 3rem;
    }

    .rs-mission-card {
        padding: 2.5rem;
    }

    .rs-cta-card {
        padding: 3rem 1.5rem;
    }

    .rs-stats-row {
        gap: 1.5rem;
        justify-content: center;
        text-align: center;
    }
}

/* * =========================================
         * CONTACT US PAGE SPECIFIC STYLES
         * =========================================
         */
.rs-contact-hero {
    padding: 140px 0 60px;
    background: radial-gradient(circle at 30% 20%, rgba(37, 99, 235, 0.05) 0%, transparent 40%);
    position: relative;
    overflow: hidden;
}

.rs-contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 5rem;
    align-items: start;
    padding-bottom: 100px;
}

.rs-info-card {
    display: flex;
    flex-direction: column;
    gap: 2.5rem;
    margin-bottom: 3rem;
}

.rs-info-item {
    display: flex;
    gap: 1.5rem;
}

.rs-info-icon {
    width: 56px;
    height: 56px;
    background: rgba(37, 99, 235, 0.1);
    color: var(--rs-color-primary);
    border-radius: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.rs-info-item h4 {
    font-size: 1.25rem;
    color: var(--rs-color-dark);
    margin-bottom: 0.5rem;
}

.rs-info-item p {
    color: var(--rs-color-text-muted);
    font-size: 1rem;
    line-height: 1.6;
}

.rs-info-item a {
    color: var(--rs-color-primary);
    text-decoration: none;
    font-weight: 600;
}

.rs-support-badge {
    padding: 2rem;
    border-radius: 1.5rem;
    display: flex;
    flex-direction: column;
}

/* Pulse Dot Animation */
.rs-pulse-dot {
    width: 12px;
    height: 12px;
    background: #10b981;
    border-radius: 50%;
    position: relative;
}

.rs-pulse-dot::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background: #10b981;
    animation: rs-pulse 2s infinite;
}

@keyframes rs-pulse {
    0% {
        transform: scale(1);
        opacity: 0.6;
    }

    100% {
        transform: scale(3.5);
        opacity: 0;
    }
}

.rs-form-select {
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 24 24' stroke='%2364748b'%3E%3Cpath stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='M19 9l-7 7-7-7'%3E%3C/path%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 1rem center;
    background-size: 1.25rem;
}

.rs-offices-section {
    padding: 100px 0;
    background: white;
}

.rs-offices-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.rs-office-card {
    padding: 2.5rem;
    border-radius: 1.5rem;
    border: 1px solid #e2e8f0;
    background: #f8fafc;
    transition: all 0.3s ease;
}

.rs-office-card:hover {
    border-color: var(--rs-color-primary);
    background: white;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.rs-office-card h5 {
    font-size: 1.2rem;
    color: var(--rs-color-dark);
    margin-bottom: 0.75rem;
}

.rs-office-card p {
    color: var(--rs-color-text-muted);
    font-size: 0.95rem;
}

@media (max-width: 992px) {
    .rs-contact-grid {
        grid-template-columns: 1fr;
        gap: 4rem;
    }
}

.rs-social-icon {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    color: var(--rs-color-primary);
    transition: all 0.3s ease;
}

.rs-social-icon:hover {
    background: var(--rs-color-primary);
    color: white;
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(37, 99, 235, 0.2);
}

/* Enhanced Contact Form */
.rs-contact-card-premium {
    padding: 4rem;
    position: relative;
    overflow: hidden;
    border-radius: 2.5rem;
    border: 1px solid rgba(255, 255, 255, 0.5);
}

.rs-card-accent-blob {
    position: absolute;
    top: -100px;
    right: -100px;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(37, 99, 235, 0.08) 0%, transparent 70%);
    z-index: 0;
    pointer-events: none;
}

.rs-form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
}

.rs-input-wrapper {
    position: relative;
    display: flex;
    align-items: center;
}

.rs-input-icon {
    position: absolute;
    left: 1rem;
    width: 20px;
    height: 20px;
    fill: var(--rs-color-text-muted);
    transition: all 0.3s ease;
    pointer-events: none;
}



.rs-form-input:focus+.rs-input-icon {
    fill: var(--rs-color-primary);
}

/* Map Section */
.rs-map-section {
    position: relative;
    margin-top: 5rem;
}

.rs-map-container {
    height: 500px;
    width: 100%;
    overflow: hidden;
    border-top: 1px solid rgba(0, 0, 0, 0.05);
}

.rs-map-overlay {
    position: absolute;
    bottom: 50px;
    left: 50px;
    padding: 1.5rem 2rem;
    border-radius: 1.25rem;
    z-index: 10;
    max-width: 300px;
}

@media (max-width: 768px) {
    .rs-form-row {
        grid-template-columns: 1fr;
    }

    .rs-contact-card-premium {
        padding: 2.5rem 1.5rem;
    }

    .rs-map-overlay {
        position: relative;
        bottom: auto;
        left: auto;
        margin: -40px 1.5rem 2rem 1.5rem;
        max-width: none;
    }
}

/* * =========================================
         * PROFILE MENU
         * =========================================
         */

.rs-profile-wrapper {
    position: relative;
    margin-left: 1rem;
}

.rs-avatar-btn {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    cursor: pointer;
    overflow: hidden;
    border: 2px solid rgba(255, 255, 255, 0.5);
    transition: all 0.3s ease;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
}

.rs-avatar-btn:hover {
    border-color: var(--rs-color-primary);
    transform: scale(1.05);
    box-shadow: 0 8px 16px rgba(30, 64, 175, 0.2);
}

.rs-avatar-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.rs-avatar-svg {
    padding: 0;
    background: #f1f5f9;
}

.rs-profile-dropdown {
    position: absolute;
    top: 120%;
    right: 0;
    width: 320px;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.8);
    border-radius: 1.5rem;
    padding: 1.5rem;
    box-shadow: 0 20px 50px -10px rgba(0, 0, 0, 0.15);
    transform-origin: top right;
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px) scale(0.95);
    z-index: 1200;
}

.rs-profile-dropdown.show,
.rs-profile-dropdown.dis-block,
.rs-profile-dropdown[style*='display: block'],
.rs-profile-dropdown[style*='display:block'] {
    opacity: 1;
    visibility: visible;
    transform: translateY(0) scale(1);
    display: block !important;
    position: absolute !important;
    /* Ensure it stays out of flow */
}

.rs-profile-header {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    padding-bottom: 1.25rem;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    margin-bottom: 1.25rem;
}

.rs-user-name {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--rs-color-dark);
}

.rs-profile-actions {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.rs-view-profile-link {
    font-size: 0.9rem;
    color: var(--rs-color-primary);
    text-decoration: none;
    font-weight: 600;
    cursor: pointer;
}

.rs-view-profile-link:hover {
    text-decoration: underline;
}

.rs-toggle-switch {
    position: relative;
    display: inline-block;
    width: 44px;
    height: 24px;
}

.rs-toggle-switch input {
    opacity: 0;
    width: 0;
    height: 0;
}

.rs-slider {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #cbd5e1;
    transition: .4s;
    border-radius: 34px;
}

.rs-slider:before {
    position: absolute;
    content: '';
    height: 18px;
    width: 18px;
    left: 3px;
    bottom: 3px;
    background-color: white;
    transition: .4s;
    border-radius: 50%;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

input:checked+.rs-slider {
    background-color: var(--rs-color-primary);
}

input:checked+.rs-slider:before {
    transform: translateX(20px);
}

.rs-menu-section {
    margin-bottom: 1.5rem;
}

.rs-menu-section:last-child {
    margin-bottom: 0;
}

.rs-menu-label {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--rs-color-text-muted);
    margin-bottom: 0.75rem;
    font-weight: 700;
}

.rs-menu-list {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

/* Specific styling for li to ensure no bullet points or extra margins from default styles */
.rs-menu-item {
    padding: 0;
    margin: 0;
    list-style: none;
}

.rs-menu-item a {
    display: flex;
    align-items: center;
    padding: 0.75rem 1rem;
    border-radius: 0.75rem;
    color: var(--rs-color-text-main);
    text-decoration: none;
    font-weight: 500;
    transition: all 0.2s;
    cursor: pointer;
}

.rs-menu-item a:hover {
    background: rgba(59, 130, 246, 0.08);
    color: var(--rs-color-primary);
}

.rs-menu-item a.sign-out {
    color: #ef4444;
}

.rs-menu-item a.sign-out:hover {
    background: rgba(239, 68, 68, 0.08);
}

/* Mobile Sidebar Profile Styles */
.rs-mobile-nav .rs-profile-wrapper {
    margin-left: 0;
    width: 100%;
}

.rs-mobile-nav .rs-avatar-btn {
    width: 60px;
    height: 60px;
    border-color: var(--rs-color-primary);
    margin-bottom: 1rem;
}

.rs-mobile-nav .rs-profile-dropdown {
    position: static !important;
    width: 100%;
    transform: none !important;
    opacity: 1;
    visibility: visible;
    box-shadow: none;
    border: 1px solid #f1f5f9;
    padding: 1rem;
    margin-top: 1rem;
    display: block !important;
}

.rs-mobile-nav .rs-profile-header {
    flex-direction: row;
    align-items: center;
    gap: 1rem;
}


/* Refined Mobile Mobile Sidebar Styles */
.rs-mobile-nav .rs-profile-dropdown {
    background: transparent !important;
    border: none !important;
    padding: 0 !important;
    margin-top: 0.5rem !important;
    backdrop-filter: none !important;
    -webkit-backdrop-filter: none !important;
}

.rs-mobile-nav .rs-profile-header {
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    padding-bottom: 1rem;
    margin-bottom: 1rem;
}

.rs-mobile-nav .rs-menu-section {
    margin-bottom: 1rem;
}

.rs-mobile-nav .rs-menu-label {
    padding-left: 0.5rem;
    color: var(--rs-color-primary);
    opacity: 0.7;
}

.rs-mobile-nav .rs-menu-item a {
    padding: 0.75rem 0.5rem;
    font-size: 0.95rem;
    color: var(--rs-color-text-main);
    border-radius: 0.5rem;
}

.rs-mobile-nav .rs-menu-item a:hover {
    background: #f1f5f9;
    color: var(--rs-color-primary);
}

.rs-mobile-nav .rs-profile-actions .rs-toggle-switch {
    display: none;
    /* Hide visibility toggle on mobile if desired, or keep it */
}

/* Make the avatar/name section look more like a header */
.rs-mobile-nav .rs-user-name {
    font-size: 1.2rem;
}

.rs-mobile-nav .rs-profile-actions {
    display: none;
    /* Hide 'My Profile' link/toggle to simplify, or adjust */
}


/* Mobile Sidebar Scroll Fix */
.rs-sidebar {
    overflow-y: auto;
    max-height: 100vh;
}


/* Mobile Sidebar Button Refinements */
.rs-mobile-nav .rs-btn {
    border-radius: 0.75rem;
    font-weight: 600;
    transition: all 0.2s ease;
}

.rs-mobile-nav .rs-btn-primary {
    background: var(--rs-gradient-primary);
    color: white;
    box-shadow: 0 4px 12px rgba(37, 99, 235, 0.2);
    border: none;
}

.rs-mobile-nav .rs-btn-primary:active {
    transform: scale(0.98);
}

.rs-mobile-nav .rs-btn-outline {
    border: 1px solid #e2e8f0;
    color: var(--rs-color-text-main);
    background: white;
}

.rs-mobile-nav .rs-btn-outline:hover {
    border-color: var(--rs-color-primary);
    color: var(--rs-color-primary);
    background: #f8fafc;
}

.rs-mobile-nav .rs-btn-secondary {
    background: #f1f5f9;
    color: var(--rs-color-text-main);
    border: none;
}

.rs-mobile-nav .rs-btn-secondary:hover {
    background: #e2e8f0;
    color: var(--rs-color-dark);
}


/* Mobile Hero Fixes */
@media (max-width: 992px) {
    .rs-hero {
        min-height: auto;
        padding-top: 100px;
        padding-bottom: 40px;
    }

    .rs-hero-content {
        gap: 2rem;
    }

    .rs-hero-text h1 {
        font-size: 2.5rem;
    }

    .rs-hero-text p {
        font-size: 1rem;
        margin-bottom: 2rem;
    }
}

@media (max-width: 768px) {
    .rs-hero-content {
        padding-top: 0;
    }

    .rs-hero-btn-card {
        padding: 1.5rem;
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }

    .rs-hero-btn-card .rs-icon-lg {
        margin: 0 auto;
    }

    .rs-hero-btn-card::before {
        display: none;
        /* Remove shimmer/hover effects that might cause overflow or lag on mobile */
    }
}


/* Desktop overrides to match previous inline styles */
@media (min-width: 993px) {
    .rs-hero-content {
        display: grid;
        grid-template-columns: 1.2fr 0.8fr;
        gap: 6rem;
        align-items: center;
    }

    .rs-hero-text h1 {
        font-size: 4.5rem;
        line-height: 1.05;
        margin-bottom: 2rem;
        letter-spacing: -0.04em;
    }

    .rs-hero-text p {
        font-size: 1.4rem;
        margin-bottom: 3.5rem;
        max-width: 600px;
        line-height: 1.6;
    }
}


/* Further Mobile Text Refinements */
@media (max-width: 768px) {
    .rs-hero-text h1 {
        font-size: 2rem;
        /* Reduced from 2.5rem for better fit */
        line-height: 1.2;
    }

    .rs-hero-text p {
        font-size: 0.95rem;
        padding: 0 1rem;
        /* Add side padding to prevent edge touching */
    }

    .rs-hero-content {
        gap: 1.5rem;
        /* Tighter gap */
    }
}