/* Banner Section - Always Centered */
.who-we-are-banner {
    background-color: #002b6a;
    color: white;
    width: 100%;
    min-height: 100vh; /* Fill full viewport height */
    display: flex;
    align-items: center; /* Vertical center */
    justify-content: center; /* Horizontal center */
    padding: 20px; /* Prevent content from touching edges */
    box-sizing: border-box;
}

/* Container inside stays at max width */
.whoarewecontainer {
    max-width: 1200px; /* Optional for content alignment */
    width: 100%;
}

/* Titles */
.wwa-title {
    text-transform: uppercase;
    font-weight: 900;
    user-select: none;
    text-align: left;
}

.wwa-line1 {
    font-size: clamp(6.5rem, 4vw, 20rem);
    line-height: 1;
}

.wwa-line2 {
    font-size: clamp(8rem, 5vw, 30rem);
    line-height: 1;
    margin-top: -5px;
    -webkit-text-stroke: 1.5px white;
    color: transparent;
}

/* Paragraph */
.wwa-description {
    font-size: clamp(1rem, 1.5vw, 1.8rem);
    text-align: justify;
}

/* Button */
.wwa-rect-btn {
    display: inline-block;
    padding: clamp(10px, 1.5vw, 12px) clamp(20px, 3vw, 24px);
    background-color: white;
    color: #002b6a;
    font-weight: 700;
    font-size: clamp(0.9rem, 1.2vw, 1.2rem);
    text-transform: uppercase;
    text-decoration: none;
    border-radius: 12px;
    transition: background 0.3s ease, color 0.3s ease;
    width: 160px;
    text-align: center;
    box-shadow: 0 0 10px rgba(255, 0, 0, 0.3);
}

.wwa-rect-btn:hover {
    background-color: #002b6a;
    color: white;
    border: 2px solid #ffffff;
}

/* On mobile: two buttons side-by-side */
@media (max-width: 768px) {
    .wwa-btn-row {
        display: flex;
        gap: clamp(10px, 4vw, 20px);
        justify-content: center;
    }
    .wwa-btn-row .wwa-rect-btn {
        flex: 1 1 45%;
        max-width: none;
        margin-bottom: 0;
    }
}


/* Diagonal Split Container */
.mv_diagonal_split {
    position: relative;
    height: clamp(25vh, 30vh, 40vh);
    width: clamp(90vw, 1200px, 100vw);
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    overflow: hidden;
    margin-top: 50px !important;
    margin: auto;
    border-radius: 20px;
    max-width: 1500px;
}

.mv_diagonal_split__left {
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    width: clamp(600px, calc(1500px - 20vw), 1000px);
    background: white;
    color: #002b6a;
    clip-path: polygon(0 0, 100% 0, 70% 100%, 0% 100%);
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: clamp(20px, 5vw, 60px) clamp(30px, 6vw, 80px);
}

.mv_diagonal_split__right {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    width: clamp(600px, calc(1500px - 20vw), 1000px);
    background-color: #002b6a;
    color: white;
    clip-path: polygon(37% 0, 100% 0, 100% 100%, 0 140%);
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: clamp(20px, 5vw, 60px) clamp(30px, 6vw, 80px);
    text-align: right;
}

.mv_diagonal_split__heading_left {
    font-size: clamp(2.5rem, 5vw, 5rem);
    font-weight: 900;
    margin: 0 0 clamp(15px, 3vw, 30px) 0;
    user-select: none;
    color: #002b6a;
}

.mv_diagonal_split__heading_right {
    font-size: clamp(2.5rem, 5vw, 5rem);
    font-weight: 900;
    margin: 0 0 clamp(15px, 3vw, 30px) 0;
    user-select: none;
    color: white;
}

.mv_diagonal_split__text_left {
    font-size: clamp(1rem, 1.5vw, 1.8rem) !important;
    line-height: 1.6;
    margin: 0;
    max-width: 60%;
    text-align: left;
}

.mv_diagonal_split__text_right {
    font-size: clamp(1rem, 1.5vw, 1.8rem);
    line-height: 1.6;
    margin: 0;
    max-width: 60%;
    text-align: right;
    margin-left: auto;
}

/* Responsive for Diagonal Split */
@media (max-width: 900px) {

    .mv_diagonal_split__left,
    .mv_diagonal_split__right {
        position: relative;
        width: 100vw;
        clip-path: none;
        padding: clamp(15px, 3vw, 40px);
        text-align: center !important;
    }

    .mv_diagonal_split__heading {
        font-size: clamp(1.8rem, 4vw, 3rem);
        -webkit-text-stroke-width: 1.5px;
    }

    .mv_diagonal_split__text_left,
    .mv_diagonal_split__text_right {
        max-width: 100%;
        text-align: center !important;
        margin-left: 0;
    }
}

.whoarewecontainer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    max-width: 1500px;
    margin: 0 5%;
}

.two-cols-container {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    justify-content: center;
    align-items: flex-start;
    max-width: clamp(90vw, 1200px, 100vw);
    margin: 3rem auto;
    /* padding: 0 1rem; */

}

.about_video,
.process {
    flex: 1 1 45%;
    box-sizing: border-box;
}

/* Optional: Stack on smaller screens */
@media (max-width: 900px) {

    .quality-statement,
    .quick-guarantee {
        flex: 1 1 100%;
    }
}




.quality-statement {
    max-width: 1500px;
    margin: 3rem auto;
    padding: 2rem 3rem;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    color: #222;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}

.qs-heading {
    font-size: clamp(2.5rem, 5vw, 3.5rem);
    font-weight: 900;
    color: #002b6a;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin: 0;
    user-select: none;
    position: relative;
    text-align: center;
}



/* List styling */
.qs-list {
    list-style: none;
    padding-left: 0;
    font-size: clamp(1.1rem, 3vw, 2.3rem);
    line-height: 1.7;
    color: #333;
    counter-reset: quality-counter;
}

/* Custom numbered bullets */
.qs-list li {
    position: relative;
    padding-left: 3.5rem;
    margin-bottom: 1.75rem;
    transition: color 0.3s ease;
    cursor: default;
}

.qs-list li::before {
    content: counter(quality-counter);
    counter-increment: quality-counter;
    position: absolute;
    left: 0;
    top: 0;
    font-weight: 900;
    font-size: 1.8rem;
    color: #ff3b3b;
    background: #fff;
    border: 3px solid #ff3b3b;
    width: 2.5rem;
    height: 2.5rem;
    border-radius: 50%;
    box-shadow: 0 0 8px rgba(255, 59, 59, 0.3);
    user-select: none;

    display: flex;
    align-items: center;
    justify-content: center;

    /* Remove line-height as flexbox handles vertical centering */
    line-height: normal;

    transition: background-color 0.3s ease, color 0.3s ease;
}


/* Hover effect on list items */
.qs-list li:hover {
    color: #002b6a;
}

.qs-list li:hover::before {
    background-color: #002b6a;
    color: #fff;
    border-color: #002b6a;
    box-shadow: 0 0 10px rgba(0, 43, 106, 0.6);
}

/* Responsive tweaks */
@media (max-width: 600px) {
    .qs-heading {
        font-size: 2rem;
    }



    .qs-list li {
        padding-left: 3rem;
        font-size: 1rem;
    }

    .qs-list li::before {
        font-size: 1.4rem;
        width: 2rem;
        height: 2rem;
        line-height: 2rem;
    }
}

.quick-guarantee {
    max-width: 1500px;
    margin: 3rem auto;
    padding: 2rem 3rem;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    color: #222;
    display: flex;
    justify-content: center;
    flex-direction: column;
}

.qg-heading {
    font-size: clamp(2.5rem, 5vw, 3.5rem);
    font-weight: 900;
    color: #002b6a;
    /* Deep blue */
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin: 0;
    /* remove bottom margin to avoid offset */
    user-select: none;
    position: relative;
    text-align: center;
    /* center text inside */
}


.qg-list {
    list-style: none;
    padding-left: 0;
    font-size: clamp(1.1rem, 3vw, 2.3rem);
    line-height: 1.7;
    color: #333;
    counter-reset: guarantee-counter;
    /* reset guarantee-counter */
}

.qg-list li {
    position: relative;
    padding-left: 3.5rem;
    margin-bottom: 1.75rem;
    transition: color 0.3s ease;
    cursor: default;
}

.qg-list li::before {
    content: counter(guarantee-counter);
    /* use guarantee-counter */
    counter-increment: guarantee-counter;
    position: absolute;
    left: 0;
    top: 0;
    font-weight: 900;
    font-size: 1.8rem;
    color: #ff3b3b;
    background: #fff;
    border: 3px solid #ff3b3b;
    width: 2.5rem;
    height: 2.5rem;
    border-radius: 50%;
    box-shadow: 0 0 8px rgba(255, 59, 59, 0.3);
    user-select: none;

    display: flex;
    align-items: center;
    justify-content: center;

    line-height: normal;
    /* or just remove this */
    transition: background-color 0.3s ease, color 0.3s ease;
}


/* Hover effect on list items */
.qg-list li:hover {
    color: #002b6a;
}

.qg-list li:hover::before {
    background-color: #002b6a;
    color: #fff;
    border-color: #002b6a;
    box-shadow: 0 0 10px rgba(0, 43, 106, 0.6);
}

@media (max-width: 600px) {
    .qg-list li {
        padding-left: 3rem;
        font-size: 1rem;
    }

    .qg-list li::before {
        font-size: 1.4rem;
        width: 2rem;
        height: 2rem;
        /* Remove line-height here! */
    }
}




.qe_section {
    position: relative;
    max-width: 1500px;
    margin: auto;
    padding: 3rem 2rem;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    color: #222;
    overflow: hidden;
    border-radius: 12px;
    text-align: center;
}


/* Headings */
.qe_section h1 {
    font-size: clamp(2.5rem, 5vw, 3.5rem);
    font-weight: 900;
    color: #002b6a;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 0.25rem;
    user-select: none;
    position: relative;
    z-index: 2;
}



/* Paragraph and lists */
.qe_section p,
.qe_section ul {
    font-size: clamp(1.1rem, 3vw, 2.3rem);
    line-height: 1.7;
    color: #222;
    position: relative;
    z-index: 2;
    margin-bottom: 2rem;
    text-align: center;
}

.qe_section ul {
    padding-left: 1.5rem;
    list-style-type: disc;
}

/* Images */
.qe_section img {
    display: block;
    max-width: 100%;
    height: auto;
    border-radius: 12px;
    margin-bottom: 0.5rem;
    position: relative;
    z-index: 2;
}





.md-message-container {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    /* max-width: 1200px; */
    margin: 0 auto;
    gap: 2rem;
}

/* Left: Text */
.md-message-text {
    flex: 2;
    color: #222;

}

.md-message-container h1 {
    font-size: clamp(2.5rem, 5vw, 3.5rem);
    font-weight: 900;
    color: #002b6a;
    text-transform: none;
    letter-spacing: 0.1em;
    margin-bottom: 0.25rem;
    user-select: none;
    position: relative;
    z-index: 2;
    padding-bottom: 20px;
}

.md-message-text h1 {
    font-size: clamp(2rem, 4vw, 5rem);
    color: #002b6a;
    margin-bottom: 1rem;
}

.md-message-text p {
    font-size: 1.8rem;
    line-height: 1.7;
    text-align: justify !important;
}

/* Right: Image */
.md-message-image-block {
    flex: 1;
    text-align: center;
}


.md-message-image-block h4 {
    margin-top: 0.2rem;
    font-size: 3.5rem;
    font-weight: bold;
    color: #002b6a;
}

.md-message-image-block h4 span {
    font-weight: normal;
    font-size: 2.5rem;
    color: #555;
}

/* Responsive */
@media screen and (max-width: 768px) {
    .md-message-container {
        flex-direction: column;
        text-align: center;
    }

    .md-message-text,
    .md-message-image-block {
        flex: 1 1 100%;
    }

    .image-bg {
        padding: 0.5rem;
    }
}



/* Hide mobile version by default */
.mobile-only {
    display: none;
}

/* Show/hide based on screen width */
@media screen and (max-width: 768px) {
    .desktop-only {
        display: none;
    }

    .mobile-only {
        display: block;
    }
}



/* Responsive */
@media (max-width: 900px) {
    .qe_section {
        padding: 2rem 3rem;
    }

    .qe_section::before,
    .qe_section::after {
        display: none;
    }

    .qe_section h1 {
        font-size: 2.5rem;
    }

    #MDs-Message.qe_section h2 {
        font-size: 1.5rem;
    }
}


#process {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    text-align: center;
    /* padding: 60px 20px; */
}

#process h1 {
    font-size: clamp(2.5rem, 5vw, 3.5rem);
    font-weight: 900;
    color: #002b6a;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 0.25rem;
    user-select: none;
    position: relative;
    z-index: 2;
    padding-bottom: 20px;
}

.process-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
    max-width: 1200px;
    margin: 0 auto;
}

.step {
    opacity: 0;
    transform: translateY(30px);
    background-color: #0c3976;
    color: #fff;
    padding: 20px;
    border-radius: 10px;
    width: 300px;
    text-align: center;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: all 1s ease-out;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.step.visible {
    opacity: 1;
    transform: translateY(0);
}

.step i {
    font-size: 40px;
    margin-bottom: 10px;
    color: #ffffff;
}

.arrow {
    display: flex;
    align-items: center;
    justify-content: center;
    color: #0c3976;
    font-size: 30px;
    opacity: 0;
    transform: translateY(30px);
    transition: all 1s ease-out;
}

.arrow.visible {
    opacity: 1;
    transform: translateY(0);
}