:root {
    /* Sunset-inspired color palette */
    --golden-yellow: #FFA726;
    --warm-pink: #FF7B9C;
    --coral-red: #FF4B5C;
    --rich-magenta: #C23B5C;
    --deep-plum: #2D1B2D;
    
    /* Additional colors */
    --white: #FFFFFF;
    --light-gray: #F5F5F5;
    --text-dark: #1A1A1A;
    --text-light: #666666;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
    background-color: var(--white);
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
}

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

/* Header Styles */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    transition: height 0.3s ease;
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.logo {
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    font-size: 1.5rem;
}

.logo a {
    text-decoration: none;
    display: inline-block;
}

.logo a div {
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    font-size: 1.5rem;
    background: linear-gradient(45deg, var(--golden-yellow), var(--warm-pink), var(--coral-red));
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    color: transparent;
    transition: opacity 0.3s ease;
}

.logo a div:hover {
    opacity: 0.8;
}

.tagline {
    font-family: 'Inter', sans-serif;
    font-size: 0.9rem;
    color: var(--text-light);
    margin-top: 0.25rem;
    font-weight: 400;
}

.nav-links {
    display: flex;
    gap: 2rem;
    list-style: none;
}

.nav-links a {
    text-decoration: none;
    color: var(--text-dark);
    font-weight: 500;
    transition: color 0.3s ease;
}

.nav-links a:hover {
    color: var(--coral-red);
}

/* Hamburger Menu */
.hamburger-menu {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.75rem;
    z-index: 1001;
    -webkit-tap-highlight-color: transparent;
}

.menu-icon {
    width: 28px;
    height: 28px;
    transition: transform 0.3s ease;
    -webkit-tap-highlight-color: transparent;
}

.hamburger-menu.active .menu-icon {
    transform: rotate(90deg);
}

/* Hero Section */
.hero-section {
    display: flex;
    align-items: center;
    background: linear-gradient(135deg, var(--deep-plum), var(--rich-magenta));
    padding: 12rem 0 8rem;
    position: relative;
    overflow: hidden;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at top right, var(--golden-yellow), transparent 60%);
    opacity: 0.1;
    pointer-events: none;
}

.hero-section .container {
    position: relative;
    z-index: 1;
}

/* Gradient Text Styles */
.gradient-text {
    position: relative;
    display: inline-block;
    font-size: 4rem;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    background: linear-gradient(45deg, var(--golden-yellow), var(--warm-pink), var(--coral-red));
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    color: transparent;
}

.hero-text {
    font-size: 1.5rem;
    color: var(--white);
    margin-bottom: 2rem;
    max-width: 600px;
}

/* Projects Section */
.projects-section {
    padding: 6rem 0;
    background-color: var(--light-gray);
}

.projects-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

/* Leadership Section */
.leadership-section {
    padding: 6rem 0;
    background: linear-gradient(135deg, var(--deep-plum), var(--rich-magenta));
    color: var(--white);
}

.testimonials-carousel {
    margin-top: 3rem;
    display: flex;
    gap: 2rem;
    overflow-x: auto;
    padding: 1rem;
    scroll-snap-type: x mandatory;
}

/* Resume Section */
.resume-section {
    padding: 6rem 0;
    background-color: var(--white);
}

.download-button {
    display: inline-block;
    padding: 1rem 2rem;
    background: var(--coral-red);
    color: var(--white);
    text-decoration: none;
    border-radius: 4px;
    font-weight: 500;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.download-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(255, 75, 92, 0.3);
}

/* Footer */
.footer {
    background-color: var(--deep-plum);
    color: var(--white);
    padding: 3rem 0;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer-links {
    display: flex;
    gap: 2rem;
}

.footer-links a {
    color: var(--white);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: var(--warm-pink);
}

/* Animations */
@keyframes gradientFlow {
    0% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
    100% {
        background-position: 0% 50%;
    }
}

/* Mobile Styles */
@media (max-width: 768px) {
    .header {
        position: fixed;
        height: auto;
        background: rgba(255, 255, 255, 0.98);
        backdrop-filter: blur(10px);
        box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    }

    .nav-container {
        flex-direction: row;
        align-items: center;
        padding: 1rem;
        position: relative;
        height: auto;
    }

    .logo {
        display: flex;
        flex-direction: column;
        margin-right: 3rem;
    }

    .logo a {
        text-decoration: none;
        display: inline-block;
    }

    .logo > a > div {
        font-family: 'Poppins', sans-serif;
        font-weight: 600;
        font-size: 1.25rem;
        background: linear-gradient(45deg, var(--golden-yellow), var(--warm-pink), var(--coral-red));
        -webkit-background-clip: text;
        background-clip: text;
        -webkit-text-fill-color: transparent;
        color: transparent;
        cursor: pointer;
        transition: opacity 0.3s ease;
    }

    .logo > a > div:hover {
        opacity: 0.8;
    }

    .tagline {
        display: block;
        font-family: 'Inter', sans-serif;
        font-size: 0.85rem;
        color: var(--text-light);
        margin-top: 0.25rem;
        font-weight: 400;
        line-height: 1.4;
    }

    .hamburger-menu {
        display: block;
        position: absolute;
        top: 1rem;
        right: 1rem;
        background: none;
        border: none;
        cursor: pointer;
        padding: 0.5rem;
        z-index: 1001;
    }

    .nav-links {
        position: fixed;
        top: 0;
        right: -100%;
        width: 70%;
        height: 100vh;
        background: rgba(255, 255, 255, 0.98);
        backdrop-filter: blur(10px);
        flex-direction: column;
        text-align: center;
        gap: 0.5rem;
        padding: 6rem 2rem 2rem;
        transition: right 0.3s ease;
        z-index: 999;
        box-shadow: -5px 0 15px rgba(0, 0, 0, 0.1);
    }

    .nav-links.active {
        right: 0;
    }

    .nav-links li {
        margin: 0;
    }

    .nav-links a {
        display: block;
        padding: 0.5rem 0;
        color: var(--text-dark);
        font-size: 1rem;
        text-decoration: none;
        transition: color 0.3s ease;
    }

    .nav-links a:hover,
    .nav-links a:active,
    .nav-links a:focus {
        color: var(--coral-red);
    }

    .hero-section {
        padding-top: 12rem;
        min-height: 100vh;
        display: flex;
        align-items: center;
    }

    .gradient-text {
        font-size: 3rem;
    }

    .hero-text {
        font-size: 1.25rem;
    }

    .cta-container {
        flex-direction: column;
        gap: 1rem;
        width: 100%;
    }

    .cta-button {
        width: 100%;
        text-align: center;
    }

    .footer-content {
        flex-direction: column;
        gap: 2rem;
        text-align: center;
    }

    .testimonials-carousel {
        flex-direction: column;
        overflow-x: visible;
        padding: 0;
        scroll-snap-type: none;
    }

    .testimonial-card {
        min-width: 100%;
        max-width: 100%;
        scroll-snap-align: none;
    }

    /* Project page specific mobile styles */
    .project-detail {
        padding-top: 60px;
    }

    .project-hero {
        padding: 4rem 0 2rem;
    }

    .project-title {
        font-size: 2.5rem;
    }

    .content-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .metrics-grid {
        grid-template-columns: 1fr;
    }

    .project-section {
        padding: 4rem 0;
    }

    .project-section h2 {
        font-size: 2rem;
    }

    .impact-highlights {
        gap: 1rem;
        padding: 0.5rem 0;
    }

    .impact-quote {
        padding: 1.5rem;
    }

    .impact-quote blockquote {
        font-size: 1.1rem;
    }

    .strategic-breakthrough .carousel-container {
        margin-bottom: 2rem;
    }

    .how-i-led .carousel-container {
        margin-bottom: 2rem;
    }
}

/* Utility Classes */
.cta-container {
    display: flex;
    gap: 1rem;
    position: relative;
    z-index: 2;
}

.cta-button {
    display: inline-block;
    padding: 1rem 2rem;
    border-radius: 4px;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    text-transform: none;
}

.cta-button:first-child {
    background: var(--coral-red);
    color: var(--white);
}

.cta-button.secondary {
    background: transparent;
    border: 2px solid var(--white);
    color: var(--white);
}

.cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.cta-button.secondary:hover {
    background: var(--white);
    color: var(--deep-plum);
}

/* Add ripple effect */
.cta-button::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    transition: width 0.6s ease, height 0.6s ease;
}

.cta-button:active::after {
    width: 300px;
    height: 300px;
    opacity: 0;
}

/* Project Cards */
.project-card {
    background: var(--white);
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    position: relative;
}

.project-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
}

.project-link {
    text-decoration: none;
    color: inherit;
    display: block;
}

.project-image {
    width: 100%;
    height: 240px;
    overflow: hidden;
    position: relative;
    background-color: var(--light-gray);
}

.project-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transition: transform 0.3s ease;
    image-rendering: -webkit-optimize-contrast;
    backface-visibility: hidden;
    transform: translateZ(0);
    will-change: transform;
}

.project-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(45, 27, 45, 0.9), rgba(194, 59, 92, 0.9));
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.view-project {
    color: var(--white);
    font-weight: 500;
    padding: 0.75rem 1.5rem;
    border: 2px solid var(--white);
    border-radius: 4px;
    transform: translateY(20px);
    transition: transform 0.3s ease;
    text-transform: none;
}

.project-card:hover .project-overlay {
    opacity: 1;
}

.project-card:hover .view-project {
    transform: translateY(0);
}

.project-card:hover .project-image img {
    transform: scale(1.05);
}

.project-content {
    padding: 1.5rem;
}

.project-content h3 {
    color: var(--text-dark);
    margin-bottom: 1rem;
    font-size: 1.5rem;
    text-transform: none;
}

.project-content p {
    color: var(--text-light);
    margin-bottom: 1.5rem;
}

.impact-list {
    list-style: none;
    padding: 0;
}

.impact-list li {
    padding-left: 1.5rem;
    position: relative;
    margin-bottom: 0.5rem;
}

.impact-list li::before {
    content: '→';
    position: absolute;
    left: 0;
    color: var(--coral-red);
}

/* Testimonial Cards */
.testimonial-card {
    background: rgba(255, 255, 255, 0.1);
    padding: 2rem;
    border-radius: 8px;
    min-width: 300px;
    max-width: 400px;
    scroll-snap-align: start;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.testimonial-card blockquote {
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 1rem;
    font-style: italic;
}

.testimonial-card cite {
    display: block;
    font-size: 0.9rem;
    color: var(--warm-pink);
    font-style: normal;
}

/* Scroll Reveal Animation */
.reveal-section {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.reveal-section.revealed {
    opacity: 1;
    transform: translateY(0);
}

/* Progress Bar */
.progress-bar {
    position: fixed;
    top: 0;
    left: 0;
    width: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--deep-plum), var(--rich-magenta));
    z-index: 1000;
    transition: width 0.1s ease-out;
    pointer-events: none;
}

.progress-bar::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: inherit;
    filter: blur(1px);
}

/* Navigation Dots */
.nav-dots {
    position: fixed;
    top: 50%;
    right: 40px;
    transform: translateY(-50%);
    display: flex;
    flex-direction: column;
    gap: 12px;
    z-index: 100;
}

.nav-dots::before,
.nav-dots::after {
    content: '';
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    width: 1px;
    height: 60px;
    background: var(--text-dark);
    opacity: 0.2;
}

.nav-dots::before {
    top: -60px;
}

.nav-dots::after {
    bottom: -60px;
}

.nav-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--text-dark);
    opacity: 0.2;
    cursor: pointer;
    transition: all 0.3s ease;
}

.nav-dot:hover {
    opacity: 0.4;
}

.nav-dot.active {
    opacity: 1;
    transform: scale(1.5);
}

/* Quote Animation */
.quote-animate {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.quote-revealed {
    opacity: 1;
    transform: translateY(0);
}

/* Email reveal styles */
.email-fallback {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.5);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1000;
}

.email-card {
    background: var(--white);
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    max-width: 90%;
    width: 400px;
    position: relative;
}

.email-card .close-button {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: none;
    border: none;
    font-size: 1.5rem;
    cursor: pointer;
    color: var(--deep-plum);
    padding: 0.5rem;
    line-height: 1;
}

.email-card p {
    margin-bottom: 1.5rem;
    color: var(--deep-plum);
}

.email-display {
    display: flex;
    align-items: center;
    gap: 1rem;
    background: var(--light-plum);
    padding: 1rem;
    border-radius: 4px;
}

.email-display code {
    flex: 1;
    color: var(--deep-plum);
    font-family: monospace;
}

.copy-button {
    background: var(--deep-plum);
    color: var(--white);
    border: none;
    padding: 0.5rem 1rem;
    border-radius: 4px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.copy-button:hover {
    background: var(--rich-magenta);
}

.copy-button.copied {
    background: var(--success-green);
}

/* Mobile-specific project card styles */
@media (max-width: 768px) {
    .project-card {
        transform: none !important;
        box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1) !important;
    }

    .project-overlay {
        opacity: 1;
        background: linear-gradient(to bottom, 
            rgba(45, 27, 45, 0.7), 
            rgba(194, 59, 92, 0.7)
        );
    }

    .view-project {
        transform: translateY(0);
        background: var(--white);
        color: var(--deep-plum);
        border: none;
        padding: 0.5rem 1rem;
        font-size: 0.9rem;
        box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
    }

    .project-content {
        position: relative;
        z-index: 1;
    }
}

/* Project Detail Styles */
.project-detail {
    padding-top: 80px;
    position: relative;
}

/* Page Location Indicator */
.page-location-indicator {
    position: fixed;
    top: 50%;
    right: 40px;
    transform: translateY(-50%);
    display: flex;
    flex-direction: column;
    gap: 12px;
    z-index: 100;
}

.page-location-indicator::before {
    content: '';
    position: absolute;
    top: -60px;
    left: 50%;
    transform: translateX(-50%);
    width: 1px;
    height: 60px;
    background: var(--text-dark);
    opacity: 0.2;
}

.page-location-indicator::after {
    content: '';
    position: absolute;
    bottom: -60px;
    left: 50%;
    transform: translateX(-50%);
    width: 1px;
    height: 60px;
    background: var(--text-dark);
    opacity: 0.2;
}

.page-location-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--text-dark);
    opacity: 0.2;
    cursor: pointer;
    transition: all 0.3s ease;
}

.page-location-dot:hover {
    opacity: 0.4;
}

.page-location-dot.active {
    opacity: 1;
    transform: scale(1.5);
}

/* Progress Indicators */
.progress-bar {
    position: fixed;
    top: 0;
    left: 0;
    width: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--deep-plum), var(--rich-magenta));
    z-index: 1000;
    transition: width 0.1s ease-out;
    pointer-events: none;
}

.progress-bar::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: inherit;
    filter: blur(1px);
}

.nav-dots {
    position: fixed;
    top: 50%;
    right: 40px;
    transform: translateY(-50%);
    display: flex;
    flex-direction: column;
    gap: 12px;
    z-index: 100;
}

.nav-dots::before,
.nav-dots::after {
    content: '';
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    width: 1px;
    height: 60px;
    background: var(--text-dark);
    opacity: 0.2;
}

.nav-dots::before {
    top: -60px;
}

.nav-dots::after {
    bottom: -60px;
}

.nav-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--text-dark);
    opacity: 0.2;
    cursor: pointer;
    transition: all 0.3s ease;
}

.nav-dot:hover {
    opacity: 0.4;
}

.nav-dot.active {
    opacity: 1;
    transform: scale(1.5);
}

.project-hero {
    background: linear-gradient(135deg, var(--deep-plum), var(--rich-magenta));
    padding: 6rem 0 4rem;
    position: relative;
    overflow: hidden;
}

.project-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at top right, var(--golden-yellow), transparent 60%);
    opacity: 0.1;
    pointer-events: none;
}

.project-hero .container {
    position: relative;
    z-index: 5;
}

.back-link {
    color: var(--white);
    text-decoration: none;
    display: inline-block;
    margin-bottom: 2rem;
    transition: transform 0.3s ease;
    position: relative;
    z-index: 10;
    cursor: pointer;
    padding: 0.5rem 0;
}

.back-link:hover {
    transform: translateX(-5px);
}

.project-title {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
}

.project-title.gradient-text {
    font-size: 3.5rem;
}

.project-title.gradient-text::before {
    display: none;
}

.project-subtitle {
    color: var(--white);
    font-size: 1.25rem;
    max-width: 600px;
    margin-bottom: 2rem;
}

/* Section Styles */
.project-section {
    padding: 6rem 0;
    position: relative;
    z-index: 1;
    scroll-margin-top: 120px;
}

.project-section.platform-ai {
    background-color: var(--light-gray);
}

.project-section.summarization {
    background-color: var(--white);
}

.project-section.before-state {
    padding: 2rem 0 !important;
}

.project-section.before-state h2 {
    margin-bottom: 1.5rem !important;
}

.project-section.before-state .content-grid {
    gap: 2rem !important;
    display: grid !important;
    grid-template-columns: 1fr 1fr !important;
    align-items: start !important;
}

.project-section.before-state .text-content {
    margin-top: 0 !important;
    grid-column: 1 !important;
}

.project-section.before-state .text-content p {
    margin-bottom: 1rem !important;
}

.project-section.before-state .text-content p:last-of-type {
    margin-bottom: 1rem !important;
}

.project-section.before-state .visual-content {
    margin-top: 0 !important;
    grid-column: 2 !important;
    grid-row: 1 !important;
    align-self: start !important;
}

.project-section.before-state .section-image {
    max-height: 300px !important;
    width: auto !important;
    margin: 0 auto !important;
    display: block !important;
}

.project-section.before-state .quote-card {
    margin: 0 0 1.5rem 0 !important;
    padding: 1.5rem !important;
    grid-column: 1 !important;
}

.project-section.before-state .quote-card blockquote {
    font-size: 1.1rem !important;
    margin-bottom: 0.75rem !important;
}

.project-section:nth-child(even) {
    background-color: var(--light-gray);
}

.project-section h2 {
    font-size: 2.5rem;
    margin-bottom: 2rem;
}

.content-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: start;
    position: relative;
    z-index: 1;
    margin-bottom: 3rem;
}

.text-content {
    margin-top: 1rem;
}

.text-content p {
    margin-bottom: 1.5rem;
}

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

.responsibility-list, .pain-points ul {
    list-style: none;
    padding: 0;
    margin: 2rem 0;
}

.responsibility-list li, .pain-points li {
    padding-left: 1.5rem;
    position: relative;
    margin-bottom: 1rem;
}

.responsibility-list li::before, .pain-points li::before {
    content: '→';
    position: absolute;
    left: 0;
    color: var(--coral-red);
}

/* Quote Cards */
.quote-card {
    background: linear-gradient(135deg, var(--deep-plum), var(--rich-magenta));
    padding: 2rem;
    border-radius: 8px;
    margin: 2rem 0;
    color: var(--white);
    position: relative;
}

.quote-card blockquote {
    font-size: 1.2rem;
    font-style: italic;
    margin-bottom: 1rem;
    line-height: 1.6;
}

.quote-card cite {
    display: block;
    font-size: 0.9rem;
    color: var(--warm-pink);
    font-style: normal;
}

.visual-content {
    margin-top: 2rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.section-image {
    width: 100%;
    max-width: 600px;
    height: auto;
    border-radius: 8px;
    transition: transform 0.3s ease;
}

.section-image:hover {
    transform: scale(1.02);
}

/* Carousel Styles */
.carousel-container {
    position: relative;
    width: 100%;
    overflow: hidden;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    z-index: 1;
}

.sticky-section {
    position: relative;
    z-index: 1;
}

.carousel-slides {
    display: flex;
    transition: transform 0.5s ease;
    position: relative;
}

.carousel-slide {
    min-width: 100%;
    opacity: 0;
    transition: opacity 0.3s ease;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.carousel-slide.active {
    opacity: 1;
    z-index: 1;
    position: relative;
}

.carousel-slide img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: contain;
}

.carousel-controls {
    position: absolute;
    bottom: 20px;
    left: 0;
    right: 0;
    display: flex;
    justify-content: center;
    gap: 10px;
    z-index: 10;
}

.carousel-control {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--white);
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.carousel-control:hover {
    transform: scale(1.1);
}

.carousel-indicators {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-top: 1rem;
}

.carousel-indicator {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--text-dark);
    opacity: 0.2;
    cursor: pointer;
    transition: all 0.3s ease;
}

.carousel-indicator:hover {
    opacity: 0.4;
}

.carousel-indicator.active {
    opacity: 1;
    transform: scale(1.2);
}

.metrics-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin: 3rem 0;
}

.metric-card {
    background: var(--white);
    border-radius: 8px;
    padding: 2rem;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
    text-align: center;
}

.metric-card h3 {
    color: var(--deep-plum);
    margin-bottom: 1rem;
}

.metric-value {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 0.5rem;
}

.metric-description {
    color: var(--text-light);
    font-size: 0.9rem;
}

.next-project-card {
    background: linear-gradient(135deg, var(--deep-plum), var(--rich-magenta));
    border-radius: 8px;
    padding: 3rem;
    text-align: center;
    margin-top: 2rem;
}

.next-project-link {
    text-decoration: none;
    color: var(--white);
}

.next-project-link h3 {
    font-size: 2rem;
    margin-bottom: 1rem;
    color: var(--white);
}

.next-project-link p {
    color: var(--white);
    margin-bottom: 1.5rem;
}

.arrow-link {
    display: inline-block;
    padding: 0.5rem 1rem;
    border: 2px solid var(--white);
    border-radius: 4px;
    transition: transform 0.3s ease;
    color: var(--white);
}

.next-project-link:hover .arrow-link {
    transform: translateX(10px);
}

/* Impact Section Styles */
.impact-intro {
    font-size: 1.25rem;
    line-height: 1.6;
    color: var(--text-color);
    max-width: 800px;
    margin: 0 auto 2.5rem;
    text-align: center;
    font-weight: 500;
    position: relative;
    padding-bottom: 1.5rem;
}

.impact-intro::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background: linear-gradient(90deg, var(--accent-color), var(--secondary-color));
    border-radius: 3px;
}

.impact-highlights {
    display: flex;
    gap: 1.5rem;
    margin: 2rem 0;
    padding: 0.5rem 0;
    -webkit-overflow-scrolling: touch;
    width: 100%;
}

.impact-card {
    flex: 1;
    min-width: 250px;
    background: var(--white);
    border-radius: 8px;
    padding: 1.5rem;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
    border: 1px solid rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.impact-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.1);
}

.impact-card h4 {
    color: var(--deep-plum);
    margin-bottom: 0.75rem;
    font-size: 1.1rem;
    font-weight: 600;
}

.impact-card p {
    color: var(--text-light);
    font-size: 0.95rem;
    line-height: 1.5;
    margin: 0;
}

.impact-quote {
    background: linear-gradient(135deg, rgba(255, 87, 34, 0.1), rgba(255, 193, 7, 0.1));
    border-radius: 12px;
    padding: 2.5rem;
    margin: 3rem 0;
    border-left: 4px solid var(--accent-color);
}

.impact-quote blockquote {
    font-size: 1.25rem;
    line-height: 1.6;
    margin-bottom: 1.5rem;
    color: var(--text-color);
}

.impact-quote cite {
    font-style: italic;
    color: var(--accent-color);
    font-weight: 500;
}

.impact-visual {
    margin-top: 3rem;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.2);
}

.impact-visual img {
    width: 100%;
    height: auto;
    display: block;
}

/* Mobile Styles for Project Page */
@media (max-width: 768px) {
    .project-detail {
        padding-top: 60px;
    }

    .project-hero {
        padding: 4rem 0 2rem;
    }

    .project-title {
        font-size: 2.5rem;
    }

    .content-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .metrics-grid {
        grid-template-columns: 1fr;
    }

    .project-section {
        padding: 4rem 0;
    }

    .project-section h2 {
        font-size: 2rem;
    }

    .impact-highlights {
        gap: 1rem;
        padding: 0.5rem 0;
    }

    .impact-quote {
        padding: 1.5rem;
    }

    .impact-quote blockquote {
        font-size: 1.1rem;
    }

    .strategic-breakthrough .carousel-container {
        margin-bottom: 2rem;
    }

    .how-i-led .carousel-container {
        margin-bottom: 2rem;
    }

    /* Mobile header styles */
    .nav-container {
        flex-direction: row;
        align-items: center;
        padding: 1rem;
        position: relative;
    }

    .logo {
        display: flex;
        flex-direction: column;
        margin-right: 3rem;
    }

    .logo a {
        text-decoration: none;
        display: inline-block;
    }

    .logo > a > div {
        font-family: 'Poppins', sans-serif;
        font-weight: 600;
        font-size: 1.25rem;
        background: linear-gradient(45deg, var(--golden-yellow), var(--warm-pink), var(--coral-red));
        -webkit-background-clip: text;
        background-clip: text;
        -webkit-text-fill-color: transparent;
        color: transparent;
        cursor: pointer;
        transition: opacity 0.3s ease;
    }

    .logo > a > div:hover {
        opacity: 0.8;
    }

    .tagline {
        display: block;
        font-family: 'Inter', sans-serif;
        font-size: 0.85rem;
        color: var(--text-light);
        margin-top: 0.25rem;
        font-weight: 400;
    }

    .hamburger-menu {
        position: absolute;
        top: 1rem;
        right: 1rem;
    }

    .nav-links {
        position: fixed;
        top: 0;
        right: -100%;
        width: 70%;
        height: 100vh;
        background: rgba(255, 255, 255, 0.98);
        backdrop-filter: blur(10px);
        flex-direction: column;
        text-align: center;
        gap: 0.5rem;
        padding: 6rem 2rem 2rem;
        transition: right 0.3s ease;
        z-index: 999;
        box-shadow: -5px 0 15px rgba(0, 0, 0, 0.1);
    }

    .nav-links.active {
        right: 0;
    }

    .nav-links li {
        margin: 0;
    }

    .nav-links a {
        display: block;
        padding: 0.5rem 0;
        color: var(--text-dark);
        font-size: 1rem;
        text-decoration: none;
        transition: color 0.3s ease;
    }

    .nav-links a:hover,
    .nav-links a:active,
    .nav-links a:focus {
        color: var(--coral-red);
    }
}

.page-content h3 {
    color: var(--accent-color);
    font-size: 1.75rem;
    font-weight: 600;
    margin: 2rem 0 1rem;
    line-height: 1.3;
}

h3 {
    color: var(--text-light);
    font-size: 1.5rem;
    margin-bottom: 1rem;
    font-weight: 600;
}

/* Case Study Navigation */
.case-study-nav {
    background: var(--white);
    padding: 1rem 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
    position: sticky;
    top: 80px;
    z-index: 100;
    backdrop-filter: blur(10px);
}

.nav-subtitle {
    color: var(--text-light);
    font-size: 1rem;
    font-weight: 500;
    margin-bottom: 0.75rem;
    font-family: 'Inter', sans-serif;
}

.case-study-nav ul {
    list-style: none;
    display: flex;
    gap: 1rem;
    margin: 0;
    padding: 0;
}

.case-study-nav a {
    color: var(--text-dark);
    text-decoration: none;
    font-weight: 500;
    padding: 0.75rem 1.5rem;
    border-radius: 4px;
    background: var(--light-gray);
    transition: all 0.3s ease;
    display: inline-block;
    border: 1px solid rgba(0, 0, 0, 0.1);
}

.case-study-nav a:hover {
    color: var(--white);
    background: linear-gradient(45deg, var(--golden-yellow), var(--coral-red));
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    border-color: transparent;
}

@media (max-width: 768px) {
    .case-study-nav {
        top: 60px;
        padding: 0.5rem 0;
    }

    .nav-subtitle {
        font-size: 0.9rem;
        margin-bottom: 0.5rem;
    }
}

.case-study-link {
    text-align: center;
    margin-top: 3rem;
}

.case-study-link .cta-button {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: var(--coral-red);
    color: var(--white);
    border: none;
    padding: 1rem 2rem;
    border-radius: 4px;
    font-weight: 500;
    transition: all 0.3s ease;
}

.case-study-link .cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(255, 75, 92, 0.3);
}

@media (max-width: 768px) {
    .case-study-link {
        margin-top: 2rem;
    }

    .case-study-link .cta-button {
        width: 100%;
        justify-content: center;
    }
}

.clickable-image {
    cursor: pointer;
    transition: opacity 0.3s ease;
}

.clickable-image:hover {
    opacity: 0.9;
}

.image-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.9);
    z-index: 2000;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.image-overlay.active {
    display: flex;
    opacity: 1;
}

.overlay-content {
    position: relative;
    max-width: 90%;
    max-height: 90%;
    margin: auto;
}

.overlay-content img {
    max-width: 100%;
    max-height: 90vh;
    object-fit: contain;
    border-radius: 4px;
}

.close-overlay {
    position: absolute;
    top: -40px;
    right: 0;
    background: none;
    border: none;
    color: var(--white);
    font-size: 2rem;
    cursor: pointer;
    padding: 0.5rem;
    line-height: 1;
    transition: transform 0.3s ease;
}

.close-overlay:hover {
    transform: scale(1.1);
}

@media (max-width: 768px) {
    .overlay-content {
        max-width: 95%;
    }
    
    .close-overlay {
        top: -35px;
        font-size: 1.75rem;
    }
} 