/* Project Pages Stylesheet */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

    :root {
        --primary-color: #2563eb;
        --secondary-color: #1e40af;
        --accent-color: #3b82f6;
        --text-dark: #1f2937;
        --text-light: #6b7280;
        --bg-light: #e8f0fe;
        --white: #ffffff;
        --gradient: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    }body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
    background: var(--white);
}

/* Navigation */
.project-nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: var(--white);
    padding: 1rem 2rem;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    z-index: 1000;
}

.back-btn {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
}

.back-btn:hover {
    color: var(--secondary-color);
    transform: translateX(-5px);
    display: inline-block;
}

/* Project Detail */
.project-detail {
    max-width: 1200px;
    margin: 80px auto 0;
    padding: 2rem;
}

.project-header {
    text-align: center;
    margin-bottom: 3rem;
    padding: 2rem 0;
}

.project-tag {
    display: inline-block;
    padding: 0.5rem 1.5rem;
    background: var(--gradient);
    color: var(--white);
    border-radius: 50px;
    font-weight: 600;
    margin-bottom: 1rem;
}

.project-header h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
    color: var(--text-dark);
}

.project-subtitle {
    font-size: 1.3rem;
    color: var(--text-light);
    max-width: 800px;
    margin: 0 auto;
}

/* Hero Image */
.project-hero {
    margin-bottom: 3rem;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0,0,0,0.15);
}

.project-hero img {
    width: 100%;
    height: auto;
    display: block;
}

/* Content Sections */
.project-content section {
    margin-bottom: 3rem;
    padding: 2rem;
    background: var(--bg-light);
    border-radius: 15px;
}

.project-content h2 {
    font-size: 2rem;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
    padding-bottom: 0.5rem;
    border-bottom: 3px solid var(--primary-color);
}

.project-content p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--text-light);
    margin-bottom: 1rem;
}

.project-content ul {
    list-style: none;
    padding-left: 0;
}

.project-content li {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--text-light);
    margin-bottom: 1rem;
    padding-left: 1.5rem;
    position: relative;
}

.project-content li:before {
    content: "→";
    position: absolute;
    left: 0;
    color: var(--primary-color);
    font-weight: bold;
}

/* Stats */
.project-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.stat {
    text-align: center;
    padding: 1.5rem;
    background: var(--white);
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.08);
}

.stat h3 {
    font-size: 0.9rem;
    text-transform: uppercase;
    color: var(--text-light);
    margin-bottom: 0.5rem;
}

.stat p {
    font-size: 1.3rem;
    font-weight: bold;
    color: var(--primary-color);
}

/* Gallery */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.gallery-grid img {
    width: 100%;
    height: 75px;
    object-fit: cover;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

.gallery-grid img:hover {
    transform: scale(1.02);
}

.gallery-caption {
    text-align: center;
    margin-top: 1rem;
    font-style: italic;
    color: var(--text-light);
}

/* Tools */
.tools-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    margin-top: 2rem;
}

.tool {
    padding: 0.75rem 1.5rem;
    background: var(--gradient);
    color: var(--white);
    border-radius: 50px;
    font-weight: 600;
}

/* Testimonial */
.project-testimonial blockquote {
    background: var(--white);
    padding: 2rem;
    border-left: 5px solid var(--primary-color);
    border-radius: 10px;
    font-size: 1.2rem;
    font-style: italic;
    color: var(--text-dark);
}

.project-testimonial cite {
    display: block;
    margin-top: 1rem;
    font-style: normal;
    font-weight: 600;
    color: var(--primary-color);
}

/* CTA */
.project-cta {
    text-align: center;
    background: var(--gradient) !important;
    color: var(--white) !important;
}

.project-cta h2 {
    color: var(--white);
    border-bottom: 3px solid var(--white);
}

.project-cta p {
    color: var(--white);
    font-size: 1.2rem;
}

.cta-btn {
    display: inline-block;
    margin-top: 1.5rem;
    padding: 1rem 2.5rem;
    background: var(--white);
    color: var(--primary-color);
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
}

.cta-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.2);
}

/* Footer */
.project-footer {
    background: var(--text-dark);
    color: var(--white);
    text-align: center;
    padding: 2rem;
    margin-top: 4rem;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .project-header h1 {
        font-size: 2rem;
    }

    .project-subtitle {
        font-size: 1.1rem;
    }

    .project-content h2 {
        font-size: 1.5rem;
    }

    .project-stats {
        grid-template-columns: 1fr;
    }

    .gallery-grid {
        grid-template-columns: 1fr;
    }

    .project-detail {
        padding: 1rem;
    }
}

/* Highlighted & Colorized Elements */
.highlight-box {
    background: linear-gradient(135deg, #667eea15 0%, #764ba215 100%);
    border-left: 4px solid var(--primary-color);
    padding: 1.5rem;
    border-radius: 10px;
    margin: 1.5rem 0;
    animation: fadeInUp 0.6s ease;
}

.highlight-stat {
    display: inline-block;
    background: var(--gradient);
    color: var(--white);
    padding: 0.4rem 1rem;
    border-radius: 20px;
    font-weight: 700;
    margin: 0.3rem;
    box-shadow: 0 4px 15px rgba(102, 126, 234, 0.3);
}

.highlight-number {
    font-size: 1.4em;
    color: var(--primary-color);
    font-weight: 800;
    text-shadow: 0 2px 4px rgba(37, 99, 235, 0.2);
}

.highlight-achievement {
    background: linear-gradient(135deg, #10b98120 0%, #059f6920 100%);
    border-left: 4px solid #10b981;
    padding: 1rem 1.5rem;
    border-radius: 8px;
    margin: 1rem 0;
}

.highlight-tool {
    background: linear-gradient(135deg, #f59e0b20 0%, #f9731620 100%);
    border-left: 4px solid #f59e0b;
    padding: 1rem 1.5rem;
    border-radius: 8px;
    margin: 1rem 0;
}

/* Floating Animation */
.floating {
    animation: floating 3s ease-in-out infinite;
}

@keyframes floating {
    0%, 100% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-10px);
    }
}

.floating-badge {
    display: inline-block;
    padding: 0.6rem 1.2rem;
    background: var(--gradient);
    color: var(--white);
    border-radius: 25px;
    font-weight: 600;
    margin: 0.5rem;
    box-shadow: 0 8px 20px rgba(102, 126, 234, 0.4);
    animation: floatingBadge 4s ease-in-out infinite;
}

@keyframes floatingBadge {
    0%, 100% {
        transform: translateY(0px) scale(1);
        box-shadow: 0 8px 20px rgba(102, 126, 234, 0.4);
    }
    50% {
        transform: translateY(-8px) scale(1.05);
        box-shadow: 0 15px 30px rgba(102, 126, 234, 0.6);
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Review Section Styles */
.project-review {
    background: linear-gradient(135deg, #fbbf2420 0%, #f59e0b20 100%);
    border-radius: 15px;
    padding: 2.5rem;
    margin: 3rem 0;
    box-shadow: 0 10px 30px rgba(251, 191, 36, 0.2);
}

.project-review h2 {
    color: var(--primary-color);
    font-size: 2rem;
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.review-stars {
    color: #fbbf24;
    font-size: 1.8rem;
    margin-bottom: 1rem;
    letter-spacing: 0.3rem;
}

.review-rating {
    display: inline-block;
    background: var(--gradient);
    color: var(--white);
    padding: 0.8rem 1.5rem;
    border-radius: 50px;
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    box-shadow: 0 6px 20px rgba(102, 126, 234, 0.4);
}

.review-content {
    background: var(--white);
    padding: 2rem;
    border-radius: 12px;
    margin-bottom: 1.5rem;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
}

.review-content h3 {
    color: var(--primary-color);
    margin-bottom: 1rem;
    font-size: 1.3rem;
}

.review-content p {
    color: var(--text-dark);
    line-height: 1.8;
    font-size: 1.05rem;
}

.review-highlights {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1rem;
    margin-top: 1.5rem;
}

.review-highlight-item {
    background: var(--white);
    padding: 1.2rem;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.06);
    transition: transform 0.3s ease;
}

.review-highlight-item:hover {
    transform: translateY(-5px);
}

.review-highlight-item .icon {
    font-size: 2.5rem;
    margin-bottom: 0.5rem;
}

.review-highlight-item h4 {
    color: var(--primary-color);
    margin-bottom: 0.5rem;
    font-size: 1.1rem;
}

.review-highlight-item p {
    color: var(--text-light);
    font-size: 0.95rem;
}

/* Colorized Strong Text */
strong {
    color: var(--primary-color);
    font-weight: 700;
}

.project-details ul li strong {
    background: linear-gradient(135deg, #667eea20 0%, #764ba220 100%);
    padding: 0.2rem 0.5rem;
    border-radius: 5px;
}
