* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Inter', sans-serif;
}

html{
    scroll-behavior: smooth;
}

/* MPW Hero Section Starts */
.mpw-hero {
    position: relative;
    background: url("../img/mpw/background.png") no-repeat center/cover;
    height: 600px;
    min-height: 600px;
    display: flex;
    align-items: center;
    color: white;
}

.mpw-hero-content {
    position: relative;
    z-index: 2;
    width: 100%;
}

.mpw-hero-text {
    max-width: 1000px;
    margin-left: 40px;
}

.mpw-hero-text h1 {
    font-size: 32px;
    line-height: 1.5;
    font-weight: 600;
    color: white;
}

.mpw-highlight {
    color: #e5000c;
}

.mpw-hero-divider {
    height: 3px;
    width: 60%;
    margin: 15px 0 20px;
    background: linear-gradient(to right, transparent, #e5000c, transparent);
}

.mpw-hero-text p {
    font-size: 16px;
    line-height: 1.6;
    margin-bottom: 20px;
    color: #fff;
    width: 550px;
}

.mpw-cta-btn {
    background: #e5000c;
    color: #fff;
    padding: 10px 20px;
    border-radius: 4px;
    font-size: 14px;
}

@media (max-width: 992px) {

    .mpw-hero {
        height: auto;
        min-height: 520px;
        padding: 80px 30px 40px;
    }

    .mpw-hero-text {
        max-width: 90%;
        margin-left: 20px;
    }

    .mpw-hero-text h1 {
        font-size: 26px;
        line-height: 1.4;
    }

    .mpw-hero-text p {
        font-size: 14px;
        width: 100%;
    }

    .mpw-hero-divider {
        width: 120px;
    }

    .mpw-cta-btn {
        padding: 10px 18px;
        font-size: 13px;
    }
}

@media (max-width: 768px) {

    .mpw-hero {
        height: auto;
        min-height: 480px;
        padding: 70px 20px 40px;
        align-items: center;
    }

    .mpw-hero-text {
        margin-left: 0;
        max-width: 100%;
    }

    .mpw-hero-text h1 {
        font-size: 20px;
        line-height: 1.4;
    }

    .mpw-hero-text p {
        font-size: 13px;
        width: 100%;
    }

    .mpw-hero-divider {
        width: 90px;
    }

    .mpw-cta-btn {
        font-size: 12px;
        padding: 10px 16px;
    }
}
/* MPW Hero Section Ends */

/* MPW Banner Starts */
.mpw-banner {
    background: #e6e6e6;
    text-align: center;
    padding: 14px 20px;
}

.mpw-banner p {
    color: #333;
    font-size: 18px;
    margin: 0;
}

.mpw-banner strong{
    color: #333;
    font-size: 24px;
    font-weight: 600;
}

@media (max-width:768px) {

.mpw-banner {
    padding: 12px 15px;
}

.mpw-banner p {
    font-size: 15px;
}

.mpw-banner strong {
    font-size: 18px;
}

}
/* MPW Banner Ends */

/* Structured MPW Execution Flow Starts */
.execution-flow{
    padding:40px 20px;
    background:white;
}

.execution-flow h2{
    text-align:center;
    color:#e5000c;
    font-size:32px;
    margin-bottom:40px;
    font-weight:700;
}

/* Desktop Layout */

.flow-container{
    max-width:1200px;
    margin:auto;
    display:flex;
    align-items:center;
    gap:120px;
}

.flow-image img{
    width:500px;
    height:500px;
    object-fit:cover;
    border-radius:18px;
}

/* Steps */

.flow-steps{
    display:flex;
    flex-direction:column;
    gap:80px;
}

/* Step Row */

.mpw-step{
    display:flex;
    align-items:center;
    gap:25px;
    cursor:pointer;
    position:relative;
}

/* Titles */

.mpw-step p{
    font-size:20px;
    font-weight:600;
    color:#444;
    margin:0;
    line-height:1.2;
}

/* BIG ARROW */

.execution-flow .arrow{
    font-size:60px;
    font-weight:900;
    color:#555;
    line-height:1;
    display:flex;
    align-items:center;
    transition: transform 0.35s ease, color 0.35s ease;
}

/* Hover effect */

.execution-flow .mpw-step:hover .arrow{
    color:#e5000c;
    transform:translateX(8px);
}

.execution-flow .mpw-step:hover p{
    color:#e5000c;
}

/* Tooltip box */

.info-box{
    position:absolute;
    left:350px;
    top:50%;
    transform:translateY(-50%) translateX(-20px);
    background:white;
    padding:16px 22px;
    border-radius:12px;
    border:1px solid #eee;
    box-shadow:0 6px 20px rgba(229,0,12,0.25);
    font-size:14px;
    min-width:240px;
    opacity:0;
    visibility:hidden;
    transition:all 0.35s ease;
}

.execution-flow .mpw-step:hover .info-box{
    opacity:1;
    visibility:visible;
    transform:translateY(-50%) translateX(0);
}

/* -------------------------------- */
/* Tablet Layout */
/* -------------------------------- */

@media(max-width:1024px){

.flow-container{
    flex-direction:column;
    gap:40px;
}

.flow-image img{
    width:100%;
    max-width:450px;
}

.flow-steps{
    width:100%;
}

.mpw-step{
    background:#f6f6f6;
    padding:18px;
    border-radius:12px;
}

/* Arrow smaller */

.execution-flow .arrow{
    font-size:34px;
}

/* Tooltip inline */

.info-box{
    position:static;
    display:block;
    margin-top:8px;
    box-shadow:none;
    border:none;
    padding:0;
    color:#666;
}

}

/* -------------------------------- */
/* Mobile Layout */
/* -------------------------------- */

@media(max-width:768px){

.execution-flow h2{
    font-size:26px;
}

.flow-container{
    flex-direction:column;
    gap:30px;
}

.flow-image img{
    width:100%;
}

.flow-steps{
    gap:20px;
}

/* Step card */

.mpw-step{
    display:flex;
    flex-wrap:wrap;
    align-items:center;
    gap:12px;
    padding:18px;
    background:#f6f6f6;
    border-radius:16px;
    border:1px solid #eee;
}

/* Arrow */

.execution-flow .arrow{
    font-size:26px;
    flex-shrink:0;
}

.execution-flow .mpw-step.active .arrow{
    color:#e5000c;
}

.execution-flow .mpw-step.active p{
    color:#e5000c;
}

/* Title */

.mpw-step p{
    font-size:16px;
    font-weight:600;
    margin:0;
}

/* Description */

.info-box{
    position:static;
    width:100%;
    margin-top:8px;
    padding-left:34px;
    border:none;
    box-shadow:none;
    background:none;
    font-size:14px;
    color:#666;

    opacity:1;
    visibility:visible;
    transform:none;
}

.execution-flow .mpw-step:hover .arrow{
    color:#555;
    transform:none;
}

.execution-flow .mpw-step:hover p{
    color:#444;
}

.execution-flow .mpw-step:hover .info-box{
    opacity:1;
    visibility:visible;
    transform:none;
}

}
/* Structured MPW Execution Flow Ends */

/* Why ZMD for MPW Starts */
.why-zmd {
    padding: 40px 20px;
    text-align: center;
    background: #f5f5f5;
}

.why-zmd h2 {
    color: #e5000c;
    font-size: 32px;
    margin-bottom: 30px;
}

.why-container {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 30px;
}

.card {
    background: white;
    width: 350px;
    height: 200px;
    padding: 35px 25px;
    border-radius: 12px;
    text-align: center;
    border: 2px solid rgba(229,0,12,0.2);
    box-shadow: 0 0 12px rgba(229,0,12,0.15);
    transition: 0.3s;
}

.card img {
    width: 90px;
    height: 90px;
    display: block;
    margin: 0 auto 20px auto;
}

.card p {
    font-size: 16px;
    font-weight: bold;
    color: #333;
}

.card:hover {
    transform: translateY(-6px);
    box-shadow: 0 10px 20px rgba(229,0,12,0.25);
}

.why-zmd .arrow {
    font-size: 50px;
    color: #333;
    font-weight: bold;
}

@media (max-width:768px) {

.why-container {
    flex-direction: column;
    gap: 10px;
}

.why-zmd .arrow {
    transform: rotate(90deg);
}

.card {
    width: 100%;
    max-width: 320px;
}

}
/* Why ZMD for MPW Ends */

/* Process Platforms Supported Starts */
.platforms {
    text-align: center;
    padding: 40px 20px;
    background: white;
}

.platforms h2 {
    font-size: 32px;
    color: #e5000c;
    margin-bottom: 20px;
}

.platform-desc {
    max-width: 750px;
    margin: auto;
    color: #333;
    font-size: 16px;
    margin-bottom: 30px;
    font-weight: bold;
}

.platform-container {
    display: flex;
    justify-content: center;
    gap: 50px;
    flex-wrap: wrap;
}

.platform-card {
    width:260px;
    height:170px;
    border-radius:8px;
    overflow:hidden;
    background:white;
    border:1px solid #ddd;
    box-shadow:0 4px 10px rgba(0,0,0,0.08);
    display:flex;
    flex-direction:column;
}

.platform-title {
    background: linear-gradient(
    to right,
    #942124,
    #e5000c
);
    color: white;
    font-size: 20px;
    font-weight: 600;
    padding: 12px;
}

.platform-text{
    flex:1;
    padding:20px 18px;
    font-size:15px;
    font-weight:bold;
    color:#333;
    display:flex;
    align-items:center;
    justify-content:center;
    text-align:center;
    line-height:1.4;
    max-width:200px;
    margin:auto;
}

@media (max-width:768px){

.platforms{
    padding:30px 15px;
}

.platforms h2{
    font-size:26px;
}

.platform-desc{
    font-size:14px;
    margin-bottom:25px;
}

.platform-container{
    flex-direction:column;
    align-items:center;
    gap:20px;
}

.platform-card{
    width:100%;
    max-width:320px;
}

.platform-title{
    font-size:18px;
}

.platform-text{
    padding:25px 15px;
    font-size:14px;
}

}

@media (max-width:1024px) {

.platform-container{
    gap:40px;
}

.platform-card{
    width:220px;
}

}
/* Process Platforms Supported Starts */

/* Sumbit your MPW Requirement Starts */
.enquiry {
    padding: 40px 20px;
    background: #f3f3f3;
    text-align: center;
}

.form-title {
    font-size: 32px;
    color: #e5000c;
    margin-bottom: 40px;
    font-weight: 700;
}

.form-container {
    max-width: 1200px;
    margin: auto;
    background: white;
    padding: 40px;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.15);
}

.form-section{
    margin-bottom:30px;
}

.form-section h3{
    display:flex;
    align-items:center;
    gap:8px;
    font-size:18px;
    font-weight:600;
    color:#333;
    margin-bottom:20px;
    border-bottom:1px solid #ddd;
    padding-bottom:10px;
}

.section-icon{
    width:18px;
}

.form-grid{
    display:flex;
    flex-wrap:wrap;
    gap:20px;
}

.field{
    width:calc(50% - 10px);
    display:flex;
    flex-direction:column;
}

.field label{
    font-size:16px;
    color:black;
    margin-bottom:6px;
    text-align:left;
}

.input-box{
    display:flex;
    align-items:center;
    border:1px solid #ddd;
    border-radius:6px;
    padding:0 12px;
    background:#fafafa;
    height:48px;
}

.input-box img{
    width:20px;
    margin-right:8px;
}

.input-box input,
.input-box select,
.input-box textarea{
    border:none;
    outline:none;
    width:100%;
    font-size:14px;
    background:transparent;
}

.form-error{
    color:#e5000c;
    font-size:14px;
    margin-bottom:15px;
    font-weight:500;
    display:none;
    text-align:center;
    background:#ffe6e6;
    padding:10px;
    border-radius:6px;
}

.field-error{
    color:#e5000c;
    font-size:16px;
    margin-top:6px;
    display:block;
    text-align:left;
}

textarea{
    resize:none;
    height:48px;
    padding-top:9px;
}

.submit-area{
    text-align:center;
    margin-top:30px;
}

.submit-area button{
    background:#e5000c;
    color:white;
    border:none;
    padding:14px 30px;
    font-size:16px;
    border-radius:6px;
    cursor:pointer;
    font-weight:600;
}

.submit-area button:hover{
    background:#c9000a;
}

.required{
    color:#e5000c;
    font-weight:700;
    margin-left:3px;
}

.popup{
    position:fixed;
    top:0;
    left:0;
    width:100%;
    height:100%;
    background:rgba(0,0,0,0.5);
    display:none;
    align-items:center;
    justify-content:center;
    z-index:9999;
}

.popup-box{
    background:white;
    padding:30px;
    border-radius:10px;
    text-align:center;
    width:420px;
    box-shadow:0 4px 20px rgba(0,0,0,0.2);
}

.popup-box h3{
    color:#e5000c;
    margin-bottom:10px;
}

.popup-box p{
    font-size:14px;
    color:#333;
    line-height:1.6;
}

.popup-box button{
    margin-top:20px;
    padding:10px 22px;
    border:none;
    background:#e5000c;
    color:white;
    border-radius:5px;
    cursor:pointer;
    font-size:14px;
}

.popup-box button:hover{
    background:#c40008;
}

@media (max-width:768px){

.field{
    width:100%;
}

.form-container{
    padding:25px;
}

.form-title{
    font-size:26px;
}

}
/* Sumbit your MPW Requirement Ends */