/* Reset and base styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    background-color: #000000;
    color: #ffffff;
    line-height: 1.6;
    overflow-x: hidden;
}

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

/* Header and Navigation */
.header {
    position: fixed;
    top: 0;
    width: 100%;
    background-color: rgba(0, 0, 0, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    border-bottom: 1px solid rgba(255, 20, 147, 0.1);
}

.navbar {
    padding: 1rem 0;
}

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

.nav-logo a {
    font-size: 1.5rem;
    font-weight: 700;
    color: #FF1493;
    text-decoration: none;
    transition: color 0.3s ease;
}

.nav-logo a:hover {
    color: #ffffff;
}

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

.nav-link {
    color: #cccccc;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
    position: relative;
}

.nav-link:hover,
.nav-link.active {
    color: #FF1493;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background-color: #FF1493;
    transition: width 0.3s ease;
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 100%;
}

/* Mobile menu */
.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.bar {
    width: 25px;
    height: 3px;
    background-color: #ffffff;
    margin: 3px 0;
    transition: 0.3s;
}

/* Main content */
.main-wrapper {
    position: relative;
    width: 100%;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

.main-content {
    margin-top: 80px;
}

/* Hero section */
.hero {
    width: 100%;
    display: flex;
    align-items: center;
    text-align: center;
    padding: 2rem 0 4rem 0;
    min-height: auto;
}

.hero-content {
    max-width: 800px;
    margin: 0 auto;
}

.hero-title {
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 700;
    margin-bottom: 1rem;
    line-height: 1.2;
}

.highlight {
    color: #FF1493;
}

.hero-subtitle {
    font-size: clamp(1.2rem, 3vw, 1.5rem);
    color: #cccccc;
    margin-bottom: 1.5rem;
    font-weight: 500;
}

.hero-description {
    font-size: 1.1rem;
    color: #aaaaaa;
    margin-bottom: 2.5rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 12px 30px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    border: 2px solid transparent;
    cursor: pointer;
    font-size: 1rem;
}

.btn-primary {
    background-color: #FF1493;
    color: #ffffff;
    border-color: #FF1493;
}

.btn-primary:hover {
    background-color: transparent;
    color: #FF1493;
    border-color: #FF1493;
    transform: translateY(-2px);
}

.btn-secondary {
    background-color: transparent;
    color: #ffffff;
    border-color: #ffffff;
}

.btn-secondary:hover {
    background-color: #ffffff;
    color: #000000;
    transform: translateY(-2px);
}

/* Section styles */
section {
    padding: 4rem 0;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 3rem;
    color: #ffffff;
}

.section-title::after {
    content: '';
    display: block;
    width: 60px;
    height: 3px;
    background-color: #FF1493;
    margin: 1rem auto;
}

/* Skills section */
.skills {
    width: 100%;
    padding: 5rem 0;
    background: linear-gradient(135deg, #111 0%, #1a1a1a 100%);
}

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

.skill-card {
    background: #1a1a1a;
    padding: 2rem;
    border-radius: 10px;
    border: 1px solid #333;
    transition: transform 0.3s ease, border-color 0.3s ease;
    margin-bottom: 1rem;
}

.skill-card:hover {
    transform: translateY(-5px);
    border-color: #FF1493;
}

.skill-title {
    font-size: 1.3rem;
    font-weight: 600;
    color: #FF1493;
    margin-bottom: 1rem;
}

.skill-description {
    color: #cccccc;
    font-size: 1rem;
}

/* Contact section */
.contact {
    text-align: center;
}

.contact-description {
    font-size: 1.1rem;
    color: #cccccc;
    max-width: 600px;
    margin: 0 auto 3rem;
}

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

/* Scroll Animations */
.animate-on-scroll {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s ease-out;
}

.animate-in {
    opacity: 1;
    transform: translateY(0);
}

.skill-card.animate-on-scroll {
    transform: translateY(50px) scale(0.95);
    transition: all 0.6s ease-out;
}

.skill-card.animate-in {
    transform: translateY(0) scale(1);
}

.hero-content.animate-on-scroll {
    transform: translateY(40px);
    transition: all 1s ease-out;
}

/* Staggered animation for skill cards */
.skill-card:nth-child(1) { transition-delay: 0.1s; }
.skill-card:nth-child(2) { transition-delay: 0.2s; }
.skill-card:nth-child(3) { transition-delay: 0.3s; }
.skill-card:nth-child(4) { transition-delay: 0.4s; }

/* Mobile responsive styles */
@media (max-width: 768px) {
    .hero-description {
        margin-bottom: 0.5rem !important;
    }
    
    .hero-buttons {
        gap: 0.75rem;
        margin-top: 0;
    }
    
    .btn {
        padding: 8px 16px;
        font-size: 0.85rem;
    }
    
    .experience-section-title {
        font-size: 1.5rem;
        line-height: 1.1;
        white-space: nowrap;
    }
    
    .container {
        padding: 0 15px;
    }
    
    .nav-menu {
        position: fixed;
        left: -100%;
        top: 0;
        flex-direction: column;
        background-color: rgba(0, 0, 0, 0.98);
        backdrop-filter: blur(15px);
        width: 100%;
        height: 100vh;
        text-align: center;
        transition: left 0.3s ease;
        z-index: 9998;
        padding-top: 80px;
        overflow-y: auto;
    }

    .nav-menu.active {
        left: 0;
    }

    .nav-item {
        margin: 2rem 0;
    }

    .nav-link {
        font-size: 1.2rem;
        padding: 1rem;
        display: block;
    }

    .hamburger {
        display: flex;
        cursor: pointer;
        z-index: 9999;
        position: relative;
    }

    .hamburger.active .bar:nth-child(2) {
        opacity: 0;
    }

    .hamburger.active .bar:nth-child(1) {
        transform: translateY(8px) rotate(45deg);
    }

    .hamburger.active .bar:nth-child(3) {
        transform: translateY(-8px) rotate(-45deg);
    }
    
    .hero h1 {
        font-size: 2.5rem;
    }
    
    .hero p {
        font-size: 1.1rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .experience-grid {
        grid-template-columns: 1fr;
    }
    
    .experience-card {
        max-width: none;
    }
}

/* Desktop navigation override */
@media (min-width: 769px) {
    .nav-menu {
        display: flex !important;
        position: static !important;
        left: auto !important;
        top: auto !important;
        flex-direction: row !important;
        background-color: transparent !important;
        width: auto !important;
        text-align: left !important;
        box-shadow: none !important;
        gap: 2rem;
    }
    
    .nav-item {
        margin: 0 !important;
    }
    
    .hamburger {
        display: none !important;
    }
}

/* About page specific styles */
.story-layout {
    display: flex;
    align-items: flex-start;
    gap: 2rem;
    margin-bottom: 2rem;
}

.about-photo {
    flex-shrink: 0;
}

.profile-photo {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid #000000;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease;
}

.profile-photo:hover {
    transform: scale(1.05);
}

.story-text {
    flex: 1;
}

.story-text p {
    margin-top: 0;
}

.animate-fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s ease-out;
}

.animate-fade-in.animate-in {
    opacity: 1;
    transform: translateY(0);
}

/* Mobile responsiveness for profile photo */
@media (max-width: 768px) {
    .story-layout {
        flex-direction: column;
        align-items: center;
        gap: 1.5rem;
    }
    
    .about-photo {
        text-align: center;
    }
    
    .profile-photo {
        width: 100px;
        height: 100px;
    }
    
    .story-text {
        text-align: left;
    }
}

/* Beyond Work section photo */
.beyond-work-photo {
    text-align: center;
    margin-top: 2rem;
}

.hockey-image {
    max-width: 300px;
    width: 100%;
    height: auto;
    border-radius: 8px;
    border: 2px solid #FF1493;
    box-shadow: 0 4px 15px rgba(255, 20, 147, 0.2);
    transition: transform 0.3s ease;
}

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

@media (max-width: 768px) {
    .hockey-image {
        max-width: 250px;
    }
}

/* Experience page styles */
.page-header {
    text-align: center;
    padding: 3rem 0;
    background-color: #111111;
}

.page-title {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: #ffffff;
}

.page-subtitle {
    font-size: 1.2rem;
    color: #cccccc;
}

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

.experience-section-title {
    font-size: 2.2rem;
    font-weight: 700;
    color: #FF1493;
    margin-bottom: 3rem;
    text-align: left;
    position: relative;
    line-height: 1.2;
}

.experience-section-title::after {
    content: '';
    display: block;
    width: 80px;
    height: 3px;
    background-color: #FF1493;
    margin-top: 1rem;
}

.section-subtitle {
    color: #cccccc;
    font-size: 1rem;
    margin-bottom: 2rem;
    margin-top: -1rem;
    font-style: italic;
}

.experience-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 2rem;
    align-items: stretch;
}

.experience-card {
    background-color: #1a1a1a;
    border-radius: 12px;
    border: 2px solid rgba(255, 20, 147, 0.2);
    transition: all 0.3s ease;
    overflow: hidden;
    cursor: pointer;
    position: relative;
}

.experience-card:hover {
    transform: translateY(-8px);
    border-color: #FF1493;
    box-shadow: 0 15px 40px rgba(255, 20, 147, 0.25);
}

.experience-card::after {
    content: "Click to view details →";
    position: absolute;
    bottom: 1rem;
    right: 1.5rem;
    color: #FF1493;
    font-size: 0.9rem;
    font-weight: 500;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.experience-card:hover::after {
    opacity: 1;
}

.card-link {
    display: flex;
    flex-direction: column;
    padding: 2rem;
    text-decoration: none;
    color: inherit;
    height: 100%;
    min-height: 300px;
    position: relative;
}

.card-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 1rem;
    gap: 1rem;
}

.card-title {
    font-size: 1rem;
    font-weight: 600;
    color: #ffffff;
    line-height: 1.4;
    margin-bottom: 0.8rem;
}

.card-date {
    font-size: 0.9rem;
    color: #FF1493;
    font-weight: 500;
    white-space: nowrap;
}

.card-company {
    font-size: 1rem;
    color: #FF1493;
    font-weight: 500;
    margin-bottom: 1rem;
}

.card-description {
    color: #cccccc;
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.card-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.tag {
    display: inline-block;
    background-color: rgba(255, 20, 147, 0.1);
    color: #FF1493;
    padding: 0.3rem 0.8rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 500;
    border: 1px solid rgba(255, 20, 147, 0.3);
}

/* Footer */
.footer {
    background-color: #111111;
    padding: 2rem 0;
    text-align: center;
    border-top: 1px solid rgba(255, 20, 147, 0.1);
}

.footer p {
    color: #666666;
    font-size: 0.9rem;
}

/* Responsive design */
@media screen and (max-width: 768px) {
    .hamburger {
        display: flex;
    }

    .nav-menu {
        position: fixed;
        left: -100%;
        top: 70px;
        flex-direction: column;
        background-color: rgba(0, 0, 0, 0.98);
        width: 100%;
        text-align: center;
        transition: 0.3s;
        box-shadow: 0 10px 27px rgba(0, 0, 0, 0.05);
        padding: 2rem 0;
        gap: 1rem;
    }

    .nav-menu.active {
        left: 0;
    }

    .hamburger.active .bar:nth-child(2) {
        opacity: 0;
    }

    .hamburger.active .bar:nth-child(1) {
        transform: translateY(8px) rotate(45deg);
    }

    .hamburger.active .bar:nth-child(3) {
        transform: translateY(-8px) rotate(-45deg);
    }

    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }

    .btn {
        width: 200px;
    }

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

    .contact-info {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .experience-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .card-link {
        min-height: 280px;
    }

    .card-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.5rem;
    }

    .section-title {
        font-size: 2rem;
    }

    .page-title {
        font-size: 2.2rem;
    }
}

@media screen and (max-width: 480px) {
    .container {
        padding: 0 15px;
    }

    .nav-container {
        padding: 0 15px;
    }

    .hero {
        min-height: 80vh;
        padding: 1rem 0;
    }

    .hero-title {
        font-size: 2.2rem;
    }

    .hero-subtitle {
        font-size: 1.1rem;
    }

    section {
        padding: 3rem 0;
    }

    .skill-card,
    .card-link {
        padding: 1.5rem;
    }

    .experience-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
}

/* Smooth animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-content > * {
    animation: fadeInUp 0.8s ease-out forwards;
}

.hero-title {
    animation-delay: 0.2s;
}

.hero-subtitle {
    animation-delay: 0.4s;
}

.hero-description {
    animation-delay: 0.6s;
}

.hero-buttons {
    animation-delay: 0.8s;
}

/* Focus styles for accessibility */
.btn:focus,
.nav-link:focus {
    outline: 2px solid #FF1493;
    outline-offset: 2px;
}

/* High contrast mode support */
@media (prefers-contrast: high) {
    .skill-card,
    .experience-card {
        border-width: 2px;
    }
    
    .tag {
        border-width: 2px;
    }
}

/* Project page styles */
.project-hero {
    padding: 6rem 0 4rem;
    text-align: center;
    background-color: #111111;
}

.project-title {
    font-size: 3.5rem;
    font-weight: 700;
    color: #FF1493;
    margin-bottom: 2rem;
    line-height: 1.2;
}

.mission-statement {
    font-size: 1.3rem;
    color: #ffffff;
    font-weight: 500;
    max-width: 900px;
    margin: 0 auto;
    line-height: 1.6;
}

.project-section {
    padding: 3rem 0;
    border-bottom: 1px solid rgba(255, 20, 147, 0.1);
}

.project-section:last-of-type {
    border-bottom: none;
}

.section-heading {
    font-size: 2.2rem;
    font-weight: 700;
    color: #FF1493;
    margin-bottom: 2rem;
    position: relative;
}

.section-heading::after {
    content: '';
    display: block;
    width: 60px;
    height: 3px;
    background-color: #FF1493;
    margin-top: 1rem;
}

.section-content {
    max-width: 800px;
}

.section-content p {
    color: #cccccc;
    font-size: 1.1rem;
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

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

.role-list {
    list-style: none;
    margin: 2rem 0;
    padding: 0;
}

.role-list li {
    color: #cccccc;
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 0.8rem;
    padding-left: 1.5rem;
    position: relative;
}

.role-list li::before {
    content: '▸';
    color: #FF1493;
    font-weight: bold;
    position: absolute;
    left: 0;
}

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

.image-container {
    background-color: #1a1a1a;
    border: 2px solid rgba(255, 20, 147, 0.3);
    border-radius: 8px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.image-container:hover {
    border-color: #FF1493;
    transform: translateY(-2px);
}

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

.image-caption {
    color: #FF1493;
    font-size: 1rem;
    font-weight: 500;
    text-align: center;
    padding: 1rem;
    margin: 0;
    background-color: #1a1a1a;
}

.prototype-link-container {
    text-align: center;
    margin: 2rem 0;
}

.prototype-link {
    display: inline-block;
    color: #FF1493;
    text-decoration: none;
    font-size: 1.1rem;
    font-weight: 600;
    padding: 0.8rem 2rem;
    border: 2px solid #FF1493;
    border-radius: 50px;
    transition: all 0.3s ease;
    background-color: transparent;
}

.prototype-link:hover {
    background-color: #FF1493;
    color: #ffffff;
    transform: translateY(-2px);
}

.back-link-section {
    padding: 3rem 0 2rem;
    text-align: center;
}

.back-link {
    display: inline-block;
    color: #FF1493;
    text-decoration: none;
    font-size: 1.1rem;
    font-weight: 500;
    padding: 0.8rem 2rem;
    border: 2px solid #FF1493;
    border-radius: 50px;
    transition: all 0.3s ease;
}

.back-link:hover {
    background-color: #FF1493;
    color: #ffffff;
    transform: translateY(-2px);
}

.project-subtitle {
    font-size: 1.5rem;
    color: #cccccc;
    font-weight: 500;
    margin-bottom: 1.5rem;
}

.skill-item {
    margin-bottom: 2.5rem;
}

.skill-title {
    font-size: 1.2rem;
    font-weight: 600;
    color: #FF1493;
    margin-bottom: 1rem;
}

.metrics-list {
    margin: 2rem 0;
}

.metrics-list p {
    font-size: 1.1rem;
    color: #ffffff;
    font-weight: 600;
    margin-bottom: 1rem;
    padding-left: 1rem;
    position: relative;
}

.metrics-list p::before {
    content: '•';
    color: #ffffff;
    font-weight: bold;
    position: absolute;
    left: 0;
}



.business-gallery {
    margin: 2rem 0;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1rem;
}

.gallery-item {
    background-color: #1a1a1a;
    border: 2px solid rgba(255, 20, 147, 0.3);
    border-radius: 8px;
    overflow: hidden;
    transition: all 0.3s ease;
    height: 250px;
    display: flex;
    align-items: center;
}

.gallery-item:hover {
    border-color: #FF1493;
    transform: translateY(-2px);
}

.business-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.video-container {
    position: relative;
    height: 250px;
}

.business-video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    border-radius: 4px;
    background: #000;
}

.fifth-image {
    object-fit: cover;
    height: 280px;
}

.video-container {
    position: relative;
    display: flex;
    align-items: center;
    width: 100%;
    height: 250px;
}

.business-video {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 4px;
    background: #000;
}

.video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    pointer-events: none;
}

.play-button {
    pointer-events: auto;
    background: none;
    border: none;
    cursor: pointer;
    transition: transform 0.2s ease;
}

.play-button:hover {
    transform: scale(1.1);
}

.video-overlay.hidden {
    display: none;
}

/* Lightbox Styles */
.lightbox {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.9);
    z-index: 1000;
    justify-content: center;
    align-items: center;
}

.lightbox-content {
    position: relative;
    max-width: 90%;
    max-height: 90%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.lightbox-close {
    position: absolute;
    top: -40px;
    right: 0;
    color: white;
    font-size: 30px;
    font-weight: bold;
    cursor: pointer;
    z-index: 1001;
    background: rgba(0, 0, 0, 0.5);
    border-radius: 50%;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background-color 0.3s ease;
}

.lightbox-close:hover {
    background: rgba(255, 20, 147, 0.8);
}

#lightbox-image {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    border-radius: 8px;
}

.clickable-image {
    cursor: pointer;
    transition: transform 0.2s ease;
}

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

/* Drip AIO page specific styles */
.external-link {
    color: #FF1493;
    text-decoration: none;
    font-weight: 600;
    border: 2px solid #FF1493;
    padding: 0.8rem 1.5rem;
    border-radius: 8px;
    display: inline-block;
    margin-top: 1rem;
    transition: all 0.3s ease;
}

.external-link:hover {
    background-color: #FF1493;
    color: #000000;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(255, 20, 147, 0.3);
}
.hero-spacing {
    height: 2rem;
}

.project-intro {
    font-size: 1.1rem;
    color: #cccccc;
    max-width: 900px;
    margin: 0 auto;
    line-height: 1.6;
    padding: 2rem 0;
}



.subsection-title {
    color: #FF1493;
    font-size: 1.4rem;
    font-weight: 600;
    margin: 2rem 0 1.5rem;
}

.process-steps {
    display: grid;
    gap: 2rem;
    margin: 2rem 0;
}

.step-item {
    background-color: #1a1a1a;
    border-radius: 12px;
    border: 2px solid rgba(255, 20, 147, 0.2);
    padding: 1.5rem;
    transition: all 0.3s ease;
}

.step-item:hover {
    border-color: #FF1493;
    box-shadow: 0 8px 25px rgba(255, 20, 147, 0.15);
}

.step-title {
    color: #FF1493;
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 0.8rem;
}

.step-description {
    color: #cccccc;
    font-size: 1rem;
    line-height: 1.6;
}

.results-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    margin: 2rem 0;
}

.result-item {
    text-align: center;
    background-color: #1a1a1a;
    border-radius: 12px;
    border: 2px solid rgba(255, 20, 147, 0.2);
    padding: 2rem 1rem;
    transition: all 0.3s ease;
}

.result-item:hover {
    border-color: #FF1493;
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(255, 20, 147, 0.2);
}

.result-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: #FF1493;
    margin-bottom: 0.5rem;
}

.result-label {
    color: #cccccc;
    font-size: 0.95rem;
    font-weight: 500;
}

.additional-results {
    margin-top: 2rem;
}

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

.results-list li {
    color: #cccccc;
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 1rem;
    position: relative;
    padding-left: 1.5rem;
}

.results-list li::before {
    content: "•";
    color: #FF1493;
    font-weight: bold;
    position: absolute;
    left: 0;
}

.skills-showcase {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    margin: 1.5rem 0;
}

.skill-tag {
    background-color: rgba(255, 20, 147, 0.1);
    color: #FF1493;
    padding: 0.8rem 1.5rem;
    border-radius: 25px;
    font-size: 1rem;
    font-weight: 500;
    border: 2px solid rgba(255, 20, 147, 0.3);
    transition: all 0.3s ease;
}

.skill-tag:hover {
    background-color: rgba(255, 20, 147, 0.2);
    border-color: #FF1493;
    transform: scale(1.05);
}

.back-navigation {
    text-align: center;
    margin: 2rem 0;
}

.back-btn {
    display: inline-block;
    background-color: transparent;
    color: #FF1493;
    padding: 1rem 2rem;
    border: 2px solid #FF1493;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.back-btn:hover {
    background-color: #FF1493;
    color: #000000;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(255, 20, 147, 0.3);
}

.analytics-showcase {
    margin-top: 3rem;
    text-align: center;
}

.analytics-image {
    max-width: 100%;
    max-height: 600px;
    object-fit: contain;
    border-radius: 12px;
    border: 2px solid rgba(255, 20, 147, 0.2);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
    transition: all 0.3s ease;
}

.analytics-image:hover {
    border-color: #FF1493;
    box-shadow: 0 12px 35px rgba(255, 20, 147, 0.2);
    transform: scale(1.02);
}

.analytics-caption {
    color: #cccccc;
    font-size: 0.9rem;
    font-style: italic;
    margin-top: 1rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.testimonial-showcase {
    margin-top: 3rem;
}

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

.testimonial-item {
    text-align: center;
}

.testimonial-image {
    max-width: 100%;
    height: auto;
    border-radius: 12px;
    border: 2px solid rgba(255, 20, 147, 0.2);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
    transition: all 0.3s ease;
}

.testimonial-image:hover {
    border-color: #FF1493;
    box-shadow: 0 12px 35px rgba(255, 20, 147, 0.2);
    transform: scale(1.02);
}

.testimonial-caption {
    color: #cccccc;
    font-size: 0.9rem;
    font-style: italic;
    text-align: center;
    max-width: 700px;
    margin: 0 auto;
}

/* Mobile responsiveness for Drip AIO page */
@media screen and (max-width: 768px) {
    .results-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }
    
    .result-item {
        padding: 1.5rem 0.8rem;
    }
    
    .result-number {
        font-size: 2rem;
    }
    
    .skills-showcase {
        justify-content: center;
    }
    
    .process-steps {
        gap: 1.5rem;
    }
    
    .step-item {
        padding: 1.2rem;
    }
}

@media screen and (max-width: 480px) {
    .results-grid {
        grid-template-columns: 1fr;
    }
    
    .result-number {
        font-size: 1.8rem;
    }
    
    .skill-tag {
        padding: 0.6rem 1.2rem;
        font-size: 0.9rem;
    }
}

/* Responsive design for project pages */
@media screen and (max-width: 768px) {
    .project-title {
        font-size: 2.5rem;
    }
    
    .project-subtitle {
        font-size: 1.2rem;
    }
    
    .mission-statement {
        font-size: 1.1rem;
    }
    
    .section-heading {
        font-size: 1.8rem;
    }
    
    .section-content p,
    .role-list li {
        font-size: 1rem;
    }
    
    .image-gallery {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .metrics-grid {
        grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
        gap: 1rem;
    }
    
    .metric-item {
        padding: 1rem;
    }
    
    .metric-number {
        font-size: 1.5rem;
    }
}

@media screen and (max-width: 480px) {
    .project-hero {
        padding: 4rem 0 3rem;
    }
    
    .project-title {
        font-size: 2.2rem;
    }
    
    .mission-statement {
        font-size: 1rem;
    }
    
    .project-section {
        padding: 2rem 0;
    }
    
    .section-heading {
        font-size: 1.6rem;
    }
}

/* Reduced motion support */
@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
    
    html {
        scroll-behavior: auto;
    }
}
