/*=========================================
PROJECT PAGE
=========================================*/

* {

    margin: 0;

    padding: 0;

    box-sizing: border-box;

}

body {

    font-family: 'Inter', sans-serif;

    background: #f8fafc;

    color: #0f172a;

}

.container {

    width: 90%;

    max-width: 1450px;

    margin: auto;

}

/*========================*/

.project-navbar {

    position: sticky;

    top: 0;

    background: white;

    box-shadow: 0 5px 25px rgba(0, 0, 0, .05);

    z-index: 100;

}

.nav-wrapper {

    height: 80px;

    display: flex;

    justify-content: space-between;

    align-items: center;

}

.logo {

    text-decoration: none;

    font-size: 34px;

    font-weight: 800;

    font-family: Poppins;

    color: #0f172a;

}

.logo span {

    color: #2563eb;

}

nav {

    display: flex;

    gap: 35px;

}

nav a {

    text-decoration: none;

    color: #475569;

    font-weight: 600;

}

nav a.active {

    color: #2563eb;

}

.projects-hero {

    padding: 130px 0 70px;

    text-align: center;

}

.projects-hero p:first-child {

    color: #2563eb;

    font-weight: 700;

    letter-spacing: 2px;

    margin-bottom: 20px;

}

.projects-hero h1 {

    font-size: 64px;

    font-family: Poppins;

    margin-bottom: 20px;

}

.projects-hero h3 {

    font-size: 26px;

    color: #64748b;

    margin-bottom: 30px;

    font-weight: 500;

}

.hero-line {

    width: 90px;

    height: 5px;

    background: #2563eb;

    margin: auto;

    border-radius: 30px;

    margin-bottom: 35px;

}

.hero-description {

    max-width: 760px;

    margin: auto;

    font-size: 18px;

    line-height: 1.8;

    color: #64748b;

}

.filter-section {

    padding-bottom: 60px;

}

.filter-buttons {

    display: flex;

    justify-content: center;

    gap: 18px;

    flex-wrap: wrap;

}

.filter-buttons button {

    padding: 14px 30px;

    border: none;

    background: white;

    border-radius: 30px;

    cursor: pointer;

    font-size: 16px;

    font-weight: 600;

    box-shadow: 0 10px 25px rgba(0, 0, 0, .05);

    transition: .3s;

}

.filter-buttons button:hover {

    background: #2563eb;

    color: white;

}

.filter-buttons .active {

    background: #2563eb;

    color: white;

}

/*==============================

PROJECT GRID

==============================*/

.project-grid {

    display: grid;

    grid-template-columns: repeat(2, 1fr);

    gap: 35px;

    padding-bottom: 120px;

}

.project-card {

    background: white;

    border-radius: 24px;

    overflow: hidden;

    position: relative;

    box-shadow: 0 30px 70px rgba(15, 23, 42, .08);

    transition: .35s;

}

.project-card:hover {

    transform: translateY(-12px);

    box-shadow: 0 30px 70px rgba(0, 0, 0, .12);

}

.featured-badge {

    position: absolute;

    top: 20px;

    right: 20px;

    background: #FFD700;

    padding: 8px 16px;

    border-radius: 30px;

    font-weight: 700;

    font-size: 14px;

}

.project-top {

    height: 190px;

    display: flex;

    justify-content: center;

    align-items: center;

    font-size: 70px;

    color: white;

}

.blue {

    background: linear-gradient(135deg, #2563eb, #60a5fa);

}

.green {

    background: linear-gradient(135deg, #10b981, #34d399);

}

.purple {

    background: linear-gradient(135deg, #8b5cf6, #a855f7);

}

.orange {

    background: linear-gradient(135deg, #f97316, #fb923c);

}

.project-body {

    padding: 35px;

}

.project-type {

    color: #2563eb;

    font-weight: 700;

    font-size: 13px;

    letter-spacing: 1px;

}

.project-body h2 {

    margin: 18px 0;

    font-size: 30px;

    font-family: Poppins;

}

.project-body p {

    line-height: 1.8;

    color: #64748b;

    margin-bottom: 24px;

}

.tech-stack {

    display: flex;

    flex-wrap: wrap;

    gap: 10px;

    margin-bottom: 28px;

}

.tech-stack span {

    background: #eff6ff;

    padding: 8px 14px;

    border-radius: 30px;

    font-size: 13px;

    font-weight: 600;

}

.project-buttons {

    display: flex;

    flex-wrap: wrap;

    gap: 12px;

}

.project-buttons a {

    text-decoration: none;

    padding: 12px 18px;

    border-radius: 12px;

    font-size: 14px;

    font-weight: 600;

    transition: .3s;

    min-width: 170px;

    justify-content: center;

    display: flex;

    align-items: center;

    gap: 8px;

}

.watch {

    background: #ef4444;

    color: white;

}

.details {

    background: #2563eb;

    color: white;

}

.github {

    background: #111827;

    color: white;

}

.project-buttons a:hover {

    transform: translateY(-4px);

}

@media(max-width:992px) {

    .project-grid {

        grid-template-columns: 1fr;

    }

}

/*=========================================

PROJECT STATS

=========================================*/

.project-stats {

    padding: 20px 0 60px;

}

.stats-grid {

    display: grid;

    grid-template-columns: repeat(4, 1fr);

    gap: 25px;

}

.stat-box {

    background: white;

    padding: 35px;

    border-radius: 18px;

    text-align: center;

    box-shadow: 0 15px 40px rgba(0, 0, 0, .08);

    transition: .35s;

}

.stat-box:hover {

    transform: translateY(-8px);

}

.stat-box h2 {

    font-size: 42px;

    font-family: Poppins;

    color: #2563eb;

    margin-bottom: 8px;

}

.stat-box p {

    color: #64748b;

    font-weight: 600;

}

/*=========================================

SEARCH

=========================================*/

.project-search {

    padding-bottom: 60px;

}

.search-box {

    max-width: 650px;

    margin: auto;

    background: white;

    border-radius: 50px;

    padding: 18px 28px;

    display: flex;

    align-items: center;

    gap: 18px;

    box-shadow: 0 15px 40px rgba(0, 0, 0, .08);

}

.search-box i {

    font-size: 22px;

    color: #2563eb;

}

.search-box input {

    width: 100%;

    border: none;

    outline: none;

    font-size: 18px;

    font-family: Inter;

    background: transparent;

}

/*=============================

PROJECT HIGHLIGHTS

=============================*/

.project-highlights {

    display: flex;

    justify-content: space-between;

    margin: 30px 0;

    padding: 18px;

    background: #f8fafc;

    border-radius: 14px;

}

.project-highlights div {

    display: flex;

    flex-direction: column;

    align-items: center;

    gap: 8px;

    font-size: 14px;

    font-weight: 600;

    color: #334155;

}

.project-highlights span {

    font-size: 13px;

}

/*=========================================
FEATURED PROJECT
=========================================*/

.featured-project {

    padding: 100px 0;

}

.featured-wrapper {

    display: grid;

    grid-template-columns: 1fr 1fr;

    gap: 60px;

    align-items: center;

    background: white;

    padding: 40px;

    border-radius: 30px;

    box-shadow: 0 25px 60px rgba(0, 0, 0, .08);

}

.featured-image {

    overflow: hidden;

    border-radius: 20px;

}

.featured-image img {

    width: 100%;

    display: block;

    transition: .6s;

}

.featured-wrapper:hover img {

    transform: scale(1.08);

}

.featured-tag {

    display: inline-block;

    background: #dbeafe;

    color: #2563eb;

    padding: 10px 20px;

    border-radius: 30px;

    font-weight: 700;

    margin-bottom: 20px;

}

.featured-content h2 {

    font-size: 42px;

    font-family: Poppins;

    margin-bottom: 20px;

}

.featured-content p {

    font-size: 18px;

    line-height: 1.8;

    color: #64748b;

    margin-bottom: 30px;

}

.featured-stats {

    display: flex;

    gap: 25px;

    margin: 35px 0;

}

.featured-stats div {

    background: rgba(255, 255, 255, .65);

    backdrop-filter: blur(15px);

    padding: 20px;

    border-radius: 18px;

    border: 1px solid rgba(255, 255, 255, .35);

    box-shadow: 0 10px 25px rgba(0, 0, 0, .05);

    min-width: 120px;

    transition: .35s;

}

.featured-stats div:hover {

    transform: translateY(-6px);

}

.featured-stats h3 {

    font-size: 30px;

    color: #2563eb;

    font-family: Poppins;

}

.featured-stats p {

    margin: 5px 0 0;

    font-size: 14px;

    color: #64748b;

}

.other-title {

    font-size: 38px;

    font-family: Poppins;

    margin-bottom: 40px;

}

@media(max-width:992px) {

    .featured-wrapper {

        grid-template-columns: 55% 45%;

    }

    .featured-stats {

        flex-wrap: wrap;

    }

}

/*============================

FEATURED IMAGE

=============================*/

.featured-image {

    position: relative;

    display: flex;

    justify-content: center;

    align-items: center;

    overflow: hidden;

    border-radius: 24px;

    min-height: 450px;

}

.image-bg {

    position: absolute;

    width: 420px;

    height: 420px;

    border-radius: 50%;

    background: linear-gradient(135deg, #2563eb, #60a5fa);

    filter: blur(90px);

    opacity: .18;

}

.featured-image img {

    position: relative;

    width: 82%;

    z-index: 2;

    transition: .6s;

}

.featured-wrapper:hover img {

    transform: scale(1.06);

}



/*============================

ANIMATION

=============================*/

@keyframes fadeUp {

    from {

        opacity: 0;

        transform: translateY(50px);

    }

    to {

        opacity: 1;

        transform: translateY(0);

    }

}

.featured-wrapper {

    animation: fadeUp .9s ease;

}

/*=========================================

FRAMEWORK FEATURES

=========================================*/

.framework-features {

    display: grid;

    grid-template-columns: repeat(2, 1fr);

    gap: 15px;

    margin: 35px 0;

}

.feature-item {

    display: flex;

    align-items: center;

    gap: 12px;

    padding: 15px 18px;

    background: #f8fafc;

    border-radius: 14px;

    border: 1px solid #e2e8f0;

    transition: .35s;

}

.feature-item:hover {


    transform: translateX(8px);

    background: white;

    box-shadow: 0 12px 25px rgba(0, 0, 0, .08);

}

.feature-item i {

    font-size: 18px;

    color: #2563eb;

}

.feature-item span {

    font-size: 15px;

    font-weight: 600;

    color: #1e293b;

}

/*====================================

CASE STUDY HERO

====================================*/

.case-hero {

    padding: 90px 0;

    background: linear-gradient(180deg, #f8fbff, #ffffff);

}

.back-btn {

    display: inline-flex;

    align-items: center;

    gap: 10px;

    text-decoration: none;

    font-weight: 600;

    color: #2563eb;

    margin-bottom: 45px;

}

.hero-grid {

    display: grid;

    grid-template-columns: 1fr 1fr;

    gap: 70px;

    align-items: center;

}

.project-label {

    display: inline-block;

    padding: 10px 18px;

    background: #dbeafe;

    color: #2563eb;

    border-radius: 30px;

    font-size: 13px;

    font-weight: 700;

    margin-bottom: 25px;

}

.hero-left h1 {

    font-size: 54px;

    line-height: 1.1;

    font-family: Poppins;

    margin-bottom: 25px;

    color: #0f172a;

}

.hero-desc {

    font-size: 18px;

    line-height: 1.9;

    color: #64748b;

    margin-bottom: 30px;

}

.hero-tags {

    display: flex;

    flex-wrap: wrap;

    gap: 12px;

    margin-bottom: 35px;

}

.hero-tags span {

    padding: 10px 18px;

    background: #eff6ff;

    border-radius: 30px;

    font-size: 14px;

    font-weight: 600;

}

.hero-buttons {

    display: flex;

    gap: 18px;

}

.btn-red {

    background: #ef4444;

    color: white;

    padding: 15px 28px;

    border-radius: 12px;

    text-decoration: none;

    font-weight: 600;

}

.btn-dark {

    background: #111827;

    color: white;

    padding: 15px 28px;

    border-radius: 12px;

    text-decoration: none;

    font-weight: 600;

}

.hero-right {

    display: flex;

    justify-content: center;

}

.hero-right img {

    width: 100%;

    max-width: 560px;

    border-radius: 24px;

    box-shadow: 0 25px 60px rgba(15, 23, 42, .15);

    transition: .5s;

}

.hero-right img:hover {

    transform: scale(1.03);

}

@media(max-width:991px) {

    .hero-grid {

        grid-template-columns: 1fr;

    }

    .hero-left h1 {

        font-size: 40px;

    }

}

/*=========================================

PROJECT OVERVIEW

=========================================*/

.project-overview {

    padding: 100px 0;

    background: white;

}

.section-heading {

    margin-bottom: 60px;

}

.section-heading span {

    color: #2563eb;

    font-weight: 700;

    letter-spacing: 1px;

}

.section-heading h2 {

    font-size: 42px;

    font-family: Poppins;

    margin-top: 15px;

}

.overview-grid {

    display: grid;

    grid-template-columns: 1.3fr .7fr;

    gap: 60px;

    align-items: start;

}

.overview-content p {

    font-size: 17px;

    line-height: 1.9;

    color: #64748b;

    margin-bottom: 25px;

}

.overview-stats {

    display: grid;

    grid-template-columns: repeat(2, 1fr);

    gap: 20px;

}

.overview-card {

    background: #f8fafc;

    padding: 35px;

    border-radius: 20px;

    text-align: center;

    border: 1px solid #e2e8f0;

    transition: .35s;

}

.overview-card:hover {

    transform: translateY(-8px);

    box-shadow: 0 20px 40px rgba(0, 0, 0, .08);

}

.overview-card h3 {

    font-size: 38px;

    color: #2563eb;

    font-family: Poppins;

    margin-bottom: 10px;

}

.overview-card p {

    font-weight: 600;

    color: #64748b;

}

@media(max-width:991px) {

    .overview-grid {

        grid-template-columns: 1fr;

    }

}

/*=========================================
FRAMEWORK ARCHITECTURE
=========================================*/

.architecture {

    padding: 100px 0;

    background: #f8fafc;

}

.architecture-grid {

    display: grid;

    grid-template-columns: 1fr 1fr;

    gap: 50px;

    align-items: center;

}

.folder-structure {

    background: #0f172a;

    color: #e2e8f0;

    padding: 35px;

    border-radius: 20px;

    overflow: auto;

    box-shadow: 0 20px 40px rgba(15, 23, 42, .2);

}

.folder-structure pre {

    font-size: 15px;

    line-height: 1.9;

    font-family: Consolas, monospace;

    margin: 0;

}

.architecture-content h3 {

    font-size: 28px;

    margin-bottom: 25px;

    font-family: Poppins;

}

.architecture-content ul {

    list-style: none;

    padding: 0;

}

.architecture-content li {

    padding: 14px 0;

    font-size: 17px;

    color: #475569;

    border-bottom: 1px solid #e2e8f0;

}

.architecture-content li:last-child {

    border-bottom: none;

}

@media(max-width:991px) {

    .architecture-grid {

        grid-template-columns: 1fr;

    }

}

/*=========================================

AUTOMATION FLOW

=========================================*/

.automation-flow {

    padding: 100px 0;

    background: white;

}

.flow-container {

    display: flex;

    justify-content: center;

    align-items: center;

    flex-wrap: wrap;

    gap: 20px;

    margin-top: 60px;

}

.flow-box {

    width: 180px;

    padding: 30px;

    background: #f8fafc;

    border-radius: 20px;

    text-align: center;

    transition: .35s;

    border: 1px solid #e2e8f0;

}

.flow-box:hover {

    transform: translateY(-8px);

    box-shadow: 0 20px 40px rgba(0, 0, 0, .08);

}

.flow-box i {

    font-size: 42px;

    color: #2563eb;

    margin-bottom: 18px;

}

.flow-box h3 {

    margin-bottom: 12px;

    font-size: 22px;

    font-family: Poppins;

}

.flow-box p {

    font-size: 15px;

    line-height: 1.7;

    color: #64748b;

}

.arrow {

    font-size: 34px;

    font-weight: bold;

    color: #2563eb;

}

@media(max-width:992px) {

    .arrow {

        display: none;

    }

    .flow-box {

        width: 100%;

    }

}

/*=========================================

TEST SCENARIOS

=========================================*/

.test-scenarios {

    padding: 100px 0;

    background: #ffffff;

}

.scenario-grid {

    display: grid;

    grid-template-columns: repeat(2, 1fr);

    gap: 30px;

    margin-top: 60px;

}

.scenario-card {

    background: #f8fafc;

    padding: 35px;

    border-radius: 22px;

    border: 1px solid #e2e8f0;

    transition: .35s;

}

.scenario-card:hover {

    transform: translateY(-8px);

    box-shadow: 0 20px 40px rgba(0, 0, 0, .08);

}

.scenario-icon {

    width: 70px;

    height: 70px;

    background: #dbeafe;

    border-radius: 18px;

    display: flex;

    justify-content: center;

    align-items: center;

    margin-bottom: 25px;

}

.scenario-icon i {

    font-size: 30px;

    color: #2563eb;

}

.scenario-card h3 {

    font-size: 24px;

    margin-bottom: 15px;

    font-family: Poppins;

}

.scenario-card p {

    font-size: 16px;

    line-height: 1.8;

    color: #64748b;

}

@media(max-width:991px) {

    .scenario-grid {

        grid-template-columns: 1fr;

    }

}

/*=========================================

SCREENSHOT GALLERY

=========================================*/

.gallery {

    padding: 100px 0;

    background: #f8fafc;

}

.gallery-grid {

    display: grid;

    grid-template-columns: repeat(2, 1fr);

    gap: 35px;

    margin-top: 60px;

}

.gallery-card {

    background: white;

    border-radius: 22px;

    overflow: hidden;

    box-shadow: 0 15px 40px rgba(0, 0, 0, .08);

    transition: .35s;

}

.gallery-card:hover {

    transform: translateY(-8px);

}

.gallery-card img {

    width: 100%;

    height: 260px;

    object-fit: cover;

    transition: .45s;

}

.gallery-card:hover img {

    transform: scale(1.05);

}

.gallery-content {

    padding: 30px;

}

.gallery-content h3 {

    font-size: 24px;

    font-family: Poppins;

    margin-bottom: 15px;

}

.gallery-content p {

    line-height: 1.8;

    color: #64748b;

}

@media(max-width:991px) {

    .gallery-grid {

        grid-template-columns: 1fr;

    }

}

----------------------
/*=========================================

DEMO

=========================================*/

.demo-section {

    padding: 100px 0;

    background: white;

}

.demo-grid {

    display: grid;

    grid-template-columns: repeat(2, 1fr);

    gap: 35px;

    margin-top: 60px;

}

.demo-card {

    padding: 45px;

    background: #f8fafc;

    border-radius: 22px;

    text-align: center;

    border: 1px solid #e2e8f0;

    transition: .35s;

}

.demo-card:hover {

    transform: translateY(-8px);

    box-shadow: 0 20px 40px rgba(0, 0, 0, .08);

}

.demo-card i {

    font-size: 60px;

    margin-bottom: 20px;

    color: #2563eb;

}

.demo-card h3 {

    font-size: 30px;

    margin-bottom: 20px;

    font-family: Poppins;

}

.demo-card p {

    line-height: 1.8;

    margin-bottom: 30px;

    color: #64748b;

}

@media(max-width:991px) {

    .demo-grid {

        grid-template-columns: 1fr;

    }

}

/*=========================================

ACHIEVEMENTS

=========================================*/

.achievements {

    padding: 100px 0;

    background: #f8fafc;

}

.achievement-grid {

    display: grid;

    grid-template-columns: repeat(2, 1fr);

    gap: 30px;

    margin-top: 60px;

}

.achievement-card {

    background: white;

    padding: 35px;

    border-radius: 20px;

    box-shadow: 0 15px 40px rgba(0, 0, 0, .08);

    transition: .35s;

}

.achievement-card:hover {

    transform: translateY(-8px);

}

.achievement-card h3 {

    margin-bottom: 15px;

    font-size: 24px;

    font-family: Poppins;

}

.achievement-card p {

    line-height: 1.8;

    color: #64748b;

}

@media(max-width:991px) {

    .achievement-grid {

        grid-template-columns: 1fr;

    }

}

/*=========================================

LESSONS

=========================================*/

.lessons {

    padding: 100px 0;

    background: white;

}

.lesson-card {

    background: #f8fafc;

    padding: 45px;

    border-radius: 22px;

    border: 1px solid #e2e8f0;

    margin-top: 50px;

}

.lesson-card ul {

    padding-left: 20px;

}

.lesson-card li {

    margin-bottom: 18px;

    font-size: 17px;

    line-height: 1.8;

    color: #475569;

}

/*=========================================
QA TIMELINE
=========================================*/

.test-lifecycle {

    padding: 100px 0;

    background: #ffffff;

}

.timeline {

    display: grid;

    grid-template-columns: repeat(2, 1fr);

    gap: 20px;

    margin-top: 50px;

}

.timeline-item {

    background: #f8fafc;

    padding: 22px;

    border-left: 6px solid #2563eb;

    border-radius: 12px;

    font-weight: 600;

    transition: .3s;

}

.timeline-item:hover {

    transform: translateX(8px);

    box-shadow: 0 15px 30px rgba(0, 0, 0, .08);

}

/*=========================================

COLLABORATION

=========================================*/

.collaboration {

    padding: 100px 0;

    background: #f8fafc;

}

.collaboration-grid {

    display: grid;

    grid-template-columns: repeat(2, 1fr);

    gap: 30px;

    margin-top: 60px;

}

.collaboration-card {

    background: white;

    padding: 35px;

    border-radius: 20px;

    text-align: center;

    transition: .35s;

    box-shadow: 0 15px 35px rgba(0, 0, 0, .08);

}

.collaboration-card:hover {

    transform: translateY(-8px);

}

.collaboration-card i {

    font-size: 46px;

    color: #2563eb;

    margin-bottom: 20px;

}

.collaboration-card h3 {

    font-family: Poppins;

    margin-bottom: 15px;

}

.collaboration-card p {

    line-height: 1.8;

    color: #64748b;

}

@media(max-width:991px) {

    .collaboration-grid {

        grid-template-columns: 1fr;

    }

}

/*=========================================
RESPONSIBILITIES
=========================================*/

.responsibility-grid {

    display: grid;

    grid-template-columns: repeat(2, 1fr);

    gap: 30px;

    margin-top: 60px;

}

.responsibility-card {

    background: white;

    padding: 35px;

    border-radius: 18px;

    box-shadow: 0 15px 35px rgba(0, 0, 0, .08);

    transition: .35s;

    text-align: center;

}

.responsibility-card:hover {

    transform: translateY(-8px);

}

.responsibility-card i {

    font-size: 45px;

    color: #2563eb;

    margin-bottom: 20px;

}

.responsibility-card h3 {

    margin-bottom: 15px;

    font-family: Poppins;

}

.responsibility-card p {

    line-height: 1.8;

    color: #64748b;

}

@media(max-width:991px) {

    .responsibility-grid {

        grid-template-columns: 1fr;

    }

}