@font-face {
    font-family: 'Metropolis';
    src: url('../fonts/Metropolis-Regular.otf') format('opentype');
    font-weight: 400;
    font-style: normal;
}

@font-face {
    font-family: 'Metropolis';
    src: url('../fonts/Metropolis-Medium.otf') format('opentype');
    font-weight: 500;
    font-style: normal;
}

@font-face {
    font-family: 'Metropolis';
    src: url('../fonts/Metropolis-SemiBold.otf') format('opentype');
    font-weight: 600;
    font-style: normal;
}



@font-face {
    font-family: 'MyriadPro';
    src: url('../fonts/MyriadPro-Regular.otf') format('opentype');
    font-weight: 400;
    font-style: normal;
}


@font-face {
    font-family: 'Open Sans';
    src: url('../fonts/OpenSans-Regular.ttf') format('truetype');
    font-weight: 400;
    font-style: normal;
}

@font-face {
    font-family: 'Open Sans';
    src: url('../fonts/OpenSans-Semibold.ttf') format('truetype');
    font-weight: 600;
    font-style: normal;
}

@font-face {
    font-family: 'Open Sans';
    src: url('../fonts/OpenSans-Bold.ttf') format('truetype');
    font-weight: 700;
    font-style: normal;
}

@font-face {
    font-family: 'Trebuchet MS';
    src: url('../fonts/trebuc.ttf') format('truetype');
    font-weight: 400;
    font-style: normal;
}

:root {
    --primary-blue: #0A192F;
    --secondary-blue: #172A45;
    --metallic: #8892B0;
    --white: #E6F1FF;
    --accent: #64FFDA;
    --font-heading: 'Metropolis', sans-serif;
    --font-body: 'MyriadPro', sans-serif;
    --font-accent: 'Open Sans', sans-serif;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    margin: 0;
    padding: 0;
    color: var(--white);
    display: flex;
    flex-direction: column;
    min-height: 100vh;
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
}

*,
*::before,
*::after {
    box-sizing: border-box;
}

img {
    width: 100%;
    height: auto;
    display: flex;
}

/* ==================== MENU ==================== */

.menu-section {
    position: fixed;
    top: 0;
    left: 0;
    display: flex;
    align-items: center;
    justify-content: end;
    padding-right: 50px;
    flex-wrap: wrap;
    width: 100%;
    z-index: 12;
    /* background: rgba(10, 25, 47, 0.35); */
    transition: background 0.4s ease, box-shadow 0.4s ease;
}

.menu-section a {
    padding: 60px 15px;
    text-decoration: none;
    font-family: var(--font-heading);
    font-size: 13px;
    letter-spacing: 2px;
    color: var(--primary-blue);
    transition: opacity 0.3s ease;
}

.menu-section a:hover {
    opacity: 0.75;
}

.menu-section.scrolled {
    background: var(--secondary-blue);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
    padding-right: 50px;
    /* justify-content: space-between; */
}

.menu-section.scrolled a {
    padding: 25px 25px;
    color: var(--white);

}

.divider {
    color: var(--white);
    font-weight: 300;
    font-size: 9px;
    opacity: 0.5;
}

.hero {
    position: relative;
}


.header-logo {
    position: absolute;
    left: 30px;
    top: 25px;
    width: 180px;
    z-index: 1;
}

.hero-title {
    position: absolute;
    left: 30px;
    top: 50%;
    z-index: 1;
    color: var(--white);
    transform: translate(0, -50%);
}

.hero-title .title {
    font-family: var(--font-accent);
    font-size: 42px;
    line-height: 1.1;
    letter-spacing: 1.1;
    font-weight: 700;
    margin-bottom: 10px;
}

.hero-title .description {
    font-family: var(--font-accent);
    font-size: 16px;
    line-height: 1.1;
    letter-spacing: 1;
    font-weight: 700;
}


.wrapper-body {
    background-image: url(../images/body-bg.jpg);
    background-position: top;
    background-size: cover;
    background-repeat: no-repeat;
    height: auto;
    width: 100%;
    position: relative;
}

.wrapper-body::before {
    position: absolute;
    content: '';
    width: 100%;
    height: 10px;
    background-color: var(--white);
    top: 0;
    left: 0;
}

.gradient-card {
    background: linear-gradient(to bottom, #b4cdf978, #dee6f5a0, #b4cdf978);
    width: 100%;
    height: auto;
    border-radius: 16px;
    border: 1px solid #b4cdf9dc;
}


.why-this {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 30px;
    padding: 40px 100px;
}

.why-this .card {
    padding: 20px;
}

.why-this .card img {
    width: 120px;
    margin: 0 auto;
}

.why-this .card .title {
    font-size: 16px;
    font-weight: 600;
    font-family: var(--font-accent);
    color: var(--primary-blue);
    text-align: center;
    margin-bottom: 10px;
}

.why-this .card .description {
    font-size: 13px;
    font-weight: 400;
    font-family: var(--font-heading);
    color: var(--primary-blue);
    text-align: center;
}

.smart-control-product {
    padding: 40px 100px;
}

.smart-control-product .grid-wrap {
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
}

.smart-control-product .grid-wrap .card {
    padding: 25px 15px;
    width: calc((100% - 60px) / 3);
    border-radius: 12px;
    background-color: #FFFFFF50;
    box-shadow: rgba(0, 0, 0, 0.15) 0px 5px 15px 0px;
    height: auto;

}

.flex-card {
    display: flex;
    align-items: center;
}

.flex-img {
    width: 80px !important;
    margin: unset !important;
    margin: 0 20px !important;

}

.text-left {
    text-align: left !important;
}

.smart-control-product .grid-wrap .card img {
    width: 75%;
    height: auto;
    max-width: 90%;
    margin: 0 auto;
    margin-bottom: 20px;
}

.smart-control-product .grid-wrap .card .pr-name {
    font-size: 16px;
    font-family: var(--font-heading);
    font-weight: 600;
    color: #0273ca;
    text-align: center;
}


.explore {
    padding: 40px 100px;
}

.explore .title {
    text-align: center;
    width: 100%;
    /* margin-bottom: 25px; */
}

.explore .description {
    text-align: center;
    width: 100%;
    font-size: 13px;
    font-family: var(--font-accent);
    color: var(--primary-blue);
    margin-bottom: 25px;
    /* margin-bottom: 25px; */
}


.explore .grid-wrap {
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
}

.explore .grid-wrap .card {
    padding: 25px 15px;
    width: calc((100% - 90px) / 4);
    border-radius: 12px;
    background-color: #FFFFFF50;
    box-shadow: rgba(0, 0, 0, 0.15) 0px 5px 15px 0px;
    height: 100%;

}

.explore .grid-wrap .card img {
    width: auto;
    height: 70px;
    max-width: 90%;
    margin: 0 auto;
    margin-bottom: 20px;
}

.explore .grid-wrap .card .pr-name {
    font-size: 16px;
    font-family: var(--font-heading);
    font-weight: 600;
    color: #0273ca;
    margin-bottom: 10px;
}

.explore .grid-wrap .card .pr-use {
    font-size: 16px;
    font-family: var(--font-accent);
    font-weight: 600;
    color: var(--primary-blue);
    margin-bottom: 10px;
}

.explore .grid-wrap .card .pr-points {
    position: relative;
    font-size: 11px;
    font-family: var(--font-accent);
    font-weight: 400;
    color: var(--primary-blue);
    padding-left: 18px;
    margin-bottom: 5px;

}

.explore .grid-wrap .card .pr-points::before {
    position: absolute;
    content: '';
    background-image: url(../images/icons/tick.png);
    left: 0px;
    top: 2px;
    width: 12px;
    height: 12px;
    z-index: 1;
    background-position: center;
    background-size: contain;
    background-repeat: no-repeat;
}


.performance {
    padding: 40px 100px;
}

.performance .title {
    text-align: center;
    width: 100%;
    margin-bottom: 25px;
}

.performance .grid-wrap {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 30px;
}

.performance .card {
    display: flex;
    align-items: center;
    padding: 15px;
}

.performance .card img {
    width: 45px;
    margin-right: 10px;
}

.performance .card .content-title {
    font-size: 16px;
    font-weight: 400;
    font-family: var(--font-accent);
    color: var(--primary-blue);
    margin-bottom: 5px;
}

.performance .card .content-description {
    font-size: 12px;
    font-weight: 400;
    font-family: var(--font-accent);
    color: var(--primary-blue);
}

.craft-for-excellence {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    padding: 40px 100px;
}

.common-title {
    font-size: 32px;
    font-family: var(--font-accent);
    font-weight: 600;
    margin-bottom: 10px;
    color: var(--primary-blue);
}

.craft-for-excellence .description {
    font-size: 18px;
    font-family: var(--font-accent);
    font-weight: 400;
    color: var(--primary-blue);
    letter-spacing: 1px;
    line-height: 1.5;
}




/* footer */

.contact-us {
    padding: 40px 100px;
    /* background-color: #f5e7d0; */
    color: var(--white);
    /* background: linear-gradient(0deg, #96adab, #ffffff); */

}

.contact-us .wrap {
    display: flex;
    gap: 30px;
}

.contact-us .single-col {
    width: 33.33%;
}

.contact-us .single-col .footer-logo {
    /* margin: 20px auto; */
    width: 70%;
    display: block;
    margin-bottom: 10px;
}

.contact-us .single-col .mini-title {
    font-size: 13px;
    font-family: var(--font-heading);
    font-weight: 400;
    line-height: 1.2;
    letter-spacing: 1.2px;
    /* color: var(--primary-blue); */
    color: var(--white);
    margin-bottom: 10px;
}

.contact-us .single-col .sub-title {
    font-size: 24px;
    font-family: var(--font-heading);
    font-weight: 500;
    line-height: 1.2;
    letter-spacing: 1.3px;
    /* color: var(--primary-blue); */
    color: var(--white);
    margin-bottom: 15px;
}

.contact-us .mini-description {
    font-size: 11px;
    font-family: var(--font-heading);
    font-weight: 400;
    line-height: 1.6;
    letter-spacing: .9;
    /* color: var(--primary-blue); */
    color: var(--white);
    margin-bottom: 10px;
    text-align: justify;
}

.contact-us .single-col .form-group {
    width: 100%;
    margin-bottom: 4px;
    display: flex;
    flex-direction: column;
}

.contact-us .single-col .form-group label {
    margin-bottom: 0px !important;
    letter-spacing: .2px;
}

.contact-us .single-col .form-group input,
.contact-us .single-col .form-group textarea {
    font-size: 11px;
    font-family: var(--font-heading);
    font-weight: 400;
    line-height: 1.6;
    letter-spacing: 1px;
    color: var(--primary-blue);
    /* color: var(--white); */
    padding: 6px 8px;
    outline: none;
    border: 1px solid #ccc;
    border-radius: 4px;
    resize: none;
    width: 100%;
    background: #fff;
}

.error-message {
    background-color: #920c0c33;
    font-size: 12px;
    font-family: var(--font-heading);
    font-weight: 400;
    color: #fb3d3d;
    border: 1px solid #991f1f;
    padding: 8px 12px;
    border-radius: 8px;
    text-align: center;
}

.contact-us .single-col .form-group input:focus,
.contact-us .single-col .form-group textarea:focus {
    border-color: var(--primary-blue);
}

.contact-us .single-col .view-download-btn {
    width: 100%;
    background-color: var(--primary-blue);
    /* color: var(--metallic); */
    color: var(--white);
    font-size: 11px;
    font-family: var(--font-heading);
    font-weight: 400;
    line-height: 1.2;
    letter-spacing: .4px;
    text-align: center;
    padding: 10px;
    cursor: pointer;
    margin-bottom: 10px;
}

.contact-us .single-col .submit-btn {
    width: max-content;
    background-color: var(--primary-blue);
    /* color: var(--metallic); */
    color: var(--white);
    font-size: 11px;
    font-family: var(--font-heading);
    font-weight: 400;
    line-height: 1.2;
    letter-spacing: .4px;
    text-align: center;
    padding: 5px 30px 5px 10px;
    cursor: pointer;
    position: relative;
    margin-bottom: 10px;
    border: 0px;
    outline: 0px;
}

.contact-us .single-col .submit-btn:hover {
    opacity: 0.85;
}

.contact-us .single-col .submit-btn::before {
    position: absolute;
    content: '';
    width: 8px;
    height: 8px;
    border: 1px solid var(--metallic);
    z-index: 1;
    right: 10px;
    top: 11px;
    transform: rotate(45deg);
    transform-origin: top right;
    border-left: 0px;
    border-bottom: 0px;
}

.contact-us .whatsapp-footer {
    width: 100%;
    display: flex;
    justify-content: flex-end;
    align-items: center;
    margin-top: 20px;
    /* gap: 30px; */
}

.contact-us .whatsapp-footer .whatsapp-content {
    display: flex;
    align-items: center;
    text-decoration: none;
    color: var(--primary-blue);
    width: 100%;
    margin-left: calc(33.333% + 10px);
}

.contact-us .whatsapp-footer .whatsapp-icon {
    width: 20px;
    height: 20px;
    object-fit: cover;
    margin-right: 5px;
    flex-shrink: 0;
}

.contact-us .whatsapp-footer .whatsapp-text {
    margin-bottom: 0px;
}

.bottom-footer {
    background-color: #000000;
    padding: 20px;
    text-align: center;
    font-size: 9px;
    font-weight: 400;
    color: var(--white);
    font-family: var(--font-heading);
}

.bottom-footer a {
    text-decoration: none;
    color: var(--white);
}

.d-lfex-footer-description {
    display: flex;
    /* justify-content: space-between; */
}

.d-lfex-footer-description a {
    text-decoration: none;
    padding: 8px 12px;
    border: 1px solid var(--primary-blue);
    border-radius: 18px;
    line-height: 0;
    margin: 0;
    height: 40px;
    display: flex;
    align-items: center;
    margin-left: 20px;
    width: 180px;
    color: var(--white);
}

.d-lfex-footer-description img {
    width: 24px;
    height: auto;
    margin-right: 10px;
}

/* footer */


.smart-control {
    position: relative;
}

.smart-control .header {
    position: absolute;
    right: 100px;
    top: 40px;
}

.smart-control .title {
    font-size: 32px;
    font-weight: 500;
    font-family: var(--font-heading);
    color: var(--primary-blue);
    text-align: right;
}

.smart-control .description {
    font-size: 16px;
    font-weight: 400;
    font-family: var(--font-heading);
    color: var(--primary-blue);
    text-align: right;
    margin-top: 10px;
}


.smart-control .smart-features {
    position: absolute;
    width: 70%;
    left: 15%;
    bottom: 40px;
    background-color: #ffffff80;
    border-radius: 16px;
    /* height: 100px; */
    display: grid;
    grid-template-columns: 1fr 1fr 1fr 1fr;
    padding: 20px 100px;
}

.smart-control .smart-features .item .title {
    text-align: center;
    font-size: 14px;
    font-weight: 400;
    color: #0273ca;
    font-family: var(--font-body);
    margin-top: 8px;
}

.smart-control .smart-features .item img {
    height: 60px;
    width: auto;
    margin: 0 auto;
}

@media (max-width: 1024px) {
    .contact-us {
        padding: 40px 40px;
    }
}


@media (max-width: 992px) {
    .explore .grid-wrap .card {
        width: calc((100% - 60px) / 3);
    }

    .flex-img {
        width: 56px !important;
    }

    .smart-control .smart-features {
        padding: 20px;
        bottom: 30px;
    }

    .smart-control .smart-features .item img {
        height: 50px;
    }

    .smart-control .title {
        font-size: 28px;
    }
}


@media (min-width: 768px) {
    .d-sm-block {
        display: none;
    }
}

@media (max-width: 768px) {

    .d-sm-none {
        display: none !important;
    }

    .d-sm-block {
        display: block;
    }

    .menu-section {
        padding: 20px 10px;
        padding-right: 10px !important;
        gap: 0;
        justify-content: space-around;
    }

    .menu-section a {
        padding: 12px 6px;
        font-size: 10px;
        letter-spacing: 0.8px;
        white-space: nowrap;
    }

    .menu-section.scrolled a {
        padding: 20px 0px;
    }

    .divider {
        display: none;
    }


    .header-logo {
        width: 140px;
        height: auto;
        left: 20px;
        transform: translateX(0%);
        top: 80px;
        overflow: visible;
        border-radius: 0;
    }

    .hero-title {
        transform: translate(0, 50%);
    }

    .hero-title .title {
        font-size: 36px;
    }

    .why-this {
        grid-template-columns: 1fr 1fr;
        padding: 40px 40px;
    }

    .craft-for-excellence {
        grid-template-columns: 1fr;
        padding: 40px 40px;
    }

    .common-title {
        font-size: 28px;
    }

    .craft-for-excellence .description {
        font-size: 16px;
    }

    .performance {
        padding: 40px 40px;
    }

    .explore {
        padding: 40px 40px;
    }

    .smart-control-product {
        padding: 40px 40px;
    }

    .smart-control-product .grid-wrap .card {
        width: calc((100% - 30px) / 2);

    }

    .flex-img {
        width: 73px !important;
    }

    .performance .grid-wrap {
        display: grid;
        grid-template-columns: 1fr 1fr;
    }

    .why-this .card img {
        width: 80px;
    }

    .explore .grid-wrap .card {
        width: calc((100% - 30px) / 2);
    }


    .contact-us .single-col .footer-logo {
        margin: 20px auto;
    }

    .contact-us {
        padding: 40px 20px;
    }

    .contact-us .wrap {
        flex-direction: column;
        gap: 30px;
    }

    .contact-us .single-col {
        width: 100%;
    }

    .contact-us .whatsapp-footer {
        justify-content: center;
    }

    .contact-us .whatsapp-footer .whatsapp-content {
        width: 100%;
        justify-content: center;
    }

    .smart-control .header {
        right: 40px;
        width: calc(100% - 80px);
    }

    .smart-control .smart-features {
        width: calc(100% - 80px);
        left: 40px;
    }


}

@media (min-width: 576px) {
    .d-xs-block {
        display: none;
    }
}

@media (max-width: 576px) {

    .d-xs-none {
        display: none !important;
    }

    .d-xs-block {
        display: block;
    }

    .menu-section a {
        padding: 8px 0px;
        font-size: 10px;
        letter-spacing: 0px;
        white-space: nowrap;
    }

    .hero-title {
        transform: translate(0, 65%);
    }

    .hero-title .title {
        font-size: 32px;
    }

    .hero-title .description {
        font-size: 13px;
    }

    .why-this {
        grid-template-columns: 1fr;
    }

    .why-this .card img {
        width: 60px;
    }

    .common-title {
        font-size: 26px;
    }

    .craft-for-excellence .description {
        font-size: 14px;
    }

    .performance .grid-wrap {
        display: grid;
        grid-template-columns: 1fr;
    }

    .explore .grid-wrap .card {
        width: calc((100% - 0px) / 1);
    }

    .smart-control-product .grid-wrap .card {
        width: calc((100% - 0px) / 1);

    }

    .smart-control .smart-features {
        width: calc(100% - 40px);
        left: 20px;
    }

    .smart-control .smart-features {
        padding: 10px;
    }

    .smart-control .smart-features .item .title {
        font-size: 12px;
    }

    .smart-control .title {
        font-size: 26px;
    }

    .smart-control .description {
        font-size: 12px;
    }
}