@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;500;600;700;800;900&display=swap');

/* =========================================================
                CONTACT SECTION
========================================================= */

.mc-contact-section {

    position: relative;

    overflow: hidden;

    padding:
        120px 0;

    background:
        linear-gradient(180deg,
            #f8fbfd 0%,
            #edf4f7 100%);

    font-family:
        'Outfit',
        sans-serif;

}

/* =========================================================
                NOISE
========================================================= */

.mc-noise {

    position: absolute;

    inset: 0;

    opacity: 0.04;

    background-image:
        radial-gradient(#044569 0.6px, transparent 0.6px);

    background-size: 18px 18px;

}

/* =========================================================
                BLURS
========================================================= */

.mc-blur {

    position: absolute;

    border-radius: 50%;

    filter: blur(120px);

}

.mc-blur-1 {

    width: 500px;
    height: 500px;

    background:
        rgba(4, 69, 105, 0.08);

    top: -240px;
    left: -240px;

}

.mc-blur-2 {

    width: 500px;
    height: 500px;

    background:
        rgba(5, 143, 72, 0.08);

    right: -240px;
    bottom: -240px;

}

/* =========================================================
                CONTAINER
========================================================= */

.mc-container {

    position: relative;

    z-index: 5;

    width: 100%;

    max-width: 1450px;

    margin: auto;

    padding: 0 28px;

}

/* =========================================================
                TOP
========================================================= */

.mc-top {

    max-width: 900px;

    margin-bottom: 70px;

}

/* LABEL */

.mc-label {

    width: fit-content;

    display: flex;

    align-items: center;

    gap: 8px;

    padding:
        8px 14px;

    border-radius: 100px;

    background:
        rgba(255, 255, 255, 0.75);

    border:
        1px solid rgba(255, 255, 255, 0.95);

    margin-bottom: 28px;

    backdrop-filter: blur(12px);

}

.mc-label span {

    width: 6px;
    height: 6px;

    border-radius: 50%;

    background:
        #058F48;

}

.mc-label p {

    color:
        #044569;

    font-size: 10px;

    font-weight: 700;

    letter-spacing: 1px;

    text-transform: uppercase;

}

/* HEADING */

.mc-top h2 {

    color:
        #102131;

    font-size:
        clamp(56px, 4.5vw, 110px);

    line-height: 0.90;

    /* letter-spacing: 1px; */

    font-weight: 900;

    margin-bottom: 28px;

    max-width: 850px;

}

/* TEXT */

.mc-top p {

    color:
        #647381;

    font-size: 17px;

    line-height: 2;

    max-width: 700px;

}

/* =========================================================
                GRID
========================================================= */

.mc-grid {

    display: grid;

    grid-template-columns:
        repeat(3, 1fr);

    gap: 26px;

}

/* =========================================================
                CARD
========================================================= */

.mc-card {

    position: relative;

    overflow: hidden;

    min-height: 360px;

    padding:
        34px;

    border-radius: 36px;

    background:
        linear-gradient(180deg,
            rgba(255, 255, 255, 0.85),
            rgba(255, 255, 255, 0.60));

    border:
        1px solid rgba(255, 255, 255, 0.95);

    backdrop-filter: blur(18px);

    box-shadow:
        0 30px 80px rgba(4, 69, 105, 0.06);

    display: flex;

    flex-direction: column;

    justify-content: space-between;

    transition:
        transform 0.45s ease,
        box-shadow 0.45s ease;

}

/* HOVER */

.mc-card:hover {

    transform:
        translateY(-10px);

    box-shadow:
        0 45px 120px rgba(4, 69, 105, 0.12);

}

/* CORNER */

.mc-corner {

    position: absolute;

    top: 0;
    right: 0;

    width: 120px;
    height: 120px;

    background:
        linear-gradient(135deg,
            rgba(5, 143, 72, 0.12),
            transparent);

    border-bottom-left-radius: 120px;

}

/* =========================================================
                ICON
========================================================= */

.mc-icon-wrap {

    position: relative;

    width: fit-content;

}

.mc-icon {

    width: 78px;
    height: 78px;

    display: flex;

    align-items: center;

    justify-content: center;

    border-radius: 26px;

    background:
        linear-gradient(135deg,
            #044569,
            #0b5c89);

    color:
        #ffffff;

    font-size: 30px;

    box-shadow:
        0 25px 60px rgba(4, 69, 105, 0.18);

}

/* =========================================================
                CONTENT
========================================================= */

.mc-content {

    /* margin-top:10px; */

}

/* LABEL */

.mc-content span {

    display: inline-block;

    margin-bottom: 18px;

    color:
        rgba(4, 69, 105, 0.45);

    font-size: 11px;

    font-weight: 700;

    letter-spacing: 1px;

    text-transform: uppercase;

}

/* TITLE */

.mc-content h3 {

    color:
        #102131;

    font-size: 30px;

    line-height: 1.18;

    letter-spacing: -1.5px;

    font-weight: 800;

    margin-bottom: 20px;

}

/* TEXT */

.mc-content p {

    color:
        #647381;

    font-size: 15px;

    line-height: 1.95;

}

/* =========================================================
                ARROW
========================================================= */

.mc-arrow {

    width: 58px;
    height: 58px;

    display: flex;

    align-items: center;

    justify-content: center;

    border-radius: 50%;

    background:
        rgba(4, 69, 105, 0.05);

    color:
        #044569;

    font-size: 22px;

    margin-top: 12px;

    transition:
        0.4s ease;

}

/* HOVER */

.mc-card:hover .mc-arrow {

    transform:
        rotate(45deg);

    background:
        #044569;

    color:
        #ffffff;

}

/* =========================================================
                RESPONSIVE
========================================================= */

@media(max-width:1100px) {

    .mc-grid {

        grid-template-columns: 1fr;

    }

}

@media(max-width:768px) {

    .mc-contact-section {

        padding:
            90px 0;

    }

    .mc-container {

        padding: 0 20px;

    }

    .mc-top {

        margin-bottom: 50px;

    }

    .mc-top h2 {

        font-size: 64px;

        line-height: 1;

        letter-spacing: -3px;

    }

    .mc-card {

        min-height: auto;

        padding: 28px;

        border-radius: 28px;

    }

}

@media(max-width:500px) {

    .mc-contact-section {

        padding:
            80px 0;

    }

    .mc-content {
        margin-top: 10px;
    }

    .mc-container {

        padding: 0 16px;

    }

    .mc-top h2 {

        font-size: 42px;

        line-height: 1;

        letter-spacing: -2px;

    }

    .mc-top p {

        font-size: 14px;

        line-height: 1.9;

    }

    .mc-card {

        padding: 22px;

        border-radius: 22px;

    }

    .mc-icon {

        width: 62px;
        height: 62px;

        border-radius: 20px;

        font-size: 22px;

    }

    .mc-content h3 {

        font-size: 22px;

        letter-spacing: 1px;

    }

    .mc-content p {

        font-size: 14px;

        line-height: 1.85;

    }

    .mc-arrow {

        margin-top: 25px;
    }

}

/* =========================================================
            CENTER ALIGN FIX
========================================================= */

/* TOP AREA */

.mc-top {

    max-width: 900px;

    margin:
        0 auto 70px;

    text-align: center;

}

/* TAG */

.mc-label {

    margin:
        0 auto 28px;

}

/* HEADING */

.mc-top h2 {

    margin:
        0 auto 28px;

}

/* PARAGRAPH */

.mc-top p {

    margin:
        0 auto;

}


@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;500;600;700;800;900&display=swap');

/* =========================================================
                SECTION
========================================================= */

.nq-section{

    position: relative;

    overflow: hidden;

    padding:
        120px 0;

    background:
        #f5f9fc;

    font-family:
        'Outfit',
        sans-serif;

}

/* =========================================================
                BACKGROUND
========================================================= */

.nq-grid{

    position: absolute;

    inset: 0;

    background-image:
        linear-gradient(rgba(4,69,105,0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(4,69,105,0.03) 1px, transparent 1px);

    background-size: 80px 80px;

}

.nq-blur{

    position: absolute;

    border-radius: 50%;

    filter: blur(120px);

}

.nq-blur-1{

    width: 520px;
    height: 520px;

    background:
        rgba(4,69,105,0.08);

    top: -240px;
    left: -240px;

}

.nq-blur-2{

    width: 520px;
    height: 520px;

    background:
        rgba(5,143,72,0.08);

    right: -240px;
    bottom: -240px;

}

/* =========================================================
                CONTAINER
========================================================= */

.nq-container{

    position: relative;

    z-index: 5;

    width: 100%;

    max-width: 1450px;

    margin: auto;

    padding: 0 28px;

    display: grid;

    grid-template-columns:
        1.08fr
        0.92fr;

    gap: 28px;

    align-items: stretch;

}

/* =========================================================
                LEFT PANEL
========================================================= */

.nq-left-panel{

    position: relative;

    overflow: hidden;

    padding:
        42px;

    border-radius: 42px;

    background:
        rgba(255,255,255,0.72);

    border:
        1px solid rgba(255,255,255,0.95);

    backdrop-filter: blur(20px);

    box-shadow:
        0 40px 100px rgba(4,69,105,0.07);

}

/* LIGHT */

.nq-left-panel::before{

    content: "";

    position: absolute;

    width: 380px;
    height: 380px;

    border-radius: 50%;

    background:
        radial-gradient(circle,
            rgba(5,143,72,0.08),
            transparent);

    top: -180px;
    right: -180px;

}

/* =========================================================
                TOP
========================================================= */

.nq-panel-top{

    position: relative;

    z-index: 2;

    margin-bottom: 38px;

}

/* TAG */

.nq-mini-tag{

    width: fit-content;

    display: flex;

    align-items: center;

    gap: 8px;

    padding:
        8px 14px;

    border-radius: 100px;

    background:
        rgba(4,69,105,0.05);

    margin-bottom: 24px;

}

.nq-mini-tag span{

    width: 6px;
    height: 6px;

    border-radius: 50%;

    background:
        #058F48;

}

.nq-mini-tag p{

    color:
        #044569;

    font-size: 10px;

    font-weight: 700;

    letter-spacing: 1px;

    text-transform: uppercase;

}

/* HEADING */

.nq-panel-top h2{

    color:
        #102131;

    font-size: 54px;

    line-height: 0.95;

    letter-spacing: -3px;

    font-weight: 900;

}

/* =========================================================
                FORM
========================================================= */

.nq-form{

    position: relative;

    z-index: 2;

    display: flex;

    flex-direction: column;

    gap: 22px;

}

/* ROW */

.nq-row{

    display: grid;

    grid-template-columns:
        1fr 1fr;

    gap: 18px;

}

/* INPUT BOX */

.nq-input-box{

    display: flex;

    flex-direction: column;

    gap: 12px;

}

/* LABEL */

.nq-input-box label{

    color:
        #102131;

    font-size: 13px;

    font-weight: 600;

}

/* INPUT */

.nq-input-box input,
.nq-input-box select,
.nq-input-box textarea{

    width: 100%;

    border: none;

    outline: none;

    padding:
        18px;

    border-radius: 20px;

    background:
        #f5f9fc;

    color:
        #102131;

    font-size: 15px;

    font-family:
        'Outfit',
        sans-serif;

    transition:
        0.3s ease;

}

/* FOCUS */

.nq-input-box input:focus,
.nq-input-box select:focus,
.nq-input-box textarea:focus{

    background:
        #eef5f9;

}

/* TEXTAREA */

.nq-input-box textarea{

    min-height: 140px;

    resize: none;

}

/* BUTTON */

.nq-form button{

    border: none;

    outline: none;

    padding:
        20px;

    border-radius: 20px;

    background:
        linear-gradient(
            135deg,
            #044569,
            #0b5c89
        );

    color:
        #ffffff;

    font-size: 15px;

    font-weight: 700;

    cursor: pointer;

    margin-top: 6px;

    transition:
        0.4s ease;

    box-shadow:
        0 30px 70px rgba(4,69,105,0.18);

}

.nq-form button:hover{

    transform:
        translateY(-4px);

}

/* =========================================================
                RIGHT
========================================================= */

.nq-right-panel{

    display: flex;

    flex-direction: column;

    gap: 24px;

}

/* =========================================================
                MAP
========================================================= */

.nq-map-card{

    position: relative;

    overflow: hidden;

    min-height: 520px;

    border-radius: 42px;

    background:
        #ffffff;

    box-shadow:
        0 40px 100px rgba(4,69,105,0.08);

}

/* MAP */

.nq-map-card iframe{

    width: 100%;
    height: 100%;

    border: none;

}

/* FLOAT CARD */

.nq-floating-card{

    position: absolute;

    left: 24px;
    right: 24px;
    bottom: 24px;

    padding:
        22px;

    border-radius: 26px;

    background:
        rgba(255,255,255,0.88);

    backdrop-filter: blur(18px);

    box-shadow:
        0 25px 60px rgba(4,69,105,0.12);

}

/* LIVE */

.nq-live{

    width: fit-content;

    display: flex;

    align-items: center;

    gap: 8px;

    padding:
        8px 12px;

    border-radius: 100px;

    background:
        rgba(4,69,105,0.05);

    margin-bottom: 18px;

}

/* DOT */

.nq-live-dot{

    width: 8px;
    height: 8px;

    border-radius: 50%;

    background:
        #058F48;

    box-shadow:
        0 0 14px rgba(5,143,72,0.5);

}

/* TEXT */

.nq-live span{

    color:
        #044569;

    font-size: 10px;

    font-weight: 700;

    letter-spacing: 1px;

    text-transform: uppercase;

}

/* TITLE */

.nq-floating-card h3{

    color:
        #102131;

    font-size: 34px;

    line-height: 1;

    letter-spacing: -1px;

    font-weight: 800;

    margin-bottom: 10px;

}

/* TEXT */

.nq-floating-card p{

    color:
        #647381;

    font-size: 14px;

    line-height: 1.8;

}

/* =========================================================
                BOTTOM GRID
========================================================= */

.nq-bottom-grid{

    display: grid;

    grid-template-columns:
        1fr 1fr;

    gap: 20px;

}

/* =========================================================
                INFO BOX
========================================================= */

.nq-info-box{

    padding:
        26px;

    border-radius: 34px;

    background:
        rgba(255,255,255,0.72);

    border:
        1px solid rgba(255,255,255,0.95);

    backdrop-filter: blur(18px);

    box-shadow:
        0 35px 90px rgba(4,69,105,0.06);

}

/* ICON */

.nq-icon{

    width: 64px;
    height: 64px;

    display: flex;

    align-items: center;

    justify-content: center;

    border-radius: 22px;

    background:
        linear-gradient(
            135deg,
            #044569,
            #0b5c89
        );

    color:
        #ffffff;

    font-size: 22px;

    margin-bottom: 24px;

}

/* CONTENT */

.nq-info-content span{

    display: inline-block;

    margin-bottom: 12px;

    color:
        rgba(4,69,105,0.45);

    font-size: 11px;

    font-weight: 700;

    letter-spacing: 1px;

    text-transform: uppercase;

}

.nq-info-content h3{

    color:
        #102131;

    font-size: 24px;

    line-height: 1.2;

    letter-spacing: -1px;

    font-weight: 800;

}

/* =========================================================
                COVERAGE
========================================================= */

.nq-coverage-card{

    position: relative;

    overflow: hidden;

    padding:
        32px;

    border-radius: 38px;

    background:
        linear-gradient(
            180deg,
            rgba(255,255,255,0.82),
            rgba(255,255,255,0.65)
        );

    border:
        1px solid rgba(255,255,255,0.95);

    backdrop-filter: blur(18px);

    box-shadow:
        0 40px 100px rgba(4,69,105,0.06);

}

/* LINE */

.nq-line{

    width: 80px;
    height: 5px;

    border-radius: 100px;

    background:
        linear-gradient(
            90deg,
            #044569,
            #058F48
        );

    margin-bottom: 24px;

}

/* TEXT */

.nq-coverage-card span{

    display: inline-block;

    margin-bottom: 14px;

    color:
        rgba(4,69,105,0.45);

    font-size: 11px;

    font-weight: 700;

    letter-spacing: 1px;

    text-transform: uppercase;

}

.nq-coverage-card h3{

    color:
        #102131;

    font-size: 34px;

    line-height: 1.1;

    letter-spacing: -1px;

    font-weight: 800;

    margin-bottom: 16px;

}

.nq-coverage-card p{

    color:
        #647381;

    font-size: 15px;

    line-height: 1.9;

}

/* =========================================================
                RESPONSIVE
========================================================= */

@media(max-width:1200px){

    .nq-container{

        grid-template-columns: 1fr;

    }

}

@media(max-width:768px){

    .nq-section{

        padding:
            90px 0;

    }

    .nq-container{

        padding: 0 20px;

    }

    .nq-left-panel{

        padding: 30px;

        border-radius: 30px;

    }

    .nq-row,
    .nq-bottom-grid{

        grid-template-columns: 1fr;

    }

    .nq-panel-top h2{

        font-size: 42px;

    }

}

@media(max-width:500px){

    .nq-section{

        padding:
            80px 0;

    }

    .nq-container{

        padding: 0 16px;

    }

    .nq-left-panel{

        padding: 22px;

        border-radius: 22px;

    }

    .nq-map-card{

        min-height: 340px;

        border-radius: 26px;

    }

    .nq-floating-card h3{

        font-size: 26px;

    }

    .nq-info-content h3{

        font-size: 20px;

    }

    .nq-coverage-card h3{

        font-size: 26px;

    }

}