 /* =========================================
   Lanco Projects Page CSS
   Completely different class names
========================================= */

                .lpp-hero-section,
                .lpp-project-overview,
                .lpp-featured-projects-section,
                .lpp-project-process-section,
                .lpp-project-gallery-section,
                .lpp-cta-section {
                    position: relative;
                    z-index: 1;
                }

                .lpp-hero-section {
                    padding: 110px 0 80px !important;
                    /*padding:120px 0 90px !important;*/
                    /*height: 700px;*/
                    background:
                        linear-gradient(135deg, rgba(4, 28, 53, 0.95), rgba(8, 77, 126, 0.88)),
                        url("assets/images/bg/breadcrumbs.jpg") center/cover no-repeat;
                    overflow: hidden;
                }

                .lpp-hero-wrap {
                    max-width: 980px;
                    margin: 0 auto;
                    text-align: center;
                    color: #fff;
                }

                .lpp-hero-badge,
                .lpp-sec-tag {
                    display: inline-flex;
                    align-items: center;
                    justify-content: center;
                    padding: 9px 18px;
                    border-radius: 100px;
                    background: rgba(255, 255, 255, 0.14);
                    color: #ffffff;
                    font-size: 13px;
                    font-weight: 700;
                    letter-spacing: 0.12em;
                    text-transform: uppercase;
                    margin-bottom: 18px;
                }

                .lpp-hero-wrap h1 {
                    font-size: 56px;
                    line-height: 1.15;
                    font-weight: 800;
                    margin-bottom: 20px;
                    color: #fff;
                }

                .lpp-hero-wrap p {
                    max-width: 820px;
                    margin: 0 auto;
                    font-size: 18px;
                    line-height: 1.9;
                    color: rgba(255, 255, 255, 0.85);
                }

                .lpp-hero-stats {
                    display: grid;
                    grid-template-columns: repeat(4, 1fr);
                    gap: 20px;
                    margin-top: 42px;
                }

                .lpp-hero-stat-card {
                    background: rgba(255, 255, 255, 0.1);
                    border: 1px solid rgba(255, 255, 255, 0.16);
                    border-radius: 22px;
                    padding: 28px 18px;
                    backdrop-filter: blur(12px);
                }

                .lpp-hero-stat-card h3 {
                    color: #fff;
                    font-size: 34px;
                    font-weight: 800;
                    margin-bottom: 8px;
                }

                .lpp-hero-stat-card span {
                    color: rgba(255, 255, 255, 0.82);
                    font-size: 14px;
                    display: block;
                }

                .lpp-project-overview,
                .lpp-featured-projects-section,
                .lpp-project-process-section,
                .lpp-project-gallery-section {
                    padding: 100px 0;
                }

                .lpp-project-overview {
                    background: #f5f8fc;
                }

                .lpp-section-head {
                    margin-bottom: 48px;
                }

                .lpp-section-head.text-center {
                    max-width: 860px;
                    margin-left: auto;
                    margin-right: auto;
                    text-align: center;
                }

                .lpp-section-head .lpp-sec-tag {
                    background: rgba(0, 92, 185, 0.08);
                    color: #005cb9;
                }

                .lpp-section-head h2 {
                    font-size: 42px;
                    line-height: 1.25;
                    font-weight: 800;
                    color: #0c1f33;
                    margin-bottom: 14px;
                }

                .lpp-section-head p {
                    font-size: 16px;
                    line-height: 1.85;
                    color: #64748b;
                    margin-bottom: 0;
                }

                .lpp-overview-grid {
                    display: grid;
                    grid-template-columns: repeat(4, 1fr);
                    gap: 25px;
                }

                .lpp-overview-card {
                    background: #fff;
                    border-radius: 24px;
                    padding: 32px 26px;
                    box-shadow: 0 16px 50px rgba(15, 23, 42, 0.08);
                    transition: all 0.35s ease;
                    height: 100%;
                }

                .lpp-overview-card:hover,
                .lpp-project-card:hover,
                .lpp-process-card:hover,
                .lpp-gallery-item:hover {
                    transform: translateY(-8px);
                }

                .lpp-overview-icon {
                    width: 72px;
                    height: 72px;
                    border-radius: 18px;
                    display: flex;
                    align-items: center;
                    justify-content: center;
                    background: linear-gradient(135deg, #005cb9, #0a7dd9);
                    color: #fff;
                    font-size: 28px;
                    margin-bottom: 22px;
                }

                .lpp-overview-card h3 {
                    font-size: 23px;
                    margin-bottom: 12px;
                    font-weight: 700;
                    color: #0c1f33;
                }

                .lpp-overview-card p {
                    font-size: 15px;
                    line-height: 1.85;
                    color: #64748b;
                    margin-bottom: 0;
                }

                .lpp-project-card {
                    background: #fff;
                    border-radius: 24px;
                    overflow: hidden;
                    box-shadow: 0 16px 50px rgba(2, 12, 27, 0.08);
                    transition: all 0.35s ease;
                    height: 100%;
                }

                .lpp-project-image {
                    position: relative;
                    overflow: hidden;
                    height: 260px;
                }

                .lpp-project-image img {
                    width: 100%;
                    height: 100%;
                    object-fit: cover;
                    transition: transform 0.5s ease;
                }

                .lpp-project-card:hover .lpp-project-image img,
                .lpp-gallery-item:hover img {
                    transform: scale(1.08);
                }

                .lpp-project-label {
                    position: absolute;
                    top: 18px;
                    left: 18px;
                    background: #ffffff;
                    color: #005cb9;
                    padding: 8px 14px;
                    border-radius: 100px;
                    font-size: 12px;
                    font-weight: 700;
                    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
                }

                .lpp-project-content {
                    padding: 28px 24px 24px;
                }

                .lpp-project-content h3 {
                    font-size: 24px;
                    line-height: 1.4;
                    color: #0c1f33;
                    margin-bottom: 12px;
                    font-weight: 700;
                }

                .lpp-project-content p {
                    font-size: 15px;
                    line-height: 1.85;
                    color: #64748b;
                    margin-bottom: 18px;
                }

                .lpp-project-content ul {
                    margin: 0;
                    padding: 0;
                    list-style: none;
                }

                .lpp-project-content ul li {
                    display: flex;
                    align-items: center;
                    gap: 10px;
                    font-size: 14px;
                    color: #1e293b;
                    margin-bottom: 10px;
                }

                .lpp-project-content ul li i {
                    color: #0a7dd9;
                }

                .lpp-project-process-section {
                    background: linear-gradient(180deg, #081624 0%, #0d2236 100%);
                }

                .lpp-project-process-section .lpp-section-head h2,
                .lpp-project-process-section .lpp-section-head p {
                    color: #fff;
                }

                .lpp-project-process-section .lpp-section-head p {
                    color: rgba(255, 255, 255, 0.75);
                }

                .lpp-process-grid {
                    display: grid;
                    grid-template-columns: repeat(4, 1fr);
                    gap: 24px;
                }

                .lpp-process-card {
                    background: rgba(255, 255, 255, 0.06);
                    border: 1px solid rgba(255, 255, 255, 0.1);
                    border-radius: 24px;
                    padding: 34px 24px;
                    transition: all 0.35s ease;
                }

                .lpp-process-card span {
                    display: inline-flex;
                    align-items: center;
                    justify-content: center;
                    width: 58px;
                    height: 58px;
                    border-radius: 16px;
                    background: linear-gradient(135deg, #0a7dd9, #005cb9);
                    color: #fff;
                    font-size: 22px;
                    font-weight: 800;
                    margin-bottom: 20px;
                }

                .lpp-process-card h3 {
                    color: #fff;
                    font-size: 22px;
                    font-weight: 700;
                    margin-bottom: 12px;
                }

                .lpp-process-card p {
                    color: rgba(255, 255, 255, 0.74);
                    font-size: 15px;
                    line-height: 1.85;
                    margin-bottom: 0;
                }

                .lpp-project-gallery-section {
                    background: #f8fbff;
                }

                .lpp-gallery-grid {
                    display: grid;
                    grid-template-columns: repeat(4, 1fr);
                    grid-auto-rows: 250px;
                    gap: 22px;
                }

                .lpp-gallery-item {
                    position: relative;
                    overflow: hidden;
                    border-radius: 24px;
                    box-shadow: 0 16px 45px rgba(15, 23, 42, 0.08);
                    transition: all 0.35s ease;
                }

                .lpp-gallery-item img {
                    width: 100%;
                    height: 100%;
                    object-fit: cover;
                    transition: transform 0.5s ease;
                }

                .lpp-gallery-item-lg {
                    grid-column: span 2;
                    grid-row: span 2;
                }

                .lpp-gallery-item-wide {
                    grid-column: span 2;
                }

                .lpp-cta-section {
                    padding: 100px 0;
                    background: #ffffff;
                }

                .lpp-cta-wrap {
                    display: flex;
                    align-items: center;
                    justify-content: space-between;
                    gap: 30px;
                    padding: 45px;
                    border-radius: 30px;
                    background: linear-gradient(135deg, #0b2a48 0%, #005cb9 100%);
                    box-shadow: 0 18px 55px rgba(0, 92, 185, 0.18);
                }

                .lpp-cta-content {
                    max-width: 700px;
                }

                .lpp-cta-content h2 {
                    font-size: 40px;
                    line-height: 1.25;
                    color: #fff;
                    font-weight: 800;
                    margin-bottom: 14px;
                }

                .lpp-cta-content p {
                    color: rgba(255, 255, 255, 0.82);
                    font-size: 16px;
                    line-height: 1.85;
                    margin-bottom: 0;
                }

                .lpp-cta-btns {
                    display: flex;
                    align-items: center;
                    gap: 16px;
                    flex-wrap: wrap;
                }

                .lpp-btn-primary,
                .lpp-btn-secondary {
                    display: inline-flex;
                    align-items: center;
                    justify-content: center;
                    min-width: 180px;
                    padding: 15px 28px;
                    border-radius: 100px;
                    font-size: 15px;
                    font-weight: 700;
                    text-decoration: none;
                    transition: all 0.35s ease;
                }

                .lpp-btn-primary {
                    background: #ffffff;
                    color: #005cb9;
                }

                .lpp-btn-secondary {
                    background: transparent;
                    color: #ffffff;
                    border: 1px solid rgba(255, 255, 255, 0.28);
                }

                .lpp-btn-primary:hover,
                .lpp-btn-secondary:hover {
                    transform: translateY(-3px);
                    color: inherit;
                }

                @media (max-width: 1399px) {
                    .lpp-hero-wrap h1 {
                        font-size: 48px;
                    }
                    .lpp-section-head h2,
                    .lpp-cta-content h2 {
                        font-size: 36px;
                    }
                }

                @media (max-width: 1199px) {
                    .lpp-hero-stats,
                    .lpp-overview-grid,
                    .lpp-process-grid {
                        grid-template-columns: repeat(2, 1fr);
                    }

                    .lpp-gallery-grid {
                        grid-template-columns: repeat(2, 1fr);
                    }

                    .lpp-cta-wrap {
                        flex-direction: column;
                        align-items: flex-start;
                    }
                }

                @media (max-width: 991px) {
                    .lpp-hero-section,
                    .lpp-project-overview,
                    .lpp-featured-projects-section,
                    .lpp-project-process-section,
                    .lpp-project-gallery-section,
                    .lpp-cta-section {
                        padding: 80px 0;
                    }

                    .lpp-hero-wrap h1 {
                        font-size: 40px;
                    }

                    .lpp-hero-wrap p {
                        font-size: 16px;
                    }

                    .lpp-section-head h2,
                    .lpp-cta-content h2 {
                        font-size: 32px;
                    }

                    .lpp-project-image {
                        height: 235px;
                    }

                    .lpp-cta-wrap {
                        padding: 34px;
                    }
                }

                @media (max-width: 767px) {
                    .lpp-hero-section {
                        padding: 70px 0 60px;
                    }

                    .lpp-hero-wrap h1 {
                        font-size: 31px;
                    }

                    .lpp-hero-stats,
                    .lpp-overview-grid,
                    .lpp-process-grid,
                    .lpp-gallery-grid {
                        grid-template-columns: 1fr;
                    }

                    .lpp-gallery-grid {
                        grid-auto-rows: 230px;
                    }

                    .lpp-gallery-item-lg,
                    .lpp-gallery-item-wide {
                        grid-column: span 1;
                        grid-row: span 1;
                    }

                    .lpp-section-head {
                        margin-bottom: 34px;
                    }

                    .lpp-section-head h2,
                    .lpp-cta-content h2 {
                        font-size: 27px;
                    }

                    .lpp-project-content {
                        padding: 22px 18px 20px;
                    }

                    .lpp-project-content h3 {
                        font-size: 21px;
                    }

                    .lpp-overview-card,
                    .lpp-process-card {
                        padding: 26px 20px;
                    }

                    .lpp-cta-wrap {
                        padding: 28px 22px;
                        border-radius: 24px;
                    }

                    .lpp-btn-primary,
                    .lpp-btn-secondary {
                        width: 100%;
                    }

                    .lpp-cta-btns {
                        width: 100%;
                    }
                }

                @media (max-width: 480px) {
                    .lpp-hero-wrap h1 {
                        font-size: 27px;
                    }

                    .lpp-hero-stat-card {
                        padding: 22px 16px;
                    }

                    .lpp-hero-stat-card h3 {
                        font-size: 28px;
                    }

                    .lpp-section-head h2,
                    .lpp-cta-content h2 {
                        font-size: 24px;
                    }

                    .lpp-project-image {
                        height: 210px;
                    }
                }