@import url('https://fonts.googleapis.com/css2?family=Georgia:ital,wght@0,400;0,700;1,400&family=Lato:wght@300;400;600;700&family=Times+New+Roman&display=swap');
        
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --classic-blue: #1e3a8a;
    --royal-blue: #3b82f6;
    --light-blue: #dbeafe;
    --pure-white: #ffffff;
    --soft-white: #f8fafc;
    --text-dark: #1f2937;
    --text-light: #6b7280;
    --border-light: #e5e7eb;
    --shadow: 0 4px 12px rgba(30, 58, 138, 0.15);
}

body {
    font-family: 'Lato', Arial, sans-serif;
    font-size: 16px;
    line-height: 1.6;
    color: var(--text-dark);
    background-color: var(--pure-white);
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header */
header {
    background: var(--pure-white);
    box-shadow: var(--shadow);
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    border-bottom: 2px solid var(--light-blue);
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.5rem 1.5rem;
    height: 90px;
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.15);
    position: relative;
}

/* Logo */
.logo {
    display: flex;
    align-items: center;
}

.logo img {
    height: 90px;
    width: auto;
    object-fit: contain;
    display: block;
    transition: transform 0.3s ease-in-out;
    border-radius: 12px;
    margin-left: 10px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.logo img:hover {
    transform: scale(1.08);
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.25);
}

/* Navigation */
nav ul {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
    flex-wrap: wrap;
    margin-left: 10rem;
}

nav li {
    margin: 0 10px;
}

nav a {
    display: block;
    padding: 8px 12px;
    color: var(--royal-blue);
    text-decoration: none;
    font-weight: 400;
    font-size: 15px;
    border-radius: 4px;
    transition: all 0.3s ease;
}

nav a:hover,
nav a.active {
    background: var(--royal-blue);
    color: var(--pure-white);
    box-shadow: 0 2px 8px rgba(30, 58, 138, 0.3);
}

/* Hamburger Menu */
.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    position: absolute;
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
    z-index: 1001;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background: #000;
    transition: all 0.3s ease;
}

.hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
    background: #000;
}
.hamburger.active span:nth-child(2) {
    opacity: 0;
}
.hamburger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(6px, -6px);
    background: #000;
}

/* ===== HERO SECTION - DESKTOP & MOBILE OPTIMIZED ===== */
.hero {
    background: linear-gradient(135deg, var(--light-blue) 0%, var(--pure-white) 50%, var(--soft-white) 100%);
    padding: 120px 0 80px;
    position: relative;
    overflow: hidden;
    animation: heroFadeIn 1.2s ease-out;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, transparent 30%, rgba(59, 130, 246, 0.05) 70%);
    pointer-events: none;
    animation: backgroundShimmer 8s ease-in-out infinite alternate;
}

.hero::after {
    content: '';
    position: absolute;
    width: 200px;
    height: 200px;
    border: 2px solid rgba(59, 130, 246, 0.1);
    border-radius: 50%;
    top: 10%;
    right: 15%;
    animation: floatingCircle 12s linear infinite;
    pointer-events: none;
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    position: relative;
    z-index: 1;
}

.hero-text {
    text-align: left;
    animation: slideInFromLeft 1s ease-out 0.3s both;
}

.hero-image-slider {
    position: relative;
    width: 100%;
    height: 450px;
    border-radius: 20px;
    overflow: hidden;
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero-image-slider .slide {
    position: absolute;
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 20px;
    opacity: 0;
    transition: opacity 1s ease-in-out, transform 0.5s ease;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.35);
    border: 3px solid rgba(255, 255, 255, 0.15);
}

.hero-image-slider .slide.active {
    opacity: 1;
    transform: scale(1.03);
}

.hero-image-slider .slide:hover {
    transform: scale(1.05);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.45);
}

.hero h1 {
    font-family: Georgia, 'Times New Roman', serif;
    font-size: 48px;
    font-weight: 700;
    color: var(--classic-blue);
    margin-bottom: 20px;
    line-height: 1.2;
    animation: titleReveal 1.2s ease-out 0.6s both;
    position: relative;
}

.hero h1::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--royal-blue), var(--classic-blue));
    border-radius: 2px;
    animation: underlineExpand 1.5s ease-out 1.2s both;
}

.hero p {
    font-size: 20px;
    color: var(--text-light);
    margin-bottom: 30px;
    max-width: 500px;
    animation: textFadeIn 1s ease-out 0.9s both;
    line-height: 1.6;
}

.hero-cta {
    display: inline-block;
    padding: 15px 35px;
    background: var(--classic-blue);
    color: var(--pure-white);
    text-decoration: none;
    border-radius: 8px;
    font-weight: 600;
    font-size: 16px;
    box-shadow: 0 4px 15px rgba(30, 58, 138, 0.3);
    transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    animation: buttonSlideUp 1s ease-out 1.1s both;
    position: relative;
    overflow: hidden;
}

.hero-cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s ease;
}

.hero-cta:hover::before {
    left: 100%;
}

.hero-cta:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(30, 58, 138, 0.4);
    background: var(--royal-blue);
}

/* Hero Decorations */
.hero-decoration {
    position: absolute;
    width: 60px;
    height: 60px;
    border: 2px solid rgba(59, 130, 246, 0.15);
    border-radius: 12px;
    animation: decorativeFloat 8s ease-in-out infinite alternate;
}

.hero-decoration:nth-child(1) {
    top: 20%;
    left: 5%;
    animation-delay: -2s;
}

.hero-decoration:nth-child(2) {
    bottom: 25%;
    right: 8%;
    border-radius: 50%;
    animation-delay: -4s;
}

/* ===== PERFECT MOBILE HERO SECTION ===== */
@media (max-width: 768px) {
    .hero {
        padding: 90px 0 40px;
        min-height: 100vh;
        background: linear-gradient(135deg, var(--light-blue) 0%, var(--pure-white) 100%);
    }

    .hero-content {
        display: block;
        position: relative;
        height: 100vh;
        padding-top: 0;
    }

    .hero-image-slider {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100vh;
        border-radius: 0;
        overflow: hidden;
    }

    .hero-image-slider .slide {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100vh;
        object-fit: cover;
        border-radius: 0;
        opacity: 0;
        transition: opacity 1.5s ease-in-out;
        box-shadow: none;
        border: none;
    }

    .hero-image-slider .slide.active {
        opacity: 1;
        z-index: 1;
        transform: none;
    }

    .hero-image-slider .slide:hover {
        transform: none;
    }

    /* PERFECT CENTERED TEXT OVERLAY */
    .hero-text {
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        z-index: 10;
        width: 90%;
        max-width: 380px;
        text-align: center;
        color: var(--pure-white);
        padding: 25px 20px;
        background: rgba(0, 0, 0, 0.45);
        border-radius: 20px;
        backdrop-filter: blur(8px);
        box-shadow: 0 12px 35px rgba(0, 0, 0, 0.6);
        border: 1px solid rgba(255, 255, 255, 0.15);
        animation: mobileTextEntrance 1.2s ease-out 0.5s both;
    }

    .hero-text h1 {
        font-size: 1.8rem;
        line-height: 1.3;
        margin-bottom: 18px;
        color: var(--pure-white);
        text-shadow: 2px 2px 12px rgba(0, 0, 0, 0.8);
        animation: none;
    }

    .hero-text h1::after {
        display: none;
    }

    .hero-text p {
        font-size: 1.1rem;
        line-height: 1.5;
        margin-bottom: 22px;
        color: rgba(255, 255, 255, 0.95);
        text-shadow: 1px 1px 8px rgba(0, 0, 0, 0.7);
        max-width: none;
        animation: none;
    }

    .hero-cta {
        font-size: 0.95rem;
        padding: 12px 28px;
        background: var(--royal-blue);
        border: 2px solid rgba(255, 255, 255, 0.2);
        box-shadow: 0 6px 20px rgba(0, 0, 0, 0.4);
        animation: none;
    }

    .hero-cta:hover {
        background: var(--classic-blue);
        transform: translateY(-2px);
        box-shadow: 0 8px 25px rgba(0, 0, 0, 0.5);
    }

    /* Hide desktop decorations on mobile */
    .hero::after,
    .hero-decoration {
        display: none;
    }

    /* Mobile-specific background overlay for better text contrast */
    .hero::before {
        background: linear-gradient(
            135deg,
            rgba(0, 0, 0, 0.1) 0%,
            rgba(30, 58, 138, 0.15) 50%,
            rgba(0, 0, 0, 0.1) 100%
        );
        animation: none;
    }
}

/* Extra small screens */
@media (max-width: 480px) {
    .hero-text {
        width: 95%;
        max-width: 320px;
        padding: 20px 18px;
    }

    .hero-text h1 {
        font-size: 1.6rem;
        margin-bottom: 15px;
    }

    .hero-text p {
        font-size: 1rem;
        margin-bottom: 20px;
    }

    .hero-cta {
        font-size: 0.9rem;
        padding: 11px 24px;
    }
}

/* ===== KEYFRAME ANIMATIONS ===== */
@keyframes heroFadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

@keyframes backgroundShimmer {
    0% {
        transform: translateX(-5px);
    }
    100% {
        transform: translateX(5px);
    }
}

@keyframes floatingCircle {
    0% {
        transform: rotate(0deg) translateY(0px);
    }
    100% {
        transform: rotate(360deg) translateY(-10px);
    }
}

@keyframes slideInFromLeft {
    from {
        opacity: 0;
        transform: translateX(-50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes titleReveal {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes underlineExpand {
    from {
        width: 0;
    }
    to {
        width: 100px;
    }
}

@keyframes textFadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes buttonSlideUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes decorativeFloat {
    0% {
        transform: translateY(0px) rotate(0deg);
    }
    100% {
        transform: translateY(-20px) rotate(10deg);
    }
}

@keyframes mobileTextEntrance {
    from {
        opacity: 0;
        transform: translate(-50%, -50%) scale(0.9);
    }
    to {
        opacity: 1;
        transform: translate(-50%, -50%) scale(1);
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(40px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Button */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: var(--royal-blue);
    color: var(--pure-white);
    padding: 15px 30px;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 600;
    font-size: 16px;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    box-shadow: 0 4px 12px rgba(59, 130, 246, 0.4);
}

.btn:hover {
    background: var(--classic-blue);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(30, 58, 138, 0.4);
}

.btn-icon {
    font-size: 18px;
}

/* Sections */
section {
    padding: 60px 0;
}

section.container {
    background: var(--pure-white);
    border-radius: 12px;
    margin: 40px auto;
    padding: 50px;
    box-shadow: var(--shadow);
    border: 1px solid var(--light-blue);
}

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

.about-content {
    display: grid;
    grid-template-columns: 1fr 400px;
    gap: 50px;
    align-items: start;
}

.about-text {
    flex: 1;
}

.about-image {
    max-width: 700px;
    margin: 2rem auto;
    text-align: center;
    position: relative;
}

.about-image img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 12px;
    border: 6px solid #fff;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.25);
    animation: fadeInUp 1.2s ease-out;
    transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.about-image img:hover {
    transform: scale(1.05) rotate(-1deg);
    box-shadow: 0 16px 40px rgba(0, 0, 0, 0.35);
}

/* Typography */
h2 {
    font-family: Georgia, 'Times New Roman', serif;
    font-size: 36px;
    color: var(--classic-blue);
    margin-bottom: 30px;
    text-align: center;
    font-weight: 700;
}

h3 {
    font-family: Georgia, 'Times New Roman', serif;
    font-size: 24px;
    color: var(--classic-blue);
    margin-bottom: 15px;
    font-weight: 600;
}

p {
    margin-bottom: 20px;
    color: var(--text-dark);
    font-size: 16px;
}

/* Lists */
.about ul {
    list-style: none;
    padding: 0;
}

.about li {
    padding: 10px 0 10px 25px;
    position: relative;
    border-bottom: 1px solid var(--border-light);
    font-size: 16px;
}

.about li:last-child {
    border-bottom: none;
}

.about li::before {
    content: '▶';
    position: absolute;
    left: 0;
    color: var(--royal-blue);
    font-size: 12px;
}

/* Team Section */
.team-members {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.member {
    background: var(--pure-white);
    padding: 30px;
    border-radius: 12px;
    box-shadow: var(--shadow);
    text-align: center;
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    border: 1px solid var(--light-blue);
    position: relative;
    overflow: hidden;
}

.member:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(30, 58, 138, 0.2);
    border-color: var(--royal-blue);
}

.member::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, transparent 0%, rgba(34, 197, 94, 0.02) 50%, transparent 100%);
    opacity: 0;
    transition: opacity 0.4s ease;
    pointer-events: none;
}

.member:hover::before {
    opacity: 1;
}

.member-image {
    margin-bottom: 20px;
    position: relative;
    display: inline-block;
    animation: memberImageEntrance 0.8s ease-out;
}

.member-image::before {
    content: '';
    position: absolute;
    top: -8px;
    left: -8px;
    right: -8px;
    bottom: -8px;
    border-radius: 50%;
    background: conic-gradient(
        from 0deg,
        transparent 0deg,
        transparent 45deg,
        #22c55e 90deg,
        #16a34a 135deg,
        #15803d 180deg,
        #16a34a 225deg,
        #22c55e 270deg,
        transparent 315deg,
        transparent 360deg
    );
    animation: circularRotate 3s linear infinite;
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: 1;
}

.member:hover .member-image::before {
    opacity: 1;
}

.member-image::after {
    content: '';
    position: absolute;
    top: -12px;
    left: -12px;
    right: -12px;
    bottom: -12px;
    border: 2px solid rgba(34, 197, 94, 0.3);
    border-radius: 50%;
    opacity: 0;
    transform: scale(0.8);
    transition: all 0.4s ease;
    animation: pulseRing 2s ease-in-out infinite;
    z-index: 0;
}

.member:hover .member-image::after {
    opacity: 1;
    transform: scale(1);
}

.member-image img {
    width: 120px;
    height: 120px;
    object-fit: cover;
    border-radius: 50%;
    border: 4px solid var(--pure-white);
    box-shadow: 0 8px 20px rgba(30, 58, 138, 0.15);
    position: relative;
    z-index: 2;
    transition: all 0.3s ease;
}

.member:hover .member-image img {
    transform: scale(1.05);
    box-shadow: 0 12px 30px rgba(30, 58, 138, 0.25);
    border-color: var(--light-blue);
}

.member h3 {
    color: var(--classic-blue);
    margin-bottom: 10px;
    text-align: center;
    font-size: 18px;
    font-weight: 600;
    animation: textSlideUp 0.6s ease-out 0.2s both;
    transition: color 0.3s ease;
}

.member:hover h3 {
    color: var(--royal-blue);
}

.member p {
    color: var(--text-light);
    font-size: 15px;
    margin-bottom: 0;
    line-height: 1.5;
    animation: textSlideUp 0.6s ease-out 0.4s both;
    transition: color 0.3s ease;
}

.member:hover p {
    color: var(--text-dark);
}

@keyframes circularRotate {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}

@keyframes pulseRing {
    0%, 100% {
        transform: scale(1);
        opacity: 0.3;
    }
    50% {
        transform: scale(1.1);
        opacity: 0.6;
    }
}

@keyframes memberImageEntrance {
    from {
        opacity: 0;
        transform: scale(0.8) rotate(-10deg);
    }
    to {
        opacity: 1;
        transform: scale(1) rotate(0deg);
    }
}

@keyframes textSlideUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Why Choose Us */
.why-choose {
    background: var(--soft-white);
}

.benefits {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.benefit {
    background: var(--pure-white);
    padding: 30px;
    border-radius: 12px;
    box-shadow: var(--shadow);
    text-align: center;
    transition: transform 0.3s ease;
    border: 1px solid var(--light-blue);
}

.benefit:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(30, 58, 138, 0.15);
}

.benefit h3 {
    color: var(--royal-blue);
    margin-bottom: 15px;
}

.benefit p {
    color: var(--text-dark);
    font-size: 15px;
    margin-bottom: 0;
}

/* Journey Section */
.journey {
    background: linear-gradient(45deg, var(--classic-blue), var(--royal-blue));
    color: var(--pure-white);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.journey::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('https://images.pexels.com/photos/2667691/pexels-photo-2667691.jpeg') no-repeat center center/cover;
    opacity: 0.3;
}

.journey-content {
    display: grid;
    grid-template-columns: 1fr 400px;
    gap: 50px;
    align-items: center;
    position: relative;
    z-index: 1;
}

.journey-text h2 {
    color: black;
    text-align: left;
    margin-bottom: 20px;
}

.journey-text p {
    color: black;
    font-size: 18px;
    margin-bottom: 30px;
}

.journey-image img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    border-radius: 15px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
    border: 3px solid var(--pure-white);
}

.btn-light {
    background: var(--pure-white);
    color: var(--classic-blue);
}

.btn-light:hover {
    background: var(--light-blue);
    transform: translateY(-2px);
}

/* Contact Section */
.contact {
    text-align: center;
    background: var(--pure-white);
}

.contact p {
    font-size: 16px;
    margin-bottom: 15px;
}

.contact a {
    color: var(--royal-blue);
    text-decoration: none;
    font-weight: 600;
}

.contact a:hover {
    color: var(--classic-blue);
    text-decoration: underline;
}

/* Footer */
footer {
    background: var(--classic-blue);
    color: var(--pure-white);
    text-align: center;
    padding: 30px 0;
    margin-top: 60px;
}

footer p {
    margin: 0;
    font-size: 14px;
    color: rgba(255,255,255,0.9);
}

/* ===== RESPONSIVE DESIGN ===== */
@media (max-width: 768px) {
    .header-container {
        flex-direction: row;
        padding: 15px;
        gap: 15px;
    }
    
    /* Mobile Menu */
    nav ul {
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        flex-direction: column;
        background: rgba(255, 255, 255, 0.85);
        backdrop-filter: blur(10px);
        display: none;
        padding: 1rem 0;
        box-shadow: 0 8px 20px rgba(0, 0, 0, 0.25);
        margin-left: 0;
        z-index: 1000;
        border-radius: 0 0 12px 12px;
        transition: all 0.3s ease;
    }

    nav ul.active {
        display: flex;
    }

    nav ul li {
        text-align: center;
        margin: 0.5rem 0;
    }

    nav a {
        color: #333;
        padding: 12px 20px;
        font-size: 16px;
        font-weight: 500;
        border-radius: 25px;
        transition: all 0.3s ease;
    }

    nav a:hover,
    nav a.active {
        background: rgba(0, 0, 0, 0.05);
        color: #000;
    }
    
    .hero-content,
    .about-content,
    .journey-content {
        grid-template-columns: 1fr;
        gap: 30px;
        text-align: center;
    }
    
    .journey-text h2 {
        text-align: center;
    }
    
    section.container {
        padding: 30px 20px;
        margin: 20px auto;
    }
    
    h2 {
        font-size: 28px;
    }
    
    .team-members,
    .benefits {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .hamburger {
        display: flex;
    }

    .member {
        padding: 25px 20px;
    }
    
    .member-image img {
        width: 100px;
        height: 100px;
    }
    
    .member-image::before {
        top: -6px;
        left: -6px;
        right: -6px;
        bottom: -6px;
    }
    
    .member-image::after {
        top: -10px;
        left: -10px;
        right: -10px;
        bottom: -10px;
    }
    
    .member h3 {
        font-size: 16px;
    }
    
    .member p {
        font-size: 14px;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }
    
    section.container {
        padding: 25px 15px;
    }
    
    .member,
    .benefit {
        padding: 20px;
    }
}

/* Performance optimization */
.member-image::before,
.member-image::after,
.member-image img,
.hero-image img,
.hero-cta,
.hero h1::after {
    will-change: transform;
}

/* Reduce motion for accessibility */
@media (prefers-reduced-motion: reduce) {
    .member-image::before,
    .hero::after,
    .hero::before {
        animation: none;
    }
    
    .hero-cta,
    .hero h1,
    .hero p,
    .hero-text {
        animation: none;
    }
    
    .member,
    .member-image,
    .member h3,
    .member p {
        animation: none;
    }}