html {
    scroll-behavior: smooth;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
}

body {
    background: #f5f7fb;
    color: #1f2937;
    overflow-x: hidden;
    /* Prevent horizontal scroll */
}

/* Global Focus State for Accessibility */
*:focus-visible {
    outline: 2px solid #E41002;
    outline-offset: 2px;
}

/* NAVBAR */
.navbar {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    padding: 16px 5%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05), 0 2px 4px -1px rgba(0, 0, 0, 0.03);
    position: sticky;
    top: 0;
    z-index: 1000;
}

/* LOGO */
.logo {
    font-size: 20px;
    font-weight: 600;
    color: #E41002;
    margin-left: 10px;
    margin-top: 10px;
}

.logo img {
    width: 138px;
    height: 45px;
}

/* NAV LINKS */
.nav-center {
    list-style: none;
    display: flex;
    gap: 28px;
}

.nav-center a {
    text-decoration: none;
    color: #000000;
    font-weight: 500;
    transition: 0.3s;
}

.nav-center a:hover {
    color: #E41002;
}

/* BUTTONS */
.nav-right {
    display: flex;
    gap: 12px;
}

.btn {
    padding: 10px 24px;
    border-radius: 999px;
    border: none;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    font-size: 15px;
}

.login {
    background: transparent;
    color: #1f2937;
}

.login:hover {
    color: #E41002;
    background: rgba(228, 16, 2, 0.05);
}

.signup {
    background: #E41002;
    color: white;
    box-shadow: 0 4px 6px -1px rgba(228, 16, 2, 0.2);
}

.signup:hover {
    background: #cc0e02;
    transform: translateY(-1px);
    box-shadow: 0 6px 12px -1px rgba(228, 16, 2, 0.3);
}

/* HAMBURGER */
.hamburger {
    display: none;
    /* Hidden on desktop by default */
    flex-direction: column;
    cursor: pointer;
    gap: 5px;
}

.hamburger span {
    width: 24px;
    height: 3px;
    background: #E41002;
    border-radius: 2px;
    transition: all 0.3s ease;
}

/* MOBILE MENU */
@media (max-width: 768px) {

    .hamburger {
        display: flex;
        z-index: 1001;
    }
    /* Wrap both nav-center and nav-right visually */
    .nav-center,
    .nav-right {
        position: fixed;
        left: 0;
        right: 0;
        top: 70px;
        background: white;
        flex-direction: column;
        align-items: center;
        width: 100%;
        padding: 20px;
        display: none;
        opacity: 0;
        transform: translateY(-10px);
        transition: all 0.3s ease;
    }

    /* When active */
    .nav-center.active,
    .nav-right.active {
        display: flex;
        opacity: 1;
        transform: translateY(0);
    }

    /* Remove manual top positioning */
    .nav-right {
        box-shadow: none;
        border-radius: 0;
    }
    .nav-right.active {
    margin-top: 250px; /* use px instead of % */
}
.nav-center a.active {
    color: #E41002;
    font-weight: 600;
    position: relative;
}

.nav-center a.active::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -4px;
    width: 100%;
    height: 2px;
    background: #E41002;
}
}
.nav-center a.active {
    color: #E41002;
    font-weight: 600;
    position: relative;
}

.nav-center a.active::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -4px;
    width: 100%;
    height: 2px;
    background: #E41002;
}

/************HERO************/
/* ================= HERO SECTION ================= */

.hero {
    min-height: 100svh;
    display: flex;
    align-items: stretch;
    background: white;
}

/* Layout */
.hero-content {
    width: 100%;
    display: flex;
    align-items: stretch;
    justify-content: space-between;
}

/* ================= LEFT SIDE ================= */

.hero-text {
    flex: 1;
    padding-left: 8%;
    display: flex;              /* make it flex */
    flex-direction: column;     /* stack text vertically */
    justify-content: center;    /* vertical centering */
}

.hero-text h1 {
    font-size: 50px;
    margin-bottom: 16px;
    color: #111;
    font-weight: 800;
    line-height: 1.1;
}

.hero-text h2 {
    font-size: 22px;
    font-weight: 500;
    margin-bottom: 20px;
    color: #555;
}

.hero-text p {
    font-size: 16px;
    line-height: 1.6;
    margin-bottom: 28px;
    color: #666;
    max-width: 500px;
}

.hero-span {
    color: #E41002;
    font-style: italic;
}

/* Buttons */

.hero-btn {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.hero-btn-primary {
    padding: 14px 40px;
    font-size: 16px;
    font-weight: 600;
    border-radius: 100px;
    border: none;
    background: #E41002;
    color: white;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(228, 16, 2, 0.3);
}

.hero-btn-primary:hover {
    transform: translateY(-3px);
    background: #cc0e02;
    box-shadow: 0 12px 24px rgba(228, 16, 2, 0.4);
}

.hero-btn-secondary {
    padding: 14px 30px;
    font-size: 16px;
    font-weight: 600;
    border-radius: 100px;
    border: 1px solid #e5e7eb;
    background: white;
    color: #374151;
    cursor: pointer;
    transition: all 0.3s ease;
}

.hero-btn-secondary:hover {
    transform: translateY(-3px);
    border-color: #E41002;
    color: #E41002;
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.08);
}

/* ================= RIGHT SIDE IMAGE ================= */

.hero-image {
    flex: 1;
    position: relative;
    overflow: hidden;
    display: flex;
}

.hero-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

/* Smooth fade blend into background */
.hero-image::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to right,
        #ffffff 0%,
        #ffffff 8%,
        rgba(255, 255, 255, 0.95) 12%,
        rgba(255, 255, 255, 0.75) 18%,
        rgba(255, 255, 255, 0.45) 25%,
        rgba(255, 255, 255, 0.15) 32%,
        transparent 40%
    );
    z-index: 1;
    pointer-events: none;
}

/* ================= RESPONSIVE ================= */

@media (max-width: 1024px) {
    .hero-text h1 {
        font-size: 38px;
    }
}

@media (max-width: 768px) {

    .hero {
        align-items: center;
        padding: 80px 8%;
    }

    .hero-content {
        flex-direction: column;
        text-align: center;
        gap: 40px;
    }

    .hero-text {
        padding-left: 0;
        align-items: center;
        display: flex;
        flex-direction: column;
    }

    .hero-text h1 {
        font-size: 32px;
    }

    .hero-text h2 {
        font-size: 18px;
    }

    .hero-text p {
        font-size: 14px;
        margin-bottom: 24px;
    }

    .hero-btn {
        width: 100%;
        max-width: 320px;
    }

    .hero-btn-primary,
    .hero-btn-secondary {
        width: 100%;
    }

    .hero-image {
        width: 100%;
        height: 300px;
    }

    .hero-image::before {
        display: none; /* remove fade on mobile for cleaner look */
    }
}
/***********FOOTER*********/
footer {
    background: #000000;
    color: #000000;
    padding: 40px 20px;
    font-family: Arial, sans-serif;
}

.footer-container {
    max-width: 1100px;
    margin: auto;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

footer h3,
footer h4 {
    margin-bottom: 12px;
    color: #ffffff;
}

footer p,
footer li {
    font-size: 14px;
    line-height: 1.6;
    color: #ccc;
}

footer ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

footer a {
    color: #ccc;
    text-decoration: none;
    transition: color 0.2s ease;
}

footer a:hover {
    color: #ffffff;
}

/* Bottom copyright spacing */
.footer-contact p:last-child {
    margin-top: 12px;
    font-size: 13px;
    color: #888;
}

.footer-brand img {
    width: 138px;
    height: 45px;
}
.footer-brand p {
   margin-top: 16px;
}


.cc {
    display: flex;
    justify-content: center;
    padding-top: 20px;
    background-color: rgb(0, 0, 0);
}

/* 📱 Responsive */
@media (max-width: 900px) {
    .footer-container {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 500px) {
    .footer-container {
        grid-template-columns: 1fr;
    }
}


/* ===== MODERN PROBLEM SECTION ===== */
.problem-section-img-and-text {
    display: flex;
    align-items: flex-start;
    gap: 2rem;
    max-width: 1300px;
    margin: 100px auto;
    padding: clamp(2rem, 5vh, 4rem) clamp(1rem, 5vw, 2rem);
}

.problem-section-img {
    flex: 0 0 45%;
    max-width: 45%;
}

.problem-section-img img {
    width: 100%;
    height: auto;
    display: block;

    /* Smooth fade at bottom */
    -webkit-mask-image: linear-gradient(to bottom, 
        black 70%, 
        transparent 100%
    );
    mask-image: linear-gradient(to bottom, 
        black 70%, 
        transparent 100%
    );
    border-radius: 5%;
}

.problem-section {
    flex: 1;
    text-align: center;
    padding: 0;
}

.problem-section h2 {
    font-size: clamp(2rem, 5vw, 3rem);
    margin-bottom: 0.75rem;
    color: black;
    font-weight: 800;
    letter-spacing: -0.02em;
}

.problem-section p.subtitle {
    font-size: clamp(1rem, 2.5vw, 1.2rem);
    color: #64748b;
    margin-bottom: 3.5rem;
    max-width: 650px;
    margin-inline: auto;
    font-weight: 400;
    line-height: 1.7;
}

.problem-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(min(100%, 280px), 1fr));
    gap: 2rem;

    padding: 3rem 2rem;
    /* space left & right */
    margin-left: 1rem;
    /* extra left offset if you want it shifted */
}


.card {
    background: linear-gradient(135deg, #ffffff 0%, #fafbfc 100%);
    padding: 2.25rem 2rem;
    border-radius: 1.25rem;
    text-align: left;
    border: 1px solid rgba(228, 16, 2, 0.2);
    position: relative;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);

    /* Default = elevated */
    transform: translateY(-4px);
    box-shadow: 0 10px 30px -5px rgba(0, 0, 0, 0.08);
}

/* Gradient top line visible by default */
.card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, #E41002 0%, #ff4538 100%);
    transform: scaleX(1);
    transform-origin: left;
    transition: transform 0.4s ease;
}

/* Hover = flatten + remove highlight */
.card:hover {
    transform: translateY(0) scale(1);
    box-shadow: 0 4px 12px rgba(15, 23, 42, 0.06);
    border-color: rgba(226, 232, 240, 0.8);
}

/* Hide the top gradient line on hover */
.card:hover::before {
    transform: scaleX(0);
}

.card-number {
    font-size: 2.5rem;
    font-weight: 800;
    background: linear-gradient(135deg, #E41002 0%, #ff4538 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 1rem;
    display: block;
    line-height: 1;
    opacity: 0.9;
}

.card h3 {
    font-size: 1.25rem;
    margin-bottom: 0.875rem;
    color: #0f172a;
    font-weight: 700;
    letter-spacing: -0.01em;
}

.card p {
    font-size: 0.9375rem;
    color: #64748b;
    line-height: 1.75;
    font-weight: 400;
}

@media (max-width: 968px) {
    .problem-section-img-and-text {
        flex-direction: column;
        padding-top: 2rem;
        /* Reduce top padding since we don't need allowance for overlap */
    }

    .problem-section-img {
        flex: 0 0 auto;
        max-width: 100%;
        width: 100%;
        order: -1;
        /* Ensure image is on top if desired, or remove to keep original order */
    }

    .problem-section-img img {
        margin-top: 0;
        margin-bottom: 2rem;
    }

    .problem-section {
        width: 100%;
        text-align: center;
    }
}

/* ===== MODERN TRUST SECTION ===== */
.strathr-trust-section {
    background: linear-gradient(180deg, #fafbfc 0%, #ffffff 100%);
    padding: clamp(4rem, 10vh, 5.5rem) clamp(1rem, 5vw, 2rem);
    position: relative;
}

.strathr-trust-container {
    max-width: 1100px;
    margin: 100px auto;
}

.strathr-trust-heading {
    text-align: center;
    font-size: clamp(2rem, 5vw, 2.75rem);
    margin-bottom: clamp(3rem, 8vh, 4rem);
    font-weight: 800;
    letter-spacing: -0.02em;
}

/* GRID */
.strathr-trust-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(min(100%, 280px), 1fr));
    gap: clamp(1.25rem, 3vw, 2rem);
}

/* CARD */
.strathr-trust-card {
    background: #fff;
    padding: 2rem;
    border-radius: 1.25rem;
    box-shadow: 0 2px 8px rgba(15, 23, 42, 0.05),
        0 8px 24px rgba(15, 23, 42, 0.06);
    border: 1px solid rgba(226, 232, 240, 0.8);
    position: relative;
    overflow: hidden;
    transition: 0.35s ease;
}

/* .strathr-trust-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 32px rgba(228, 16, 2, 0.12);
    border-color: rgba(228, 16, 2, 0.25);
} */

/* NUMBER BADGE */
.strathr-trust-badge {
    position: absolute;
    top: -30px;
    right: -30px;
    width: 90px;
    height: 90px;
    background: #E41002;
    color: white;
    font-weight: 700;
    font-size: 1.5rem;
    display: flex;
    align-items: flex-end;
    justify-content: flex-start;
    padding: 18px;
    border-radius: 50%;
}

/* ICON */
.strathr-trust-icon {
    width: 48px;
    margin-bottom: 1rem;
}

.strathr-trust-icon svg {
    width: 100%;
    height: auto;
    fill: #111;
}

/* TEXT */
.strathr-trust-card-title {
    font-weight: 700;
    font-size: 1.15rem;
    margin-bottom: 0.75rem;
    color: #111;
}

.strathr-trust-card-text {
    font-size: 0.95rem;
    line-height: 1.7;
    color: #64748b;
}

/* Removed duplicate/conflicting Process Section styles to use the modern version below */

/* ===== RESPONSIVE REFINEMENTS ===== */
@media (max-width: 768px) {

    .card,
    .strathr-trust-card,
    .strathr-process-step {
        padding: 1.75rem 1.5rem;
    }

    .problem-cards,
    .strathr-trust-grid,
    .strathr-process-grid {
        gap: 1.0rem;
    }

    .hero-image {
        display: None;
    }
}

.strathr-trust-section {
    background: linear-gradient(180deg, #fafbfc 0%, #ffffff 100%);
    padding: clamp(4rem, 10vh, 5.5rem) clamp(1rem, 5vw, 2rem);
    position: relative;
}

.strathr-trust-container {
    max-width: 1100px;
    margin: 100px auto;
}

.strathr-trust-heading {
    text-align: center;
    font-size: clamp(2rem, 5vw, 2.75rem);
    margin-bottom: clamp(3rem, 8vh, 4rem);
    font-weight: 800;
    letter-spacing: -0.02em;
}

/* GRID */
.strathr-trust-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: clamp(1.25rem, 3vw, 2rem);
}

/* CARD */
.strathr-trust-card {
    background: #fff;
    padding: 2rem;
    border-radius: 1.25rem;
    box-shadow: 0 2px 8px rgba(15, 23, 42, 0.05),
        0 8px 24px rgba(15, 23, 42, 0.06);
    border: 1px solid rgba(226, 232, 240, 0.8);
    position: relative;
    overflow: hidden;
    transition: 0.35s ease;
}

/* .strathr-trust-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 32px rgba(228, 16, 2, 0.12);
    border-color: rgba(228, 16, 2, 0.25);
} */

/* NUMBER BADGE */
.strathr-trust-badge {
    position: absolute;
    top: -30px;
    right: -30px;
    width: 90px;
    height: 90px;
    background: #E41002;
    color: white;
    font-weight: 700;
    font-size: 1.5rem;
    display: flex;
    align-items: flex-end;
    justify-content: flex-start;
    padding: 18px;
    border-radius: 50%;
}

/* ICON */
.strathr-trust-icon {
    width: 48px;
    margin-bottom: 1rem;
}

.strathr-trust-icon svg {
    width: 100%;
    height: auto;
    fill: #111;
}

/* TEXT */
.strathr-trust-card-title {
    font-weight: 700;
    font-size: 1.15rem;
    margin-bottom: 0.75rem;
    color: #111;
}

.strathr-trust-card-text {
    font-size: 0.95rem;
    line-height: 1.7;
    color: #64748b;
}

/* MOBILE BREAKPOINT */
@media (max-width: 768px) {
    .strathr-trust-grid {
        grid-template-columns: 1fr;
        gap: 1.25rem;
    }

    .strathr-trust-card {
        padding: 1.75rem 1.5rem;
    }

    .strathr-trust-badge {
        width: 70px;
        height: 70px;
        font-size: 1.25rem;
        padding: 14px;
        top: -25px;
        right: -25px;
    }
}

@media (prefers-reduced-motion: reduce) {
    * {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}


.strathr-process-section {
    background: #ffffff;
    padding: clamp(4rem, 10vh, 6rem) clamp(1rem, 5vw, 2rem);
    position: relative;
    overflow: hidden;
}

.strathr-process-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100%;
    max-width: 1400px;
    height: 100%;
    background:
        radial-gradient(circle at 20% 30%, rgba(228, 16, 2, 0.03) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(228, 16, 2, 0.02) 0%, transparent 50%);
    pointer-events: none;
    z-index: 0;
}

.strathr-process-container {
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.strathr-process-header {
    text-align: center;
    margin-bottom: 4.5rem;
}

.strathr-process-heading {
    font-size: clamp(2rem, 5vw, 3rem);
    font-weight: 800;
    color: #000000;
    margin-bottom: 1rem;
    letter-spacing: -0.02em;
    line-height: 1.2;
}

.strathr-process-subheading {
    font-size: clamp(1rem, 2.5vw, 1.25rem);
    color: #333333;
    font-weight: 400;
    max-width: 600px;
    margin: 0 auto;
}

.strathr-process-timeline {
    position: relative;
    display: flex;
    flex-direction: column;
    gap: 3rem;
}

.strathr-process-step {
    position: relative;
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 0.6s ease forwards;
}

.strathr-process-step:nth-child(1) {
    animation-delay: 0.1s;
}

.strathr-process-step:nth-child(2) {
    animation-delay: 0.2s;
}

.strathr-process-step:nth-child(3) {
    animation-delay: 0.3s;
}

.strathr-process-step:nth-child(4) {
    animation-delay: 0.4s;
}

@keyframes fadeInUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.strathr-step-number {
    position: absolute;
    left: 0;
    top: 0;
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, #E41002 0%, #C00D01 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 8px 24px rgba(228, 16, 2, 0.25);
    z-index: 2;
    transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.strathr-step-number span {
    font-size: 1.5rem;
    font-weight: 800;
    color: #ffffff;
    line-height: 1;
}

.strathr-process-step:hover .strathr-step-number {
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 12px 32px rgba(228, 16, 2, 0.35);
    background: linear-gradient(135deg, #FF1A0A 0%, #E41002 100%);
}

.strathr-step-content {
    margin-left: 100px;
    background: #ffffff;
    padding: 2.5rem 2.5rem 2.5rem 2rem;
    border-radius: 1.5rem;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08),
        0 2px 8px rgba(0, 0, 0, 0.04);
    border: 2px solid #f5f5f5;
    position: relative;
    display: flex;
    gap: 2rem;
    align-items: flex-start;
    transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.strathr-step-content::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(228, 16, 2, 0.02) 0%, transparent 100%);
    border-radius: 1.5rem;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.strathr-process-step:hover .strathr-step-content {
    transform: translateX(8px);
    box-shadow: 0 12px 40px rgba(228, 16, 2, 0.15),
        0 4px 16px rgba(228, 16, 2, 0.08);
    border-color: rgba(228, 16, 2, 0.3);
}

.strathr-process-step:hover .strathr-step-content::before {
    opacity: 1;
}

.strathr-step-icon {
    flex-shrink: 0;
    width: 56px;
    height: 56px;
    background: #fafafa;
    border: 2px solid #f0f0f0;
    border-radius: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.4s ease;
}

.strathr-step-icon svg {
    width: 28px;
    height: 28px;
    color: #E41002;
    transition: all 0.4s ease;
}

.strathr-process-step:hover .strathr-step-icon {
    background: linear-gradient(135deg, #E41002 0%, #C00D01 100%);
    border-color: #E41002;
    transform: rotate(-5deg) scale(1.05);
}

.strathr-process-step:hover .strathr-step-icon svg {
    color: #ffffff;
}

.strathr-step-text {
    flex: 1;
}

.strathr-process-step-title {
    margin: 0 0 0.875rem;
    font-size: 1.35rem;
    color: #000000;
    font-weight: 700;
    letter-spacing: -0.01em;
    line-height: 1.3;
    transition: color 0.3s ease;
}

.strathr-process-step:hover .strathr-process-step-title {
    color: #E41002;
}

.strathr-process-step-description {
    margin: 0;
    font-size: 1rem;
    color: #333333;
    line-height: 1.7;
    font-weight: 400;
}

.strathr-step-connector {
    position: absolute;
    left: 35px;
    top: 70px;
    width: 2px;
    height: calc(100% + 3rem);
    background: linear-gradient(180deg,
            #E41002 0%,
            rgba(228, 16, 2, 0.3) 50%,
            rgba(228, 16, 2, 0.1) 100%);
    z-index: 1;
}

.strathr-process-step:last-child .strathr-step-connector {
    display: none;
}

.strathr-step-connector::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 8px;
    height: 8px;
    background: #E41002;
    border-radius: 50%;
    animation: pulseConnector 2s ease-in-out infinite;
}

@keyframes pulseConnector {

    0%,
    100% {
        opacity: 1;
        transform: translateX(-50%) scale(1);
    }

    50% {
        opacity: 0.5;
        transform: translateX(-50%) scale(1.5);
    }
}

/* ===== RESPONSIVE DESIGN ===== */
@media (max-width: 968px) {
    .strathr-process-timeline {
        gap: 2.5rem;
    }

    .strathr-step-number {
        width: 60px;
        height: 60px;
    }

    .strathr-step-number span {
        font-size: 1.25rem;
    }

    .strathr-step-content {
        margin-left: 85px;
        padding: 2rem 1.75rem;
        flex-direction: column;
        gap: 1.25rem;
    }

    .strathr-step-icon {
        width: 48px;
        height: 48px;
    }

    .strathr-step-icon svg {
        width: 24px;
        height: 24px;
    }

    .strathr-step-connector {
        left: 30px;
        height: calc(100% + 2.5rem);
    }

    .strathr-process-step-title {
        font-size: 1.2rem;
    }

    .strathr-process-step-description {
        font-size: 0.95rem;
    }
}

@media (max-width: 640px) {
    .strathr-process-header {
        margin-bottom: 3rem;
    }

    .strathr-process-timeline {
        gap: 2rem;
    }

    .strathr-step-number {
        width: 50px;
        height: 50px;
    }

    .strathr-step-number span {
        font-size: 1.1rem;
    }

    .strathr-step-content {
        margin-left: 70px;
        padding: 1.5rem 1.25rem;
    }

    .strathr-step-connector {
        left: 25px;
        height: calc(100% + 2rem);
    }

    .strathr-process-step-title {
        font-size: 1.1rem;
    }

    .strathr-process-step-description {
        font-size: 0.9rem;
    }
}

/* ===== ACCESSIBILITY ===== */
@media (prefers-reduced-motion: reduce) {

    .strathr-process-step,
    .strathr-step-number,
    .strathr-step-content,
    .strathr-step-icon,
    .strathr-step-connector::before {
        animation: none !important;
        transition-duration: 0.01ms !important;
    }

    .strathr-process-step {
        opacity: 1;
        transform: none;
    }
}

.HR-process{
    color: #E41002;
}