<style>

/* ======================================================
MPS BANGLADESH
PROJECT PAGE FULL CSS
PREMIUM CORPORATE UI
====================================================== */

/* ======================================================
MPS BANGLADESH
PROJECT PAGE CSS
SMALL CORPORATE PREMIUM UI
====================================================== */

:root{

    --primary:#0052cc;
    --secondary:#0a66ff;
    --dark:#071c39;
    --text:#64748b;
    --light:#f8fbff;
    --white:#ffffff;
}

/* ======================================================
GLOBAL
====================================================== */

*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

html{
    scroll-behavior:smooth;
}

body{

    font-family:'Poppins',sans-serif;

    background:#ffffff;

    color:var(--dark);

    overflow-x:hidden;
}

img{

    width:100%;

    display:block;
}

a{
    text-decoration:none;
}

ul{
    list-style:none;
}

.container{

    width:100%;

    max-width:1280px;

    margin:auto;

    padding:0 18px;
}

section{

    padding:75px 0;
}

/* ======================================================
SECTION TITLE
====================================================== */

.section-title{

    max-width:760px;

    margin:auto auto 45px;

    text-align:center;
}

.section-title span{

    display:inline-block;

    color:var(--primary);

    font-size:10px;

    font-weight:700;

    letter-spacing:2px;

    text-transform:uppercase;

    margin-bottom:12px;
}

.section-title h2{

    font-size:42px;

    line-height:1.2;

    color:var(--dark);

    margin-bottom:14px;

    font-weight:800;
}

.section-title p{

    color:var(--text);

    font-size:13px;

    line-height:1.9;
}

/* ======================================================
HERO
====================================================== */

.project-hero{

    position:relative;

    padding:145px 0 95px;

    background:
    url('../../images/project-steel-MPS-1.jpg')
    center/cover no-repeat;

    overflow:hidden;
}

.hero-overlay{

    position:absolute;

    inset:0;

    background:
    linear-gradient(
        135deg,
        rgba(7,28,57,.94),
        rgba(7,28,57,.82)
    );
}

.project-hero-content{

    position:relative;

    z-index:2;

    max-width:900px;

    margin:auto;

    text-align:center;
}

.hero-mini{

    display:inline-flex;

    align-items:center;
    justify-content:center;

    padding:10px 18px;

    border-radius:50px;

    background:
    rgba(255,255,255,.08);

    color:#60a5fa;

    font-size:10px;

    font-weight:700;

    letter-spacing:2px;

    margin-bottom:20px;
}

.project-hero h1{

    font-size:58px;

    line-height:1.1;

    color:#ffffff;

    margin-bottom:18px;

    font-weight:800;
}

.project-hero p{

    max-width:760px;

    margin:auto;

    color:#dbe4f0;

    font-size:14px;

    line-height:1.9;
}

/* ======================================================
HERO STATS
====================================================== */

.hero-stats{

    display:grid;

    grid-template-columns:
    repeat(4,1fr);

    gap:14px;

    margin-top:42px;
}

.hero-stat{

    background:
    rgba(255,255,255,.06);

    border:
    1px solid rgba(255,255,255,.08);

    backdrop-filter:blur(10px);

    padding:22px 14px;

    border-radius:16px;
}

.hero-stat h3{

    font-size:24px;

    color:#ffffff;

    margin-bottom:8px;

    font-weight:800;
}

.hero-stat p{

    color:#cbd5e1;

    font-size:10px;

    line-height:1.7;
}

/* ======================================================
FILTER
====================================================== */

.project-filter{

    padding:45px 0 35px;

    background:#ffffff;

    border-bottom:
    1px solid rgba(0,82,204,.05);
}

.filter-wrapper{

    display:flex;

    flex-direction:column;

    align-items:center;

    text-align:center;

    gap:22px;
}

.filter-title h3{

    font-size:34px;

    line-height:1.3;

    margin-bottom:10px;

    font-weight:800;
}

.filter-title p{

    font-size:13px;

    line-height:1.8;

    color:var(--text);
}

.filter-buttons{

    display:flex;

    flex-wrap:wrap;

    justify-content:center;

    gap:10px;
}

.filter-buttons button{

    border:none;

    cursor:pointer;

    padding:12px 18px;

    border-radius:50px;

    background:#f1f5f9;

    color:#071c39;

    font-size:11px;

    font-weight:600;

    font-family:'Poppins',sans-serif;

    transition:.3s ease;
}

.filter-buttons button.active,
.filter-buttons button:hover{

    background:
    linear-gradient(
        135deg,
        var(--primary),
        var(--secondary)
    );

    color:#ffffff;
}

/* ======================================================
PROJECT GRID
====================================================== */

.featured-projects{

    background:
    linear-gradient(
        180deg,
        #ffffff,
        #f8fbff
    );
}

.projects-grid{

    display:grid;

    grid-template-columns:
    repeat(4,1fr);

    gap:16px;
}

/* ======================================================
CARD
====================================================== */

.project-card{

    background:#ffffff;

    border-radius:16px;

    overflow:hidden;

    border:
    1px solid rgba(0,82,204,.05);

    box-shadow:
    0 10px 28px rgba(15,23,42,.04);

    transition:.3s ease;
}

.project-card:hover{

    transform:translateY(-5px);

    box-shadow:
    0 18px 40px rgba(15,23,42,.08);
}

/* ======================================================
IMAGE
====================================================== */

.project-image{

    position:relative;

    overflow:hidden;
}

.project-image img{

    width:100%;

    height:190px;

    object-fit:cover;

    transition:.4s ease;
}

.project-card:hover img{

    transform:scale(1.05);
}

.project-tag{

    position:absolute;

    top:14px;
    left:14px;

    padding:7px 14px;

    border-radius:50px;

    background:
    rgba(7,28,57,.92);

    color:#ffffff;

    font-size:9px;

    font-weight:700;

    letter-spacing:.5px;
}

/* ======================================================
CONTENT
====================================================== */

.project-content{

    padding:18px 16px;
}

.project-meta{

    display:flex;

    flex-wrap:wrap;

    gap:8px;

    margin-bottom:10px;
}

.project-meta span{

    font-size:8px;

    color:var(--primary);

    font-weight:700;

    text-transform:uppercase;
}

.project-content h3{

    font-size:16px;

    line-height:1.45;

    margin-bottom:10px;

    font-weight:700;
}

.project-content p{

    font-size:11px;

    line-height:1.75;

    color:var(--text);

    margin-bottom:14px;
}

.project-content ul{

    margin-bottom:16px;
}

.project-content ul li{

    position:relative;

    padding-left:16px;

    margin-bottom:8px;

    font-size:10px;

    color:#334155;
}

.project-content ul li::before{

    content:"✓";

    position:absolute;

    left:0;

    color:var(--secondary);

    font-weight:700;
}

/* ======================================================
BUTTON
====================================================== */

.project-btn{

    width:100%;

    height:42px;

    display:flex;

    align-items:center;
    justify-content:center;

    gap:8px;

    border-radius:10px;

    background:
    linear-gradient(
        135deg,
        var(--primary),
        var(--secondary)
    );

    color:#ffffff;

    font-size:10px;

    font-weight:700;

    transition:.3s ease;
}

.project-btn:hover{

    transform:translateY(-2px);
}

/* ======================================================
INDUSTRY
====================================================== */

.industry-grid{

    display:grid;

    grid-template-columns:
    repeat(6,1fr);

    gap:14px;
}

.industry-box{

    background:#f8fbff;

    border:
    1px solid rgba(0,82,204,.05);

    border-radius:14px;

    padding:20px 14px;

    text-align:center;
}

.industry-box i{

    width:44px;
    height:44px;

    border-radius:12px;

    margin:auto auto 14px;

    background:
    linear-gradient(
        135deg,
        var(--primary),
        var(--secondary)
    );

    display:flex;

    align-items:center;
    justify-content:center;

    color:#ffffff;

    font-size:16px;
}

.industry-box h3{

    font-size:11px;

    line-height:1.6;
}

/* ======================================================
TABLET
====================================================== */

@media(max-width:992px){

.project-hero{

    padding:130px 0 85px;
}

.project-hero h1{

    font-size:46px;
}

.projects-grid{

    grid-template-columns:
    repeat(2,1fr);
}

.industry-grid{

    grid-template-columns:
    repeat(3,1fr);
}

.hero-stats{

    grid-template-columns:
    repeat(2,1fr);
}

}

/* ======================================================
MOBILE
====================================================== */

@media(max-width:768px){

.container{

    padding:0 14px;
}

section{

    padding:58px 0;
}

/* HERO */

.project-hero{

    padding:110px 0 70px;
}

.hero-mini{

    padding:8px 14px;

    font-size:9px;

    margin-bottom:14px;
}

.project-hero h1{

    font-size:30px;

    line-height:1.18;

    margin-bottom:14px;
}

.project-hero p{

    font-size:11px;

    line-height:1.8;
}

/* STATS */

.hero-stats{

    gap:10px;

    margin-top:28px;
}

.hero-stat{

    padding:16px 10px;

    border-radius:14px;
}

.hero-stat h3{

    font-size:18px;
}

.hero-stat p{

    font-size:9px;
}

/* SECTION TITLE */

.section-title{

    margin-bottom:34px;
}

.section-title h2{

    font-size:26px;

    line-height:1.3;
}

.section-title p{

    font-size:11px;
}

/* FILTER */

.filter-title h3{

    font-size:22px;
}

.filter-buttons{

    gap:7px;
}

.filter-buttons button{

    padding:10px 12px;

    font-size:9px;
}

/* GRID */

.projects-grid{

    grid-template-columns:
    repeat(2,1fr);

    gap:10px;
}

/* CARD */

.project-card{

    border-radius:14px;
}

.project-image img{

    height:145px;
}

.project-content{

    padding:14px 10px;
}

.project-content h3{

    font-size:12px;

    line-height:1.45;

    margin-bottom:8px;
}

.project-content p{

    font-size:9px;

    line-height:1.6;

    margin-bottom:10px;
}

.project-content ul{

    margin-bottom:12px;
}

.project-content ul li{

    font-size:8px;

    margin-bottom:5px;

    padding-left:14px;
}

.project-btn{

    height:36px;

    border-radius:8px;

    font-size:8px;
}

/* INDUSTRY */

.industry-grid{

    grid-template-columns:
    repeat(2,1fr);

    gap:10px;
}

.industry-box{

    padding:18px 10px;

    border-radius:12px;
}

.industry-box h3{

    font-size:10px;
}

}

/* ======================================================
SMALL MOBILE
====================================================== */

@media(max-width:480px){

.projects-grid{

    grid-template-columns:1fr;
}

.project-image img{

    height:190px;
}

.hero-stats{

    grid-template-columns:
    repeat(2,1fr);
}

.project-hero h1{

    font-size:26px;
}

.section-title h2{

    font-size:22px;
}

}

/* ======================================================
EXECUTION PROCESS
PREMIUM CORPORATE SECTION
====================================================== */

.execution-process{

    position:relative;

    padding:85px 0;

    background:
    linear-gradient(
        180deg,
        #ffffff,
        #f8fbff
    );

    overflow:hidden;
}

/* ======================================================
PROCESS GRID
====================================================== */

.process-grid{

    display:grid;

    grid-template-columns:
    repeat(4,1fr);

    gap:18px;
}

/* ======================================================
PROCESS BOX
====================================================== */

.process-box{

    position:relative;

    background:#ffffff;

    padding:30px 24px;

    border-radius:20px;

    border:
    1px solid rgba(0,82,204,.05);

    box-shadow:
    0 12px 35px rgba(15,23,42,.05);

    transition:.35s ease;
}

/* HOVER */

.process-box:hover{

    transform:translateY(-6px);

    box-shadow:
    0 22px 50px rgba(15,23,42,.08);
}

/* NUMBER */

.process-number{

    width:56px;
    height:56px;

    border-radius:16px;

    margin-bottom:18px;

    background:
    linear-gradient(
        135deg,
        #0052cc,
        #0a66ff
    );

    display:flex;

    align-items:center;
    justify-content:center;

    color:#ffffff;

    font-size:18px;

    font-weight:800;

    box-shadow:
    0 10px 25px rgba(0,82,204,.18);
}

/* TITLE */

.process-box h3{

    font-size:18px;

    line-height:1.4;

    margin-bottom:10px;

    color:#071c39;

    font-weight:700;
}

/* TEXT */

.process-box p{

    font-size:12px;

    line-height:1.85;

    color:#64748b;
}

/* ======================================================
CLIENT TRUST
====================================================== */

.client-trust{

    position:relative;

    padding:85px 0;

    background:#ffffff;

    overflow:hidden;
}

/* ======================================================
TRUST GRID
====================================================== */

.trust-grid{

    display:grid;

    grid-template-columns:
    repeat(4,1fr);

    gap:18px;
}

/* ======================================================
TRUST CARD
====================================================== */

.trust-card{

    background:#ffffff;

    padding:30px 24px;

    border-radius:20px;

    text-align:center;

    border:
    1px solid rgba(0,82,204,.05);

    box-shadow:
    0 12px 35px rgba(15,23,42,.05);

    transition:.35s ease;
}

/* HOVER */

.trust-card:hover{

    transform:translateY(-6px);

    box-shadow:
    0 22px 50px rgba(15,23,42,.08);
}

/* ICON */

.trust-card i{

    width:58px;
    height:58px;

    border-radius:16px;

    margin:auto auto 18px;

    background:
    linear-gradient(
        135deg,
        #0052cc,
        #0a66ff
    );

    display:flex;

    align-items:center;
    justify-content:center;

    color:#ffffff;

    font-size:20px;

    box-shadow:
    0 10px 25px rgba(0,82,204,.18);
}

/* TITLE */

.trust-card h3{

    font-size:17px;

    line-height:1.45;

    margin-bottom:10px;

    color:#071c39;

    font-weight:700;
}

/* TEXT */

.trust-card p{

    font-size:12px;

    line-height:1.85;

    color:#64748b;
}

/* ======================================================
LAPTOP
====================================================== */

@media(max-width:1200px){

.process-grid,
.trust-grid{

    gap:16px;
}

.process-box,
.trust-card{

    padding:26px 20px;
}

}

/* ======================================================
TABLET
====================================================== */

@media(max-width:992px){

.execution-process,
.client-trust{

    padding:75px 0;
}

.process-grid,
.trust-grid{

    grid-template-columns:
    repeat(2,1fr);

    gap:14px;
}

.process-box,
.trust-card{

    padding:24px 20px;

    border-radius:18px;
}

.process-number{

    width:50px;
    height:50px;

    font-size:16px;
}

.trust-card i{

    width:52px;
    height:52px;

    font-size:18px;
}

}

/* ======================================================
MOBILE
====================================================== */

@media(max-width:768px){

.process-grid,
.trust-grid{

    display:grid;

    grid-template-columns:
    repeat(2,1fr);

    gap:10px;
}

/* CARD */

.process-box,
.trust-card{

    padding:16px 12px;

    border-radius:14px;

    min-height:190px;
}

/* NUMBER */

.process-number{

    width:40px;
    height:40px;

    border-radius:10px;

    margin-bottom:12px;

    font-size:13px;
}

/* ICON */

.trust-card i{

    width:42px;
    height:42px;

    border-radius:10px;

    margin-bottom:12px;

    font-size:14px;
}

/* TITLE */

.process-box h3,
.trust-card h3{

    font-size:12px;

    line-height:1.45;

    margin-bottom:8px;
}

/* TEXT */

.process-box p,
.trust-card p{

    font-size:9px;

    line-height:1.7;
}

}
/* ======================================================
MALAYSIA EXPERIENCE
PREMIUM CORPORATE SECTION
====================================================== */

.malaysia-experience{

    position:relative;

    padding:85px 0;

    background:
    linear-gradient(
        180deg,
        #ffffff,
        #f8fbff
    );

    overflow:hidden;
}

/* ======================================================
GRID
====================================================== */

.experience-grid{

    display:grid;

    grid-template-columns:
    1.1fr .9fr;

    align-items:center;

    gap:50px;
}

/* ======================================================
CONTENT
====================================================== */

.experience-content span{

    display:inline-block;

    margin-bottom:14px;

    color:#0052cc;

    font-size:10px;

    font-weight:700;

    letter-spacing:2px;

    text-transform:uppercase;
}

/* TITLE */

.experience-content h2{

    font-size:46px;

    line-height:1.18;

    color:#071c39;

    margin-bottom:18px;

    font-weight:800;
}

/* TEXT */

.experience-content p{

    font-size:13px;

    line-height:1.9;

    color:#64748b;

    margin-bottom:24px;
}

/* LIST */

.experience-content ul{

    display:flex;

    flex-direction:column;

    gap:12px;
}

/* ITEM */

.experience-content ul li{

    position:relative;

    padding-left:28px;

    font-size:12px;

    line-height:1.8;

    color:#334155;

    font-weight:500;
}

/* CHECK */

.experience-content ul li::before{

    content:'✓';

    position:absolute;

    left:0;
    top:0;

    width:18px;
    height:18px;

    border-radius:50%;

    background:
    linear-gradient(
        135deg,
        #0052cc,
        #0a66ff
    );

    display:flex;

    align-items:center;
    justify-content:center;

    color:#ffffff;

    font-size:10px;

    font-weight:700;
}

/* ======================================================
IMAGE
====================================================== */

.experience-image{

    position:relative;
}

/* IMAGE */

.experience-image img{

    width:100%;

    height:480px;

    object-fit:cover;

    border-radius:26px;

    box-shadow:
    0 25px 60px rgba(15,23,42,.08);

    border:
    1px solid rgba(0,82,204,.05);
}

/* ======================================================
LAPTOP
====================================================== */

@media(max-width:1200px){

.experience-grid{

    gap:40px;
}

.experience-content h2{

    font-size:40px;
}

.experience-image img{

    height:430px;
}

}

/* ======================================================
TABLET
====================================================== */

@media(max-width:992px){

.malaysia-experience{

    padding:75px 0;
}

.experience-grid{

    grid-template-columns:1fr;

    gap:32px;
}

.experience-content{

    text-align:center;
}

.experience-content ul{

    max-width:420px;

    margin:auto;
}

.experience-content h2{

    font-size:34px;
}

.experience-image img{

    height:380px;
}

}

/* ======================================================
MOBILE
====================================================== */

@media(max-width:768px){

.malaysia-experience{

    padding:58px 0;
}

/* GRID */

.experience-grid{

    gap:24px;
}

/* MINI */

.experience-content span{

    font-size:9px;

    letter-spacing:1.5px;

    margin-bottom:10px;
}

/* TITLE */

.experience-content h2{

    font-size:26px;

    line-height:1.28;

    margin-bottom:14px;
}

/* TEXT */

.experience-content p{

    font-size:11px;

    line-height:1.8;

    margin-bottom:18px;
}

/* LIST */

.experience-content ul{

    gap:10px;
}

/* ITEM */

.experience-content ul li{

    padding-left:24px;

    font-size:10px;

    line-height:1.7;

    text-align:left;
}

/* CHECK */

.experience-content ul li::before{

    width:16px;
    height:16px;

    font-size:9px;
}

/* IMAGE */

.experience-image img{

    height:260px;

    border-radius:18px;
}

}

/* ======================================================
SMALL MOBILE
====================================================== */

@media(max-width:480px){

.experience-content h2{

    font-size:22px;
}

.experience-content p{

    font-size:10px;
}

.experience-content ul li{

    font-size:9px;
}

.experience-image img{

    height:220px;

    border-radius:16px;
}

}


/* ======================================================
PROJECT IMAGE SLIDER
PREMIUM CORPORATE STYLE
====================================================== */

.project-card{

    background:#ffffff;

    border-radius:18px;

    overflow:hidden;

    border:
    1px solid rgba(0,82,204,.05);

    box-shadow:
    0 12px 35px rgba(15,23,42,.05);

    transition:.35s ease;
}

/* HOVER */

.project-card:hover{

    transform:translateY(-6px);

    box-shadow:
    0 22px 50px rgba(15,23,42,.08);
}

/* ======================================================
SLIDER
====================================================== */

.project-image-slider{

    position:relative;

    width:100%;

    height:240px;

    overflow:hidden;

    background:#f1f5f9;
}

/* SLIDE */

.project-slide{

    position:absolute;

    inset:0;

    opacity:0;

    visibility:hidden;

    transition:
    opacity .7s ease,
    visibility .7s ease;
}

/* ACTIVE */

.project-slide.active{

    opacity:1;

    visibility:visible;

    z-index:2;
}

/* IMAGE */

.project-slide img{

    width:100%;

    height:100%;

    object-fit:cover;

    transition:transform .6s ease;
}

/* HOVER ZOOM */

.project-card:hover .project-slide img{

    transform:scale(1.05);
}

/* ======================================================
TAG
====================================================== */

.project-tag{

    position:absolute;

    top:14px;
    left:14px;

    z-index:5;

    padding:7px 14px;

    border-radius:50px;

    background:
    rgba(7,28,57,.92);

    backdrop-filter:blur(10px);

    color:#ffffff;

    font-size:9px;

    font-weight:700;

    letter-spacing:.5px;
}

/* ======================================================
CONTENT
====================================================== */

.project-content{

    padding:20px 18px;
}

/* META */

.project-meta{

    display:flex;

    flex-wrap:wrap;

    gap:8px;

    margin-bottom:10px;
}

.project-meta span{

    color:#0052cc;

    font-size:8px;

    font-weight:700;

    text-transform:uppercase;

    letter-spacing:.5px;
}

/* TITLE */

.project-content h3{

    font-size:17px;

    line-height:1.45;

    margin-bottom:12px;

    color:#071c39;

    font-weight:700;
}

/* TEXT */

.project-content p{

    font-size:11px;

    line-height:1.8;

    color:#64748b;

    margin-bottom:16px;
}

/* LIST */

.project-content ul{

    margin-bottom:18px;
}

.project-content ul li{

    position:relative;

    padding-left:18px;

    margin-bottom:8px;

    font-size:10px;

    color:#334155;

    line-height:1.7;
}

/* CHECK */

.project-content ul li::before{

    content:'✓';

    position:absolute;

    left:0;

    color:#0a66ff;

    font-weight:700;
}

/* ======================================================
BUTTON
====================================================== */

.project-btn{

    width:100%;

    height:42px;

    border-radius:10px;

    display:flex;

    align-items:center;
    justify-content:center;

    gap:8px;

    background:
    linear-gradient(
        135deg,
        #0052cc,
        #0a66ff
    );

    color:#ffffff;

    font-size:10px;

    font-weight:700;

    transition:.3s ease;
}

/* HOVER */

.project-btn:hover{

    transform:translateY(-2px);
}

/* ======================================================
TABLET
====================================================== */

@media(max-width:992px){

.project-image-slider{

    height:220px;
}

.project-content{

    padding:18px 16px;
}

}

/* ======================================================
MOBILE
====================================================== */

@media(max-width:768px){

.project-card{

    border-radius:14px;
}

/* SLIDER */

.project-image-slider{

    height:160px;
}

/* CONTENT */

.project-content{

    padding:14px 12px;
}

/* META */

.project-meta{

    gap:6px;

    margin-bottom:8px;
}

.project-meta span{

    font-size:7px;
}

/* TITLE */

.project-content h3{

    font-size:13px;

    line-height:1.4;

    margin-bottom:8px;
}

/* TEXT */

.project-content p{

    font-size:9px;

    line-height:1.7;

    margin-bottom:12px;
}

/* LIST */

.project-content ul{

    margin-bottom:14px;
}

.project-content ul li{

    font-size:8px;

    margin-bottom:5px;

    padding-left:14px;
}

/* BUTTON */

.project-btn{

    height:36px;

    border-radius:8px;

    font-size:8px;
}

/* TAG */

.project-tag{

    top:10px;
    left:10px;

    padding:5px 10px;

    font-size:7px;
}

}

/* ======================================================
SMALL MOBILE
====================================================== */

@media(max-width:480px){

.project-image-slider{

    height:190px;
}

.project-content h3{

    font-size:14px;
}

.project-content p{

    font-size:10px;
}

}

</style>