/* =========================
   HEADER
========================= */

.main-header {
    width: 100%;
    background: #9bb0dc;
    position: relative;
    z-index: 9999;
}



.navbar {
    min-height: 132px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}


/* =========================
   LOGO
========================= */


.navbar-logo img {
  width: 100%;
  height: 92px;
  object-fit: contain;
  background: #fff;
  padding: 10px;
}


/* =========================
   NAVIGATION
========================= */

.main-nav {
    margin-left: auto;
}

.nav-list {
    list-style: none;
    margin: 0;
    padding: 0;

    display: flex;
    align-items: center;
    gap: 44px;
}

.nav-list>li {
    position: relative;
}

.nav-list>li>a {
    min-width: 140px;
    height: 42px;
    padding: 0 22px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #0a2d50;
    color: #fff;
    text-decoration: none;
    border-radius: 7px;
    font-family: "Manrope", sans-serif;
    font-size: 15px;
    font-weight: 700;
    white-space: nowrap;
    transition: background .3s ease, transform .3s ease;
}

.nav-list>li>a:hover {
    background: #234798;
    transform: translateY(-2px);
}


/* =========================
   ACTIVE MENU
========================= */





/* =========================
   ARROW
========================= */

.dropdown-arrow {
    display: none;
    margin-left: 8px;
    font-size: 20px;
    line-height: 1;
}


/* =========================
   SUBMENU
========================= */

.submenu {
    position: absolute;

    top: calc(100% - 1px);
    left: 0;

    min-width: 275px;

    margin: 0;
    padding: 0;

    list-style: none;

    background: #0b203d;

    border-radius: 0 0 7px 7px;

    overflow: hidden;

    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);

    transition:
        opacity .25s ease,
        visibility .25s ease,
        transform .25s ease;

    box-shadow: 0 15px 30px rgba(0, 0, 0, .18);
}


/* Desktop hover */

@media (min-width: 992px) {

    .has-submenu:hover>.submenu {
        opacity: 1;
        visibility: visible;
        transform: translateY(0);
    }

}


/* Submenu item */

.submenu li {
    width: 100%;
}

.submenu li a {
    display: flex;
    align-items: center;

    min-height: 64px;
    padding: 15px 22px;

    color: #fff;
    text-decoration: none;

    font-family: "Manrope", sans-serif;
    font-size: 16px;
    font-weight: 600;

    border-bottom: 1px solid rgba(255, 255, 255, .08);

    transition:
        background .25s ease,
        padding-left .25s ease;
}

.submenu li:last-child a {
    border-bottom: 0;
}

.submenu li a:hover {
    background: #3159b7;
    padding-left: 30px;
}


/* =========================
   QUOTATION BUTTON
========================= */

.nav-list>li:last-child>a {
    min-width: 235px;
}


/* =========================
   MOBILE TOGGLE
========================= */

.menu-toggle {
    display: none;

    width: 48px;
    height: 44px;

    border: 0;
    border-radius: 6px;

    background: #3159b7;

    padding: 9px;

    cursor: pointer;
}

.menu-toggle span {
    display: block;

    width: 100%;
    height: 3px;

    margin: 5px 0;

    background: #fff;

    border-radius: 10px;

    transition: .3s ease;
}


/* =========================
   TABLET
========================= */

@media (max-width: 1400px) {

    .main-header .container {
        padding: 0 25px;
    }

    .navbar {
        gap: 20px;
    }

    .nav-list {
        gap: 18px;
    }

    .nav-list>li>a {
        min-width: auto;
        padding: 0 22px;
        font-size: 16px;
    }

    .nav-list>li:last-child>a {
        min-width: auto;
    }

    .navbar-logo {
        width: 190px;
        height: 62px;
    }

}


/* =========================
   TABLET / MOBILE
========================= */

@media (max-width: 991px) {

    .main-header .container {
        padding: 0 20px;
    }

    .navbar {
        min-height: 95px;
    }

    .navbar-logo {
        width: 180px;
        height: 58px;
    }

    .menu-toggle {
        display: block;
    }

    .main-nav {
        position: absolute;

        top: 100%;
        left: 0;
        right: 0;

        width: 100%;

        padding: 15px 20px 25px;

        background: #9bb0dc;

        opacity: 0;
        visibility: hidden;

        transform: translateY(-10px);

        transition: .3s ease;
    }

    .main-nav.active {
        opacity: 1;
        visibility: visible;
        transform: translateY(0);
    }

    .nav-list {
        width: 100%;

        display: flex;
        flex-direction: column;
        align-items: stretch;

        gap: 10px;
    }

    .nav-list>li {
        width: 100%;
    }

    .nav-list>li>a {
        width: 100%;
        min-width: 0;
        height: 52px;

        justify-content: space-between;

        padding: 0 20px;

        font-size: 16px;
    }

    .dropdown-arrow {
        display: inline-block;
    }


    /* Mobile submenu */

    .submenu {
        position: static;

        width: 100%;
        min-width: 0;

        margin-top: 5px;

        border-radius: 5px;

        display: none;

        opacity: 1;
        visibility: visible;

        transform: none;

        box-shadow: none;
    }

    .has-submenu.open>.submenu {
        display: block;
    }

    .submenu li a {
        min-height: 48px;
        padding: 12px 20px;

        font-size: 14px;
    }

    .submenu li a:hover {
        padding-left: 25px;
    }

}


/* =========================
   SMALL MOBILE
========================= */

@media (max-width: 575px) {

    .main-header .container {
        padding: 0 15px;
    }

    .navbar {
        min-height: 80px;
    }

    .navbar-logo {
        width: 150px;
        height: 50px;
    }

    .menu-toggle {
        width: 44px;
        height: 42px;
    }

    .main-nav {
        padding: 12px 15px 20px;
    }

    .nav-list>li>a {
        height: 50px;
        font-size: 14px;
    }

}


/* =========================================================
   METRAF HERO
========================================================= */

.metraf-hero {
    position: relative;
    width: 100%;
    min-height: 100vh;

    overflow: hidden;

    display: flex;
    align-items: center;
}


/* =========================================================
   VIDEO
========================================================= */

.hero-video {
    position: absolute;
    inset: 0;

    width: 100%;
    height: 100%;

    z-index: -3;
}

.hero-video video {
    width: 100%;
    height: 100%;

    display: block;

    object-fit: cover;
    object-position: center center;
}


/* =========================================================
   OVERLAY
========================================================= */

.hero-overlay {
    position: absolute;
    inset: 0;

    z-index: -2;

    background:
        linear-gradient(90deg,
            rgba(0, 0, 0, .70) 0%,
            rgba(0, 0, 0, .52) 35%,
            rgba(0, 0, 0, .22) 68%,
            rgba(0, 0, 0, .18) 100%);
}


/* =========================================================
   CONTAINER
========================================================= */

.metraf-hero .container {
    width: 100%;
    max-width: 1600px;

    margin: 0 auto;

    padding: 100px 60px;
}


/* =========================================================
   CONTENT
========================================================= */
.hero-content {
    width: 840px;
    max-width: 100%;
}


/* =========================================================
   HEADING
========================================================= */

.hero-content h1 {
    margin: 0 0 22px;

    color: #fff;

    font-family: "Manrope", sans-serif;

    font-size: clamp(48px, 4.4vw, 72px);
    font-weight: 800;

    line-height: .99;
    letter-spacing: -2px;

    text-shadow:
        0 3px 12px rgba(0, 0, 0, .35);
}

.hero-content h1 span {
    display: block;
}

.hero-content h1 strong {
    display: block;

    margin-top: 12px;

    color: #0799e5;

    font-weight: 800;

    text-shadow:
        0 3px 15px rgba(0, 0, 0, .3);
}


/* =========================================================
   DESCRIPTION
========================================================= */

.hero-description {
    max-width: 720px;

    margin: 0 0 32px;

    color: #fff;

    font-family: "Manrope", sans-serif;

    font-size: 20px;
    font-weight: 500;

    line-height: 1.55;

    text-shadow:
        0 2px 8px rgba(0, 0, 0, .5);
}


/* =========================================================
   FEATURES
========================================================= */

.hero-features {
    display: flex;
    flex-wrap: wrap;

    gap: 18px;

    margin-bottom: 38px;
}

.hero-feature {
    min-height: 55px;

    padding: 0 20px;

    display: flex;
    align-items: center;
    gap: 8px;

    border: 1px solid rgba(255, 255, 255, .35);

    border-radius: 10px;

    background: rgba(30, 30, 30, .55);

    backdrop-filter: blur(7px);
    -webkit-backdrop-filter: blur(7px);

    color: #fff;

    font-family: "Manrope", sans-serif;

    font-size: 15px;
    font-weight: 700;

    transition: all .3s ease;
}

.hero-feature:hover {
    background: rgba(7, 153, 229, .75);

    border-color: #0799e5;

    transform: translateY(-3px);
}

.hero-feature span {
    font-size: 15px;
}


/* =========================================================
   BUTTONS
========================================================= */

.hero-buttons {
    display: flex;
    align-items: center;
    gap: 15px;
}

.hero-btn {
    min-width: 270px;
    min-height: 72px;

    padding: 0 35px;

    display: inline-flex;
    align-items: center;
    justify-content: center;

    border-radius: 12px;

    font-family: "Manrope", sans-serif;

    font-size: 18px;
    font-weight: 800;

    text-decoration: none;

    letter-spacing: .3px;

    transition: all .3s ease;
}


/* Primary */

.hero-btn-primary {
    color: #fff;

 background: linear-gradient(135deg, #0b2b4d, #176aae);

    box-shadow:
        0 12px 30px rgba(0, 120, 220, .25);
}

.hero-btn-primary:hover {
    color: #fff;

    transform: translateY(-4px);

    box-shadow:
        0 18px 35px rgba(0, 120, 220, .35);
}


/* Outline */

.hero-btn-outline {
    color: #fff;

    border: 2px solid #fff;

    background: rgba(0, 0, 0, .15);
}

.hero-btn-outline:hover {
    color: #111;

    background: #fff;

    transform: translateY(-4px);
}


/* =========================================================
   SEND ENQUIRY
========================================================= */

.send-enquiry {
    position: fixed;

    right: 0;
    top: 50%;

    width: 58px;
    height: 150px;

    transform: translateY(-50%);

    display: flex;
    align-items: center;
    justify-content: center;

    background: #0a2d50;

    border-radius: 10px 0 0 10px;

    color: #fff;

    text-decoration: none;

    box-shadow:
        0 5px 20px rgba(0, 0, 0, .25);

    z-index: 10;
}

.send-enquiry span {
    font-family: "Manrope", sans-serif;

    font-size: 16px;
    font-weight: 600;

    white-space: nowrap;

    transform: rotate(90deg);
}


/* =========================================================
   FLOATING WHATSAPP
========================================================= */

.floating-whatsapp,
.floating-phone {
    position: fixed;

    left: 32px;

    width: 65px;
    height: 65px;

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 50%;

    color: #fff;

    text-decoration: none;

    z-index: 999;

    box-shadow:
        0 7px 20px rgba(0, 0, 0, .25);

    transition: transform .3s ease;
}

.floating-whatsapp:hover,
.floating-phone:hover {
    color: #fff;

    transform: scale(1.08);
}

.floating-whatsapp {
    bottom: 285px;

    background: #20d466;

    font-size: 31px;
}

.floating-phone {
    bottom: 205px;

    background: #2863bd;

    font-size: 24px;
}


/* =========================================================
   LANGUAGE
========================================================= */

.language-selector {
    position: fixed;

    right: 65px;
    bottom: 130px;

    min-width: 105px;
    height: 48px;

    padding: 0 12px;

    display: flex;
    align-items: center;
    justify-content: center;

    gap: 9px;

    background: #fff;

    border-radius: 4px;

    color: #333;

    font-family: "Manrope", sans-serif;

    font-size: 17px;

    z-index: 999;

    box-shadow:
        0 5px 15px rgba(0, 0, 0, .15);
}

.language-arrow {
    font-size: 17px;
}


/* =========================================================
   LARGE TABLET
========================================================= */

@media (max-width: 1200px) {

    .metraf-hero .container {
        padding-left: 45px;
        padding-right: 80px;
    }

    .hero-content {
        width: 680px;
    }

    .hero-content h1 {
        font-size: 58px;
    }

    .hero-description {
        font-size: 18px;
    }

}


/* =========================================================
   TABLET
========================================================= */

@media (max-width: 991px) {

    .metraf-hero {
        min-height: 800px;
    }

    .metraf-hero .container {
        padding: 100px 35px 80px;
    }

    .hero-content {
        width: 100%;
        max-width: 700px;
    }

    .hero-content h1 {
        font-size: clamp(45px, 7vw, 62px);
    }

    .hero-description {
        font-size: 17px;
    }

    .hero-features {
        gap: 10px;
    }

    .hero-feature {
        min-height: 48px;
        padding: 0 14px;

        font-size: 13px;
    }

    .hero-btn {
        min-width: 230px;
        min-height: 62px;
    }

    .floating-whatsapp,
    .floating-phone {
        left: 20px;

        width: 55px;
        height: 55px;
    }

    .floating-whatsapp {
        bottom: 150px;
    }

    .floating-phone {
        bottom: 85px;
    }

    .language-selector {
        right: 20px;
        bottom: 30px;
    }

}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 767px) {

    .metraf-hero {
        min-height: 760px;

        align-items: center;
    }

    .hero-video video {
        object-position: 60% center;
    }

    .hero-overlay {
        background:
            linear-gradient(90deg,
                rgba(0, 0, 0, .78),
                rgba(0, 0, 0, .58));
    }

    .metraf-hero .container {
        padding: 90px 20px 80px;
    }

    .hero-content {
        max-width: 100%;
    }

    .hero-content h1 {
        font-size: 42px;

        line-height: 1.03;

        letter-spacing: -1.2px;
    }

    .hero-content h1 strong {
        margin-top: 8px;
    }

    .hero-description {
        font-size: 15px;

        line-height: 1.5;

        margin-bottom: 25px;
    }

    .hero-features {
        display: grid;

        grid-template-columns: 1fr 1fr;

        gap: 8px;

        margin-bottom: 28px;
    }

    .hero-feature {
        min-height: 48px;

        padding: 0 10px;

        font-size: 11px;

        white-space: nowrap;
    }

    .hero-buttons {
        flex-direction: column;

        align-items: stretch;

        gap: 10px;
    }

    .hero-btn {
        width: 100%;

        min-width: 0;

        min-height: 58px;

        font-size: 15px;
    }

    .send-enquiry {
        width: 45px;
        height: 125px;
    }

    .send-enquiry span {
        font-size: 13px;
    }

    .floating-whatsapp,
    .floating-phone {
        width: 50px;
        height: 50px;

        left: 12px;
    }

    .floating-whatsapp {
        bottom: 105px;

        font-size: 25px;
    }

    .floating-phone {
        bottom: 48px;

        font-size: 19px;
    }

    .language-selector {
        right: 12px;
        bottom: 15px;

        min-width: 85px;
        height: 42px;

        font-size: 14px;
    }

}


/* =========================================================
   SMALL MOBILE
========================================================= */

@media (max-width: 480px) {

    .metraf-hero {
        min-height: 720px;
    }

    .metraf-hero .container {
        padding: 85px 16px 65px;
    }

    .hero-content h1 {
        font-size: 35px;
    }

    .hero-description {
        font-size: 14px;
    }

    .hero-features {
        grid-template-columns: 1fr;
    }

    .hero-feature {
        justify-content: center;

        font-size: 12px;
    }

    .send-enquiry {
        display: none;
    }

}








/* =========================================================
   METRAF MAIN SECTION - LEFT TO RIGHT OVERLAY ANIMATION
========================================================= */




/* =========================================================
   MOVING BLUE / WHITE OVERLAY
========================================================= */

.metraf-main-section::before {
    content: "";

    position: absolute;

    top: 0;
    left: -100%;

    width: 70%;
    height: 100%;

    z-index: 0;

    pointer-events: none;

    /*
     * Soft horizontal overlay
    */
    background: linear-gradient(90deg,
            transparent 0%,
            rgba(255, 255, 255, 0.10) 15%,
            rgba(255, 255, 255, 0.65) 35%,
            rgba(210, 226, 247, 0.75) 50%,
            rgba(255, 255, 255, 0.45) 65%,
            rgba(190, 214, 242, 0.18) 80%,
            transparent 100%);

    filter: blur(30px);

    animation: metrafOverlayMove 10s linear infinite;
}


/* =========================================================
   SECOND SOFT BLUE OVERLAY
========================================================= */

.metraf-main-section::after {
    content: "";

    position: absolute;

    top: 0;
    left: -120%;

    width: 55%;
    height: 100%;

    z-index: 0;

    pointer-events: none;

    background: linear-gradient(90deg,
            transparent 0%,
            rgba(167, 195, 230, 0.10) 20%,
            rgba(135, 170, 218, 0.28) 50%,
            rgba(206, 224, 246, 0.18) 75%,
            transparent 100%);

    filter: blur(45px);

    animation: metrafOverlayMoveTwo 30s linear infinite;
}


/* =========================================================
   OVERLAY MOVE - LEFT TO RIGHT
========================================================= */

@keyframes metrafOverlayMove {

    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(300%);
    }
}


@keyframes metrafOverlayMoveTwo {

    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(400%);
    }
}


/* =========================================================
   KEEP CONTENT ABOVE BACKGROUND
========================================================= */

.metraf-main-section>* {
    position: relative;
    z-index: 1;
}

.metraf-main-section {
    position: relative;
    isolation: isolate;
    overflow: hidden;

    background: linear-gradient(
        90deg,
        #88a5d5,
        #b8cae8,
        #ffffff,
        #c4d3eb,
        #8ea9d7,
        #ffffff,
        #8ea9d7
    );

    background-size: 400% 100%;

    animation: metrafLiveBackground 30s linear infinite;
}


@keyframes metrafLiveBackground {

    0% {
        background-position: 0% 50%;
    }

    50% {
        background-position: 100% 50%;
    }

    100% {
        background-position: 0% 50%;
    }
}


.metraf-main-section > * {
    position: relative;
    z-index: 2;
}
/* =========================================================
   GLOBAL
========================================================= */

.metraf-about,
.metraf-products {
    font-family: "Manrope", sans-serif;
}

.metraf-about .container,
.metraf-products .container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding-left: 25px;
    padding-right: 25px;
}


/* =========================================================
   ABOUT SECTION
========================================================= */

/* =========================================================
   METRAF ABOUT - SCROLLING GRADIENT BACKGROUND
========================================================= */

.metraf-about {
    position: relative;
    padding: 75px 0 65px;

}

/* =========================================================
   MAIN SECTION
   ABOUT + PRODUCTS COMMON BACKGROUND
========================================================= */


/* =========================================================
   ABOUT
========================================================= */

.metraf-main-section .metraf-about {
    position: relative;

    padding: 75px 0 65px;
}


/* =========================================================
   PRODUCTS
========================================================= */

.metraf-main-section .metraf-products {
  position: relative;
  padding: 0 0 60px 0;
}


.metraf-main-section::before {
    content: "";

    position: absolute;
    inset: 0;

    z-index: 0;

    background: linear-gradient(90deg,
            #ffffff 0%,
            #ffffff 15%,
            #f8fbff 30%,
            #edf5ff 45%,
            #dcecff 60%,
            #c8ddf7 78%,
            #aecaf0 100%);

    pointer-events: none;
}

.metraf-main-section>section {
    position: relative;
    z-index: 1;
}

.metraf-main-section .metraf-about,
.metraf-main-section .metraf-products {
    background: transparent !important;
}

/* =========================================================
   SECTION HEADING
========================================================= */

.section-heading {
    text-align: center;
    margin-bottom: 28px;
}

.section-label {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;

    margin-bottom: 15px;
}

.section-label span {
    width: 38px;
    height: 5px;

    background: #3768b5;

    position: relative;
}

.section-label span::after {
    content: "";

    position: absolute;

    top: 0;
    right: -5px;

    width: 5px;
    height: 5px;

    background: #fff;
}

.section-label strong {
    color: #172036;

    font-size: 18px;
    font-weight: 800;
}

.section-heading h2 {
    margin: 0;

    color: #111a2d;

    font-size: 32px;
    font-weight: 800;

    letter-spacing: -1px;
}


/* =========================================================
   ABOUT CONTENT
========================================================= */

.about-content {
    max-width: 1080px;
    margin: 0 auto;

    text-align: center;

    color: #5f6878;

    font-size: 16px;
    line-height: 1.65;
}

.about-content p {
    margin: 0 0 8px;
}

.about-content strong {
    color: #414a5a;
    font-weight: 800;
}

.about-content a {
    color: #3768b5;

    font-weight: 800;

    text-decoration: underline;
}

.know-more {
    display: inline-block;

    margin-top: 4px;

    color: #3768b5 !important;

    font-size: 14px;
    font-weight: 800;

    text-decoration: underline;
}


/* =========================================================
   ABOUT FEATURES
========================================================= */

.about-features {
    width: max-content;
    max-width: 100%;

    margin: 25px auto 0;

    display: flex;
    flex-direction: column;

    gap: 13px;
}

.about-feature {
    display: flex;
    align-items: center;
    gap: 12px;

    color: #293247;

    font-size: 13px;
    font-weight: 600;
}

.check-icon {
    width: 16px;
    height: 16px;

    display: inline-flex;
    align-items: center;
    justify-content: center;

    border: 1.5px solid #3175ff;

    border-radius: 50%;

    color: #3175ff;

    font-size: 8px;

    flex-shrink: 0;
}


/* =========================================================
   PRODUCTS SECTION
========================================================= */

.metraf-products {
    padding: 50px 0 100px;

    background:
        linear-gradient(180deg,
            #fff 0%,
            #fff 45%,
            #f1f5fb 100%);
}


/* =========================================================
   PRODUCT HEADING
========================================================= */

.products-heading {
    text-align: center;

    margin-bottom: 38px;
}

.products-heading h2 {
    margin: 0 0 8px;

    color: #202020;

    font-size: 27px;
    font-weight: 800;

    letter-spacing: -.8px;
}

.products-heading p {
    margin: 0;

    color: #7b7f85;

    font-size: 16px;
}


/* =========================================================
   PRODUCT GRID
========================================================= */

.product-grid {
    display: grid;

    grid-template-columns: repeat(3, 1fr);

    gap: 25px;
}


/* =========================================================
   PRODUCT CARD
========================================================= */

.product-card {
    overflow: hidden;

    background: #fff;

    border-radius: 11px;

    box-shadow:
        0 8px 25px rgba(24, 45, 75, .08);

    transition:
        transform .35s ease,
        box-shadow .35s ease;

    display: flex;
    flex-direction: column;
}

.product-card:hover {
    transform: translateY(-7px);

    box-shadow:
        0 18px 40px rgba(24, 45, 75, .15);
}


/* =========================================================
   PRODUCT IMAGE
========================================================= */

.product-image {
    position: relative;

    width: 100%;
    height: 255px;

    overflow: hidden;

    background: #eee;
}

.product-image::after {
    content: "";

    position: absolute;
    inset: 0;

    background:
        linear-gradient(180deg,
            transparent 65%,
            rgba(0, 0, 0, .06));

    pointer-events: none;
}

.product-image img {
    width: 100%;
    height: 100%;

    display: block;

    object-fit: cover;

    transition: transform .5s ease;
}

.product-card:hover .product-image img {
    transform: scale(1.06);
}


/* =========================================================
   PRODUCT BODY
========================================================= */

.product-body {
    padding: 17px 20px 20px;

    display: flex;
    flex-direction: column;

    flex: 1;
}

.product-body h3 {
    margin: 0 0 8px;

    color: #202020;

    font-size: 17px;
    font-weight: 800;
}

.product-body p {
    margin: 0;

    color: #777;

    font-size: 16px;
    line-height: 1.55;

    flex: 1;
}


/* =========================================================
   PRODUCT BUTTON
========================================================= */

.product-btn {
    width: max-content;
    margin-top: 15px;
    padding: 9px 16px;
    display: inline-flex;
    align-items: center;
    gap: 5px;
    border-radius: 5px;
    background: #0a2d50;
    color: #fff;
    font-size: 11px;
    font-weight: 800;
    text-decoration: none;
    transition:
        background .3s ease,
        transform .3s ease;
}

.product-btn:hover {
    background: #17459f;
    color: #fff;
    transform: translateX(3px);
}

.product-btn span {
    font-size: 14px;
}


/* =========================================================
   TABLET
========================================================= */

@media (max-width: 991px) {

    .metraf-about {
        padding-top: 60px;
    }

    .section-heading h2 {
        font-size: 29px;
    }

    .products-heading h2 {
        font-size: 25px;
    }

    .product-grid {
        grid-template-columns: repeat(2, 1fr);
    }

}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 767px) {

    .metraf-about .container,
    .metraf-products .container {
        padding-left: 18px;
        padding-right: 18px;
    }

    .metraf-about {
        padding: 50px 0 40px;
    }

    .section-heading {
        margin-bottom: 22px;
    }

    .section-label {
        margin-bottom: 10px;
    }

    .section-label strong {
        font-size: 16px;
    }

    .section-label span {
        width: 28px;
        height: 4px;
    }

    .section-heading h2 {
        font-size: 27px;
    }

    .about-content {
        font-size: 13px;
        line-height: 1.65;
    }

    .about-content p {
        margin-bottom: 12px;
    }

    .about-features {
        width: 100%;
        align-items: flex-start;

        padding-left: 15px;

        gap: 12px;
    }

    .about-feature {
        font-size: 12px;
    }


    /* Products */

    .metraf-products {
        padding: 40px 0 65px;
    }

    .products-heading {
        margin-bottom: 25px;
    }

    .products-heading h2 {
        font-size: 23px;
        line-height: 1.25;
    }

    .products-heading p {
        font-size: 12px;
        line-height: 1.6;
    }

    .product-grid {
        grid-template-columns: 1fr;
        gap: 18px;
    }

    .product-image {
        height: 190px;
    }

    .product-body {
        padding: 17px 18px 19px;
    }

    .product-body h3 {
        font-size: 17px;
    }

    .product-body p {
        font-size: 12px;
    }

}


/* =========================================================
   SMALL MOBILE
========================================================= */

@media (max-width: 480px) {

    .section-heading h2 {
        font-size: 24px;
    }

    .products-heading h2 {
        font-size: 21px;
    }

    .product-image {
        height: 180px;
    }

}






/* =========================================================
   HEADING
========================================================= */

.expertise-heading {
    text-align: center;
    margin-bottom: 78px;
    z-index: 1;
    position: relative;
}

.expertise-heading h2 {
    margin: 0 0 20px;

    color: #17233a;

    font-size: 32px;

    font-weight: 800;

    line-height: 1.15;

    letter-spacing: -1.5px;
}

.expertise-heading p {
    margin: 0;

    color: #667085;

    font-size: 18px;

    font-weight: 500;

    line-height: 1.55;
}


/* =========================================================
   GRID
========================================================= */
.expertise-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 36px;
    margin-bottom: 60px;
}


/* =========================================================
   CARD
========================================================= */

.expertise-card {
    position: relative;

    min-height: 202px;

    padding: 18px 30px 25px 32px;

    display: flex;
    flex-direction: column;

    background: #ffffff;

    border-radius: 0 17px 17px 17px;

    /*
     * Blue left border exactly like screenshot
     */
    border-left: 5px solid #285bc0;

    box-shadow:
        0 12px 28px rgba(48, 75, 125, 0.10);

    transition:
        transform 0.35s ease,
        box-shadow 0.35s ease;
}


/* =========================================================
   CARD HOVER
========================================================= */

.expertise-card:hover {
    transform: translateY(-7px);

    box-shadow:
        0 20px 40px rgba(42, 70, 120, 0.18);
}


/* =====================
====================================
   ICON
========================================================= */

.expertise-icon {
    width: 48px;
    height: 48px;

    display: flex;
    align-items: center;
    justify-content: center;

    margin-bottom: 3px;

    border-radius: 12px;
    background: #e7ebf0;

    font-size: 27px;

    line-height: 1;

    flex-shrink: 0;
}


/* =========================================================
   CARD TITLE
========================================================= */

.expertise-card h3 {
    margin: 0 0 14px;

    color: #172033;

    font-size: 20px;

    font-weight: 800;

    line-height: 1.15;

    letter-spacing: -0.7px;
}


/* =========================================================
   CARD DESCRIPTION
========================================================= */

.expertise-card p {
    max-width: 285px;

    margin: 0;

    color: #68738a;

    font-size: 13px;

    font-weight: 500;

    line-height: 1.65;
}


/* =========================================================
   TABLET - LARGE
========================================================= */

@media (max-width: 1200px) {

    .industrial-expertise {
        padding: 65px 0 80px;
    }

    .expertise-heading {
        margin-bottom: 60px;
    }

    .expertise-heading h2 {
        font-size: 38px;
    }

    .expertise-heading p {
        font-size: 18px;
    }

    .expertise-grid {
        gap: 22px;
    }

    .expertise-card {
        padding: 18px 22px 25px 25px;
    }

    .expertise-card h3 {
        font-size: 22px;
    }

    .expertise-card p {
        font-size: 14px;
    }

}


/* =========================================================
   TABLET
========================================================= */

@media (max-width: 991px) {

    .industrial-expertise {
        padding: 60px 0 75px;
    }

    .expertise-heading {
        margin-bottom: 45px;
    }

    .expertise-heading h2 {
        font-size: 34px;
    }

    .expertise-heading p {
        font-size: 17px;
    }

    .desktop-break {
        display: none;
    }

    .expertise-grid {
        grid-template-columns: repeat(2, 1fr);

        gap: 22px;
    }

    .expertise-card {
        min-height: 190px;
    }

}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 767px) {

    .industrial-expertise {
        padding: 55px 0 65px;
    }

    .industrial-expertise .container {
        padding-left: 18px;
        padding-right: 18px;
    }


    /* Heading */

    .expertise-heading {
        margin-bottom: 35px;
    }

    .expertise-heading h2 {
        font-size: 29px;

        line-height: 1.2;

        letter-spacing: -0.8px;

        margin-bottom: 14px;
    }

    .expertise-heading p {
        font-size: 15px;

        line-height: 1.6;
    }


    /* Grid */

    .expertise-grid {
        grid-template-columns: 1fr;

        gap: 17px;
    }


    /* Cards */

    .expertise-card {
        min-height: auto;

        padding: 18px 22px 24px;

        border-left-width: 4px;

        border-radius: 0 14px 14px 14px;
    }

    .expertise-icon {
        width: 45px;
        height: 45px;

        margin-bottom: 7px;

        font-size: 25px;
    }

    .expertise-card h3 {
        font-size: 21px;

        margin-bottom: 9px;
    }

    .expertise-card p {
        max-width: none;

        font-size: 14px;

        line-height: 1.6;
    }

}


/* =========================================================
   SMALL MOBILE
========================================================= */

@media (max-width: 480px) {

    .industrial-expertise {
        padding: 45px 0 55px;
    }

    .expertise-heading h2 {
        font-size: 25px;
    }

    .expertise-heading p {
        font-size: 14px;
    }

    .expertise-card {
        padding: 16px 19px 21px;
    }

    .expertise-card h3 {
        font-size: 20px;
    }

}



/* =========================================================
   METRAF VISION SECTION
========================================================= */

.metraf-vision-section {
  position: relative;
  isolation: isolate;
  width: 100%;
  min-height: 590px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 90px 20px;
  overflow: hidden;
  background: linear-gradient(135deg, #0a2d50 0%, #0a2d50 45%, #0a2d50 100%);
  font-family: "Manrope", sans-serif;
}


/* =========================================================
   SUBTLE GRID BACKGROUND
========================================================= */

.vision-grid-bg {
    position: absolute;

    inset: 0;

    z-index: -1;

    pointer-events: none;

    opacity: 0.65;

    background-image:
        linear-gradient(rgba(255, 255, 255, 0.055) 1px,
            transparent 1px),
        linear-gradient(90deg,
            rgba(255, 255, 255, 0.055) 1px,
            transparent 1px);

    background-size:
        62px 62px;

    mask-image:
        linear-gradient(to bottom,
            rgba(0, 0, 0, 1),
            rgba(0, 0, 0, .75));
}


/* =========================================================
   CONTAINER
========================================================= */

.vision-container {
    width: 100%;

    max-width: 900px;

    margin: 0 auto;

    text-align: center;
}


/* =========================================================
   SMALL LABEL
========================================================= */

.vision-label {
    display: inline-flex;

    align-items: center;
    justify-content: center;

    padding: 11px 19px;

    margin-bottom: 28px;

    border-radius: 30px;

    background:
        rgba(100, 119, 151, 0.25);

    border:
        1px solid rgba(255, 255, 255, 0.04);

    color: #d8dfeb;

    font-size: 14px;

    font-weight: 500;

    line-height: 1;
}


/* =========================================================
   MAIN HEADING
========================================================= */

.vision-title {
    margin: 0;

    color: #ffffff;

    font-size: 38px;

    font-weight: 700;

    line-height: 1.25;

    letter-spacing: -1.5px;
}


/* BLUE HEADING LINE */

.vision-title span {
    display: block;

    margin-top: 2px;

    color: #3985f5;

    font-weight: 700;
}


/* =========================================================
   DESCRIPTION
========================================================= */

.vision-description {
    max-width: 780px;

    margin: 27px auto 0;

    color: #d0d7e3;

    font-size: 18px;

    font-weight: 500;

    line-height: 1.75;
}


/* =========================================================
   VISION POINTS
========================================================= */

.vision-points {
    display: flex;

    justify-content: center;
    align-items: center;

    gap: 14px;

    margin-top: 38px;
}


/* =========================================================
   POINT
========================================================= */

.vision-point {
    padding: 16px 20px;

    border-radius: 10px;

    background:
        rgba(79, 99, 133, 0.28);

    border:
        1px solid rgba(255, 255, 255, 0.025);

    color: #e1e6ee;

    font-size: 15px;

    font-weight: 500;

    line-height: 1;

    white-space: nowrap;

    transition:
        background .3s ease,
        transform .3s ease;
}


/* =========================================================
   HOVER
========================================================= */

.vision-point:hover {
    background:
        rgba(62, 101, 165, 0.42);

    transform: translateY(-3px);
}


/* =========================================================
   TABLET
========================================================= */

@media (max-width: 991px) {

    .metraf-vision-section {
        min-height: 540px;

        padding: 80px 25px;
    }

    .vision-title {
        font-size: 40px;
    }

    .vision-description {
        font-size: 17px;
    }

}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 767px) {

    .metraf-vision-section {
        min-height: auto;

        padding: 70px 18px;
    }


    /* Grid */

    .vision-grid-bg {
        background-size: 45px 45px;
    }


    /* Label */

    .vision-label {
        padding: 10px 16px;

        margin-bottom: 22px;

        font-size: 13px;
    }


    /* Heading */

    .vision-title {
        font-size: 30px;

        line-height: 1.2;

        letter-spacing: -0.8px;
    }

    .vision-title span {
        margin-top: 5px;
    }


    /* Description */

    .vision-description {
        margin-top: 22px;

        font-size: 15px;

        line-height: 1.7;
    }


    /* Points */

    .vision-points {
        flex-direction: column;

        gap: 10px;

        margin-top: 30px;
    }


    .vision-point {
        width: 100%;

        padding: 15px 18px;

        font-size: 14px;

        white-space: normal;
    }

}


/* =========================================================
   SMALL MOBILE
========================================================= */

@media (max-width: 480px) {

    .metraf-vision-section {
        padding: 55px 16px;
    }

    .vision-title {
        font-size: 26px;
    }

    .vision-description {
        font-size: 14px;
    }

}


/* =========================================================
   METRAF COMMON CONTAINER
========================================================= */

.metraf-main-section .metraf-container {
    width: 100%;
    max-width: 1030px;
    margin: 0 auto;
    padding: 0 20px;
}


/* =========================================================
   IMPORTANT
   EXISTING MAIN BACKGROUND KO VISIBLE RAKHNA
========================================================= */

.metraf-main-section>section {
    position: relative;
    background: transparent !important;
}


/* =========================================================
   GLOBAL TRADE NETWORK
========================================================= */

.trade-network-section {
    padding: 55px 0 20px;
}

.trade-heading {
    text-align: center;
    margin-bottom: 40px;
}

.trade-heading h2 {
    margin: 0 0 7px;

    color: #1d293d;

    font-size: 32px;
    font-weight: 700;
    line-height: 1.2;
}

.trade-heading p {
    margin: 0;
    color: #718096;
    font-weight: 500;
    font-size: 16px;
}


/* =========================================================
   MAP
========================================================= */



.trade-map {
    position: relative;
    height:100vh;
    overflow: hidden;
    border: 7px solid #26354a;
  margin: auto;
  background: linear-gradient(180deg, rgba(15,28,45,0.95) 0%, rgba(15,28,45,0.9) 100%);
  border-radius: 18px;
  padding: 25px;
  box-shadow: 0 20px 50px rgba(0,0,0,0.15);
}


/* MAP IMAGE */

.world-map {
  position: absolute;
  width: 100%;
  height: 100%;
  object-fit: contain;
  background: #0f1c2d;
  opacity: 0.9;
}

/* Optional dark overlay */

.map-overlay {
    position: absolute;

    inset: 0;

    background:
        radial-gradient(circle at center,
            transparent 20%,
            rgba(4, 12, 24, .15) 100%);

    pointer-events: none;
}


/* =========================================================
   MAP FILTERS
========================================================= */

.map-filters {
    position: absolute;

    top: 13px;
    left: 13px;

    display: flex;
    gap: 5px;
}

.map-filters button {
    padding: 7px 12px;

    border: 1px solid rgba(255, 255, 255, .12);

    border-radius: 20px;

    background: rgba(35, 48, 67, .75);

    color: #fff;

    font-size: 12px;

    cursor: pointer;
}


/* =========================================================
   MAP DOTS
========================================================= */

.map-dot {
    position: absolute;

    width: 5px;
    height: 5px;

    border-radius: 50%;

    background: #2784ff;

    box-shadow:
        0 0 7px rgba(39, 132, 255, .9);

    z-index: 3;

    animation: mapPulse 2.5s ease-in-out infinite;
}

.map-dot::after {
    content: "";

    position: absolute;

    inset: -4px;

    border: 1px solid rgba(55, 140, 255, .35);

    border-radius: 50%;
}


/* DOT POSITIONS */

.dot-1 {
    top: 32%;
    left: 43%;
}

.dot-2 {
    top: 39%;
    left: 45%;
}

.dot-3 {
    top: 46%;
    left: 48%;
}

.dot-4 {
    top: 54%;
    left: 51%;
}

.dot-5 {
    top: 62%;
    left: 53%;
}

.dot-6 {
    top: 44%;
    left: 64%;
}

.dot-7 {
    top: 50%;
    left: 69%;
}

.dot-8 {
    top: 57%;
    left: 72%;
}

.dot-9 {
    top: 64%;
    left: 76%;
}

.dot-10 {
    top: 69%;
    left: 80%;
}

.dot-11 {
    top: 30%;
    left: 70%;
}

.dot-12 {
    top: 37%;
    left: 78%;
}


@keyframes mapPulse {

    0%,
    100% {
        transform: scale(1);
        opacity: .7;
    }

    50% {
        transform: scale(1.45);
        opacity: 1;
    }

}


/* =========================================================
   MAP LEGEND BOX
========================================================= */

.map-legend-box {
    position: absolute;
    left: 14px;
    bottom: 12px;
    padding: 10px;
    border-radius: 6px;
    background: rgba(255, 255, 255, .96);
    color: #26344b;
}

.map-legend-box div {
    display: flex;

    align-items: center;

    gap: 6px;

    margin: 3px 0;
}


/* =========================================================
   COUNTRY COUNT
========================================================= */

.countries-count {
    position: absolute;

    right: 14px;
    bottom: 12px;

    width: 120px;

    padding: 10px 7px;

    text-align: center;

    border-radius: 6px;

    background: rgba(255, 255, 255, .96);
}

.countries-count strong {
    display: block;
    color: #2858b4;
    font-size: 22px;
}

.countries-count span {
    display: block;

    margin-top: 2px;

    color: #657084;

    font-size: 12px;
}


/* =========================================================
   MAP BOTTOM LEGEND
========================================================= */

.map-bottom-legend {
    display: flex;

    justify-content: center;

    gap: 20px;

    margin-top: 12px;

    color: #68758a;

}

.map-bottom-legend span {
    display: flex;

    align-items: center;

    gap: 5px;
}

.legend-dot {
    display: inline-block;

    width: 5px;
    height: 5px;

    border-radius: 50%;
}

.legend-dot.headquarters {
    background: #fff;

    border: 1px solid #277bff;
}

.legend-dot.partner {
    background: #287eff;
}

.route-line {
    display: inline-block;

    width: 16px;
    height: 1px;

    background: #7ca7e5;
}


/* =========================================================
   GLOBAL DESCRIPTION
========================================================= */

.global-description-section {
    padding: 38px 0 25px;
}

.global-description-section p {
    margin: 0 auto;
    text-align: center;
    color: #697589;
    line-height: 1.6;
}

.global-description-section a {
    color: #3269ba;
    font-weight: 700;
    text-decoration: underline;
}


/* =========================================================
   COUNTRY CARDS
========================================================= */

.country-section {
    padding: 5px 0 65px;
}

.country-grid {
    display: grid;

    grid-template-columns:
        repeat(3, 1fr);

    gap: 20px;
}

.country-card {
    padding: 18px 20px;

    background: #fff;

    border-radius: 8px;

    box-shadow:
        0 8px 22px rgba(35, 55, 88, .09);
}

.country-title {
    display: flex;

    align-items: center;

    gap: 9px;

    margin-bottom: 13px;

    color: #202b3f;
}

.country-flag {
    font-size: 17px;
}

.country-info {
    display: flex;

    align-items: flex-start;

    gap: 9px;

    margin-top: 9px;

    color: #68758a;
}

.country-info i {
    width: 23px;
    height: 23px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    border-radius: 5px;
    background: #eef1f6;
    color: #2d3c56;
}

.country-info small {
    display: block;
    margin-top: 2px;
    color: #8892a2;
}


/* =========================================================
   FAQ
========================================================= */

.metraf-faq-section {
    padding: 30px 0 60px;
}

.faq-heading {
    text-align: center;
    margin-bottom: 30px;
}

.faq-heading h2 {
    margin: 0 0 8px;

    color: #1e293d;

    font-size: 24px;

    font-weight: 800;
}

.faq-heading p {
    margin: 0 auto;
    color: #7a8596;
    line-height: 1.5;
}

.faq-grid {
    display: grid;
    grid-template-columns:
        repeat(2, 1fr);
    gap: 40px;
}

.faq-category {
    margin-bottom: 22px;
}

.faq-category-title {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 10px;
    color: #253149;
    font-weight: 700;
}

.faq-category-title span {
    width: 16px;
    height: 16px;

    display: flex;

    align-items: center;
    justify-content: center;
    border-radius: 4px;
    background: #24469a;
    color: #fff;
}

.faq-item {
    margin-bottom: 5px;

    border: 1px solid #e4e8ef;

    border-radius: 3px;

    background: #fff;
}

.faq-question {
    width: 100%;

    display: flex;

    align-items: center;
    justify-content: space-between;

    padding: 10px 11px;

    border: 0;

    background: transparent;

    color: #58657a;

    text-align: left;

    font-family: inherit;
    cursor: pointer;
}

.faq-question i {
    transition: transform .3s ease;
}

.faq-answer {
    max-height: 0;

    overflow: hidden;

    padding: 0 11px;

    color: #7c8798;
    line-height: 1.5;

    transition:
        max-height .3s ease,
        padding .3s ease;
}

.faq-item.active .faq-answer {
    max-height: 100px;

    padding: 0 11px 10px;
}

.faq-item.active .faq-question i {
    transform: rotate(180deg);
}


/* =========================================================
   QUOTE
========================================================= */

.quote-section {
    padding: 20px 0 70px;
}

.quote-wrapper {
    display: grid;

    grid-template-columns: .9fr 1.1fr;

    gap: 50px;

    padding: 35px;

    background: #f1f3f6;
}


/* LEFT */

.quote-content {
    padding-top: 10px;
}

.quote-label {
    display: inline-block;

    padding: 5px 8px;

    border-radius: 10px;

    background: #e3e8ee;

    color: #526074;
    font-weight: 800;
}

.quote-content h2 {
    margin: 9px 0 7px;

    color: #172237;

    font-size: 25px;
}

.quote-content>p {

    margin: 0 0 25px;

    color: #758195;

    font-size: 9px;

    line-height: 1.5;
}

.quote-contact {
    display: flex;

    flex-direction: column;

    gap: 14px;
}

.contact-item {
    display: flex;

    align-items: center;
    margin-bottom: 15px;
    gap: 9px;
}

.contact-item>span {
    width: 27px;
    height: 27px;

    display: flex;

    align-items: center;
    justify-content: center;

    border-radius: 6px;

    background:#0a2d50;

    color: #fff;

}

.contact-item strong {
    display: block;

    color: #263248;

}

.contact-item small {
    display: block;

    margin-top: 2px;

    color: #758094;

}


/* =========================================================
   QUOTE FORM
========================================================= */

.quote-form-wrapper {
    padding: 20px;

    border-radius: 10px;

    background: #fff;

    box-shadow:
        0 12px 28px rgba(30, 50, 80, .09);
}

.quote-form {
    display: flex;

    flex-direction: column;

    gap: 10px;
}

.form-row {
    display: grid;

    grid-template-columns:
        repeat(2, 1fr);

    gap: 10px;
}

.form-group label {
    display: block;

    margin-bottom: 5px;

    color: #374359;

}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;

    box-sizing: border-box;

    padding: 8px 9px;

    border: 1px solid #dce2ea;

    border-radius: 5px;

    outline: none;

    background: #f9fafb;

    color: #333;

    font-family: inherit;

}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: #3263b5;

    background: #fff;
}

.form-group textarea {
    height: 65px;

    resize: vertical;
}

.quote-submit {
    width: 100%;

    padding: 10px;

    border: 0;

    border-radius: 5px;

    background: #0a2d50;

    color: #fff;

    font-family: inherit;
    font-weight: 700;
    cursor: pointer;
}

.quote-submit i {
    margin-left: 5px;
}

.quote-note {
    display: block;
    text-align: center;
    color: #8993a2;
}


/* =========================================================
   BLOG
========================================================= */

.metraf-blog-section {
    padding: 10px 0 80px;
}

.blog-heading {
    text-align: center;

    margin-bottom: 25px;
}

.blog-heading h2 {
    margin: 0 0 7px;

    color: #253047;

    font-size: 24px;

    font-weight: 800;
}

.blog-heading p {
    margin: 0;
    color: #7b8596;
}

.blog-grid {
    display: grid;

    grid-template-columns:
        repeat(3, 1fr);

    gap: 12px;


    margin: 0 auto;
}

.blog-card {
    overflow: hidden;

    border-radius: 9px;

    background: #f7f7f8;

    transition:
        transform .3s ease,
        box-shadow .3s ease;
}

.blog-card:hover {
    transform: translateY(-5px);

    box-shadow:
        0 12px 25px rgba(30, 50, 80, .12);
}

.blog-card img {
    display: block;

    width: 100%;

    height: 250px;

    object-fit: cover;
}

.blog-card-content {
    padding: 9px;
}

.blog-card h3 {
  margin: 0 0 5px;
  color: #3151a2;
  line-height: 1.35;
  font-size: 20px;
  font-weight: 700;
}

.blog-card small {
    color: #8a93a1;

}

.blog-card p {
    margin: 8px 0;

    color: #737c8c;



    line-height: 1.55;
}

.blog-card a {
    color: #0a2d50;

    text-decoration: underline;
}












/* =========================================================
   GLOBAL TRADE NETWORK
========================================================= */

.metraf-trade-section {
    position: relative;
    overflow: hidden;
    padding: 50px 0;
}


.metraf-trade-container {
    width: min(1180px, calc(100% - 40px));
    margin: auto;
}


/* =========================================================
   HEADING
========================================================= */

.metraf-trade-heading {
    text-align: center;
    max-width: 760px;
    margin: 0 auto 45px;
}

.metraf-section-label {
    display: inline-flex;
    align-items: center;
    padding: 7px 16px;
    margin-bottom: 14px;

    border-radius: 50px;

    background: rgba(38, 91, 180, .08);

    color: #2458b3;

    font-size: 13px;
    font-weight: 700;
    letter-spacing: .8px;
}


.metraf-trade-heading h2 {
    margin: 0;

    font-size: clamp(32px, 4vw, 48px);

    line-height: 1.1;

    color: #17233b;

    font-weight: 800;
}


.metraf-trade-heading h2 span {
    color: #2868d5;
}


.metraf-trade-heading p {
    margin: 18px auto 0;

    max-width: 650px;

    color: #69758a;

    font-size: 16px;

    line-height: 1.7;
}


/* =========================================================
   MAP
========================================================= */

.metraf-map-wrapper {
    width: 100%;
}


.metraf-map {

    position: relative;

    width: 100%;

    min-height: 100vh;

    overflow: hidden;

    border-radius: 22px;

    background: #0c1b30;

    border: 1px solid rgba(255,255,255,.08);

    box-shadow:
        0 25px 60px rgba(13,31,57,.18),
        inset 0 1px 0 rgba(255,255,255,.05);
}


/* subtle grid */

.metraf-map::before {

    content: "";

    position: absolute;

    inset: 0;

    background-image:
        linear-gradient(
            rgba(90,130,190,.08) 1px,
            transparent 1px
        ),
        linear-gradient(
            90deg,
            rgba(90,130,190,.08) 1px,
            transparent 1px
        );

    background-size: 55px 55px;

    pointer-events: none;

    z-index: 1;
}


/* =========================================================
   WORLD MAP
========================================================= */

.metraf-world-map {
  position: absolute;
  left: -5%;
  top: 12%;
  width: 100%;
  height: 94%;
  object-fit: contain;
  opacity: .98;
  z-index: 2;
  pointer-events: none;
}


/* =========================================================
   COUNTRY FILTER
========================================================= */

.metraf-country-filter {

    position: absolute;

    top: 26px;
    left: 26px;

    display: flex;

    gap: 10px;

    z-index: 10;
}


.country-filter {

    padding: 11px 18px;

    border-radius: 50px;

    border: 1px solid rgba(255,255,255,.25);

    background: rgba(19,31,48,.75);

    backdrop-filter: blur(10px);

    color: #fff;

    font-size: 14px;

    cursor: pointer;

    transition: .3s ease;
}


.country-filter:hover,
.country-filter.active {

    background: #2468d8;

    border-color: #2468d8;

    transform: translateY(-2px);
}


/* =========================================================
   MAP DOT
========================================================= */

.metraf-map-dot {

    position: absolute;

    width: 11px;
    height: 11px;

    transform: translate(-50%, -50%);

    z-index: 8;

    cursor: pointer;
}


.dot-core {

    display: block;

    width: 100%;
    height: 100%;

    border-radius: 50%;

    background: #3181f7;

    border: 2px solid rgba(255,255,255,.55);

    box-shadow:
        0 0 12px rgba(49,129,247,.8);

    transition: .3s ease;
}


/* =========================================================
   FEATURED DOTS
========================================================= */

.metraf-map-dot.featured {

    width: 18px;
    height: 18px;
}


.metraf-map-dot.featured .dot-core {

    background: #fff;

    border: 4px solid #3681f5;

    box-shadow:
        0 0 0 8px rgba(49,129,247,.15),
        0 0 25px rgba(49,129,247,.9);
}


/* pulse ring */

.dot-pulse {

    position: absolute;

    inset: -9px;

    border-radius: 50%;

    border: 1px solid rgba(54,129,245,.5);

    animation: metrafDotPulse 2.2s ease-out infinite;

}


@keyframes metrafDotPulse {

    0% {
        transform: scale(.6);
        opacity: .9;
    }

    70% {
        transform: scale(1.8);
        opacity: 0;
    }

    100% {
        transform: scale(1.8);
        opacity: 0;
    }
}


/* hover */

.metraf-map-dot:hover .dot-core {

    transform: scale(1.45);

    background: #fff;

    border-color: #3181f7;
}


/* =========================================================
   TOOLTIP
========================================================= */

.country-tooltip {

    position: absolute;

    left: 50%;
    bottom: calc(100% + 15px);

    transform:
        translate(-50%, 8px)
        scale(.95);

    min-width: 145px;

    padding: 12px 15px;

    border-radius: 10px;

    background: #fff;

    color: #17233b;

    box-shadow:
        0 15px 35px rgba(0,0,0,.25);

    opacity: 0;

    visibility: hidden;

    pointer-events: none;

    transition:
        .25s ease;

    text-align: left;

    z-index: 100;
}


.country-tooltip::after {

    content: "";

    position: absolute;

    left: 50%;
    bottom: -6px;

    width: 12px;
    height: 12px;

    background: #fff;

    transform: translateX(-50%) rotate(45deg);
}


.country-tooltip strong {

    display: block;

    font-size: 14px;

    margin-bottom: 3px;
}


.country-tooltip small {

    display: block;

    color: #6d788a;

    font-size: 11px;

    line-height: 1.4;
}


.metraf-map-dot:hover .country-tooltip {

    opacity: 1;

    visibility: visible;

    transform:
        translate(-50%, 0)
        scale(1);
}


/* =========================================================
   LEGEND
========================================================= */

.metraf-map-legend {

    position: absolute;

    left: 26px;
    bottom: 26px;

    z-index: 10;

    padding: 15px 18px;

    background: rgba(255,255,255,.97);

    border-radius: 12px;

    box-shadow: 0 10px 30px rgba(0,0,0,.18);
}


.metraf-map-legend div {

    display: flex;

    align-items: center;

    gap: 10px;

    color: #536077;

    font-size: 13px;

    margin: 5px 0;
}


.legend-dot {

    width: 10px;
    height: 10px;

    border-radius: 50%;

    display: inline-block;
}


.legend-dot.headquarters {

    background: #fff;

    border: 2px solid #3181f7;

}


.legend-dot.partner {

    background: #3181f7;
}


/* =========================================================
   COUNTRY COUNT
========================================================= */

.metraf-country-count {

    position: absolute;

    right: 26px;
    bottom: 26px;

    z-index: 10;

    width: 150px;

    padding: 18px;

    text-align: center;

    background: #fff;

    border-radius: 12px;

    box-shadow: 0 10px 30px rgba(0,0,0,.18);
}


.metraf-country-count strong {

    display: block;

    color: #244b9d;

    font-size: 30px;

    line-height: 1;
}


.metraf-country-count span {

    display: block;

    margin-top: 8px;

    color: #536077;

    font-size: 13px;
}


/* =========================================================
   DESCRIPTION
========================================================= */

.metraf-trade-description {

    max-width: 900px;

    margin: 42px auto;

    text-align: center;

    color: #68748a;

    font-size: 14px;

    line-height: 1.8;
}


.metraf-trade-description p {

    margin: 7px 0;
}


.metraf-trade-description strong {

    color: #2b5fb6;
}


/* =========================================================
   LOCATION CARDS
========================================================= */

.metraf-location-grid {

    display: grid;

    grid-template-columns:
        repeat(3, 1fr);

    gap: 20px;

    max-width: 1000px;

    margin: 35px auto 0;
}


.metraf-location-card {

    padding: 24px;

    border-radius: 14px;

    background: rgba(255,255,255,.88);

    border: 1px solid rgba(36,88,179,.08);

    box-shadow:
        0 12px 35px rgba(28,53,90,.08);

    transition: .35s ease;
}


.metraf-location-card:hover {

    transform: translateY(-7px);

    box-shadow:
        0 20px 45px rgba(28,53,90,.14);
}


.location-top {

    display: flex;

    align-items: center;

    gap: 12px;

    margin-bottom: 20px;
}


.flag {

    font-size: 28px;
}


.location-top h3 {

    margin: 0;

    color: #17233b;

    font-size: 17px;
}


.location-top span {

    display: block;

    margin-top: 3px;

    color: #7a8495;

    font-size: 12px;
}


.metraf-location-card p {

    display: flex;

    align-items: center;

    gap: 10px;

    margin: 10px 0;

    color: #68748a;

    font-size: 12px;
}


.metraf-location-card p i {

    width: 26px;
    height: 26px;

    display: flex;

    align-items: center;
    justify-content: center;

    border-radius: 7px;

    background: #edf4ff;

    color: #2868d5;
}


/* =========================================================
   RESPONSIVE
========================================================= */

@media (max-width: 991px) {

    .metraf-trade-section {
        padding: 70px 0;
    }

    .metraf-map {
        min-height: 470px;
    }

    .metraf-world-map {
        width: 110%;
        left: -5%;
    }

    .metraf-location-grid {
        grid-template-columns:
            repeat(3, 1fr);
    }

}


@media (max-width: 767px) {

    .metraf-trade-container {
        width: min(100% - 24px, 600px);
    }

    .metraf-trade-section {
        padding: 55px 0;
    }

    .metraf-trade-heading {
        margin-bottom: 28px;
    }

    .metraf-trade-heading h2 {
        font-size: 32px;
    }

    .metraf-trade-heading p {
        font-size: 14px;
    }


    .metraf-map {

        min-height: 400px;

        border-radius: 16px;
    }


    .metraf-world-map {

        width: 145%;

        max-width: none;

        left: -22%;

        top: 5%;

        height: 90%;
    }


    .metraf-country-filter {

        top: 16px;
        left: 16px;

        gap: 6px;
    }


    .country-filter {

        padding: 8px 12px;

        font-size: 12px;
    }


    .metraf-map-legend {

        left: 15px;
        bottom: 15px;

        padding: 10px 12px;
    }


    .metraf-map-legend div {

        font-size: 11px;
    }


    .metraf-country-count {

        right: 15px;
        bottom: 15px;

        width: 115px;

        padding: 13px 8px;
    }


    .metraf-country-count strong {
        font-size: 24px;
    }


    .metraf-country-count span {
        font-size: 10px;
    }


    .metraf-map-dot {
        width: 8px;
        height: 8px;
    }


    .metraf-map-dot.featured {
        width: 14px;
        height: 14px;
    }


    .country-tooltip {
        min-width: 125px;
        padding: 9px 11px;
    }


    .metraf-location-grid {

        grid-template-columns: 1fr;

        gap: 14px;
    }

}


@media (max-width: 480px) {

    .metraf-map {
        min-height: 330px;
    }

    .metraf-world-map {
        width: 165%;
        left: -32%;
    }

    .metraf-country-filter {
        flex-wrap: wrap;
        max-width: 210px;
    }

    .metraf-trade-description {
        font-size: 12px;
    }

}

/* =========================================
   PRODUCT CUSTOM SELECT
========================================= */

.metraf-product-select {
    position: relative;
    width: 100%;
    font-family: inherit;
}

.metraf-product-select > label {
    display: block;
    margin-bottom: 10px;

    color: #182238;
    font-size: 15px;
    font-weight: 500;
}


/* =========================================
   SELECT BUTTON
========================================= */

.metraf-select-trigger {
    width: 100%;
    height: 54px;

    display: flex;
    align-items: center;
    justify-content: space-between;

    padding: 0 16px;

    background: #fff;

    border: 1px solid #d7dce5;
    border-radius: 10px;

    color: #666;

    font-size: 15px;
    font-weight: 400;

    cursor: pointer;

    transition: all .25s ease;
}

.metraf-select-trigger:hover {
    border-color: #2454b8;
}

.metraf-product-select.active
.metraf-select-trigger {
    border-color: #2454b8;

    border-bottom-left-radius: 0;
    border-bottom-right-radius: 0;

    box-shadow:
        0 0 0 1px rgba(36,84,184,.05);
}

.metraf-select-trigger i {
    font-size: 13px;

    color: #555;

    transition: transform .25s ease;
}

.metraf-product-select.active
.metraf-select-trigger i {
    transform: rotate(180deg);
}


/* =========================================
   DROPDOWN
========================================= */

.metraf-product-dropdown {
    position: absolute;

    top: calc(100% - 1px);
    left: 0;

    width: 100%;

    max-height: 430px;

    overflow-y: auto;

    background: #fff;

    border: 1px solid #cfd4dc;

    border-top: 0;

    border-radius: 0 0 8px 8px;

    box-shadow:
        0 5px 15px rgba(0,0,0,.16);

    z-index: 9999;

    opacity: 0;
    visibility: hidden;

    transform: translateY(-5px);

    transition:
        opacity .2s ease,
        visibility .2s ease,
        transform .2s ease;
}

.metraf-product-select.active
.metraf-product-dropdown {

    opacity: 1;
    visibility: visible;

    transform: translateY(0);
}


/* =========================================
   PLACEHOLDER
========================================= */

.metraf-placeholder {
    color: #666;

    padding: 10px 12px;

    font-size: 15px;
}


/* =========================================
   CATEGORY TITLE
========================================= */

.metraf-group-title {
    padding: 7px 12px 4px;

    color: #5d5d5d;

    font-size: 15px;
    font-weight: 700;
}


/* =========================================
   PRODUCT OPTION
========================================= */

.metraf-product-option {

    padding: 7px 32px;

    color: #626262;

    font-size: 15px;

    line-height: 1.3;

    cursor: pointer;

    transition:
        background .15s ease,
        color .15s ease;
}

.metraf-product-option:hover {

    background: #dedee4;

    color: #182238;
}


/* Selected */
.metraf-product-option.selected {

    background: #dedee4;

    color: #17233a;

    font-weight: 500;
}


/* =========================================
   NORMAL OPTION
========================================= */

.metraf-product-option[data-value="Multiple Products / Custom Requirement"] {

    padding: 9px 12px 11px;

    color: #555;
}


/* =========================================
   SCROLLBAR
========================================= */

.metraf-product-dropdown::-webkit-scrollbar {
    width: 7px;
}

.metraf-product-dropdown::-webkit-scrollbar-track {
    background: #f5f5f5;
}

.metraf-product-dropdown::-webkit-scrollbar-thumb {
    background: #c5c8ce;
    border-radius: 10px;
}

.metraf-product-dropdown::-webkit-scrollbar-thumb:hover {
    background: #aeb2b9;
}


/* =========================================
   MOBILE
========================================= */

@media (max-width: 767px) {

    .metraf-select-trigger {
        height: 50px;
        font-size: 14px;
    }

    .metraf-product-dropdown {
        max-height: 320px;
    }

    .metraf-product-option,
    .metraf-group-title,
    .metraf-placeholder {
        font-size: 14px;
    }

}


/* =========================================================
   METRAF FOOTER
========================================================= */

.metraf-footer {
    position: relative;
    background:#0a2d50;
    color: #ffffff;
    padding: 85px 0 38px;
    overflow: hidden;
}


/* subtle background */

.metraf-footer::before {
    content: "";

    position: absolute;

    width: 650px;
    height: 650px;

    top: -350px;
    right: -200px;

    background: radial-gradient(
        circle,
        rgba(38, 91, 177, .12),
        transparent 70%
    );

    pointer-events: none;
}


.metraf-footer-container {
    width: min(1600px, 90%);

    margin: auto;

    display: grid;

    grid-template-columns:
        2.1fr
        .85fr
        .85fr
        2.5fr;

    gap: 70px;

    position: relative;

    z-index: 2;
}


/* =========================================================
   LOGO
========================================================= */

.metraf-footer-logo {
    display: inline-block;

    margin-bottom: 28px;
}

.metraf-footer-logo img {
  width: 225px;
  height: auto;
  display: block;
  padding: 10px;
  background: #fff;
}


/* =========================================================
   DESCRIPTION
========================================================= */

.metraf-footer-desc {
    max-width: 480px;

    margin: 0 0 28px;

    color: #d5deea;

    font-size: 20px;

    line-height: 1.65;
}


/* =========================================================
   CONTACT
========================================================= */

.metraf-footer-contact {
    display: flex;

    flex-direction: column;

    gap: 25px;

    margin-bottom: 35px;
}

.metraf-footer-contact a,
.metraf-footer-contact span {
    color: #ffffff;

    text-decoration: none;

    font-size: 20px;

    line-height: 1.5;

    transition: color .25s ease;
}

.metraf-footer-contact a:hover {
    color: #4b91ff;
}


/* =========================================================
   SOCIAL
========================================================= */

.metraf-footer-social {
    display: flex;

    align-items: center;

    gap: 20px;

    margin-bottom: 28px;
}

.metraf-footer-social a {
    color: #ffffff;

    font-size: 22px;

    text-decoration: none;

    transition:
        transform .25s ease,
        color .25s ease;
}

.metraf-footer-social a:hover {
    color: #4b91ff;

    transform: translateY(-3px);
}


/* =========================================================
   COPYRIGHT
========================================================= */

.metraf-footer-copy {
    color: #ffffff;

    font-size: 17px;

    margin-bottom: 20px;
}


/* =========================================================
   LOCATIONS
========================================================= */

.metraf-footer-locations {
    display: flex;

    align-items: center;

    flex-wrap: wrap;

    gap: 8px;

    color: #ffffff;

    font-size: 19px;
}

.metraf-footer-locations > span {
    width: 13px;
    height: 13px;

    border-radius: 50%;

    background: #11a86b;

    display: inline-block;

    margin-right: 5px;
}

.metraf-footer-locations b {
    font-weight: 400;

    color: #9eabbc;
}


/* =========================================================
   FOOTER COLUMNS
========================================================= */

.metraf-footer-column h3,
.metraf-footer-products > h3 {
    margin: 0 0 28px;

    color: #ffffff;

    font-size: 24px;

    font-weight: 700;
}


.metraf-footer-column ul,
.metraf-footer-products ul {
    list-style: none;

    margin: 0;
    padding: 0;
}


.metraf-footer-column li,
.metraf-footer-products li {
    margin-bottom: 19px;
}


.metraf-footer-column a,
.metraf-footer-products a {
    color: #d9e0e9;

    text-decoration: none;

    font-size: 20px;

    transition:
        color .25s ease,
        padding-left .25s ease;
}


.metraf-footer-column a:hover,
.metraf-footer-products a:hover {
    color: #4c91ff;

    padding-left: 4px;
}


/* =========================================================
   PRODUCT COLUMNS
========================================================= */

.metraf-product-columns {
    display: grid;

    grid-template-columns: 1fr 1fr;

    gap: 65px;
}


.metraf-product-columns h4 {
    margin: 0 0 25px;

    color: #ffffff;

    font-size: 19px;

    font-weight: 700;
}


/* =========================================================
   FOOTER BOTTOM
========================================================= */

.metraf-footer-bottom {
    width: min(1600px, 90%);

    height: 1px;

    background: rgba(255,255,255,.16);

    margin: 55px auto 0;
}


/* =========================================================
   LANGUAGE SWITCHER
========================================================= */

.metraf-language {
    position: fixed;

    right: 38px;

    bottom: 32px;

    z-index: 99999;

    font-family: inherit;
}


.metraf-language-toggle {
    min-width: 110px;

    height: 50px;

    padding: 0 14px;

    display: flex;

    align-items: center;

    justify-content: center;

    gap: 9px;

    border: 0;

    border-radius: 2px;

    background: #ffffff;

    color: #252525;

    font-size: 20px;

    font-weight: 600;

    cursor: pointer;

    box-shadow: 0 5px 20px rgba(0,0,0,.12);
}


.metraf-language-toggle i {
    font-size: 12px;

    transition: transform .25s ease;
}


.metraf-language.active
.metraf-language-toggle i {
    transform: rotate(180deg);
}


/* =========================================================
   LANGUAGE MENU
========================================================= */

.metraf-language-menu {
    position: absolute;

    right: 0;

    bottom: calc(100% + 8px);

    width: 175px;

    padding: 7px;

    background: #ffffff;

    border-radius: 7px;

    box-shadow:
        0 10px 35px rgba(0,0,0,.20);

    opacity: 0;

    visibility: hidden;

    transform: translateY(8px);

    transition:
        opacity .2s ease,
        visibility .2s ease,
        transform .2s ease;
}


.metraf-language.active
.metraf-language-menu {
    opacity: 1;

    visibility: visible;

    transform: translateY(0);
}


.metraf-language-menu button {
    width: 100%;

    display: flex;

    align-items: center;

    gap: 10px;

    padding: 11px 12px;

    border: 0;

    border-radius: 5px;

    background: transparent;

    color: #202020;

    font-size: 15px;

    text-align: left;

    cursor: pointer;

    transition: background .2s ease;
}


.metraf-language-menu button:hover {
    background: #eef3fa;
}


/* =========================================================
   RESPONSIVE
========================================================= */

@media (max-width: 1200px) {

    .metraf-footer-container {
        grid-template-columns:
            1.7fr
            1fr
            1fr;

        gap: 50px;
    }

    .metraf-footer-products {
        grid-column: 1 / -1;
    }

}


@media (max-width: 768px) {

    .metraf-footer {
        padding: 60px 0 30px;
    }


    .metraf-footer-container {
        width: 88%;

        display: grid;

        grid-template-columns: 1fr;

        gap: 42px;
    }


    .metraf-footer-brand {
        max-width: 100%;
    }


    .metraf-footer-logo img {
        width: 190px;
    }


    .metraf-footer-desc {
        font-size: 16px;
    }


    .metraf-footer-contact a,
    .metraf-footer-contact span {
        font-size: 16px;
    }


    .metraf-footer-column h3,
    .metraf-footer-products > h3 {
        font-size: 21px;

        margin-bottom: 20px;
    }


    .metraf-footer-column a,
    .metraf-footer-products a {
        font-size: 16px;
    }


    .metraf-product-columns {
        grid-template-columns: 1fr;

        gap: 30px;
    }


    .metraf-footer-copy {
        font-size: 14px;
    }


    .metraf-footer-locations {
        font-size: 15px;
    }


    .metraf-footer-bottom {
        margin-top: 40px;
    }


    .metraf-language {
        right: 15px;

        bottom: 18px;
    }

}


@media (max-width: 480px) {

    .metraf-footer-container {
        width: 90%;
    }


    .metraf-footer-social {
        gap: 17px;
    }


    .metraf-language-toggle {
        min-width: 90px;

        height: 44px;

        font-size: 16px;
    }

}



.blog-grid.blog-page .blog-card {
  display: flex;
  align-items: center;
  gap: 20px;
}
.blog-grid.blog-page .blog-card img {
  width: 300px;
}
.blog-grid.blog-page {
  grid-template-columns: 1fr;
}
.metraf-blog-section.blogpage {
  padding: 80px 0;
}

.metraf-main-section.page {
  padding: 60px 0;
}
.metraf-vision-section.page .vision-description {
  max-width: 100%;
  text-align: center;
}
.metraf-vision-section.page  {
  text-align: center;
}

.quote-section.page .container {
  padding: 35px;
  background: #f1f3f6;
}
.noicon {
  width: 50px !important;
  height: 50px !important;
  border-radius: 12px !important;
  background: #1e3a8a !important;
  font-weight: 700;
}


/* =========================================================
   METRAF ABOUT PAGE
========================================================= */

.metraf-about-page {
    position: relative;
    overflow: hidden;
    color: #172945;
}


/* =========================================================
   MAIN CONTAINER
========================================================= */

.metraf-about-page .container {
    max-width: 1160px;
}


/* =========================================================
   ABOUT INTRO
========================================================= */

.metraf-about-intro {
    padding: 55px 0 55px;
}


/* =========================================================
   ABOUT IMAGE
========================================================= */

.metraf-about-image {
    background: #ffffff;
    border-radius: 16px;
    padding: 25px;

    min-height: 340px;

    display: flex;
    align-items: center;
    justify-content: center;

    box-shadow:
        0 12px 35px rgba(19, 42, 72, 0.10);
}

.metraf-about-image img {
    width: 100%;
    max-height: 300px;
    object-fit: contain;
    display: block;
}


/* =========================================================
   ABOUT CONTENT
========================================================= */

.metraf-about-content {
    padding-left: 35px;
}

.metraf-about-content h1 {
    margin: 0 0 18px;

    color: #192d4a;

    font-size: 34px;
    line-height: 1.2;
    font-weight: 700;
}

.metraf-about-content p {
    margin: 0 0 18px;

    color: #5d6a7c;

    font-size: 15px;
    line-height: 1.7;
    font-weight: 400;
}


/* =========================================================
   COMMON HEADING
========================================================= */

.metraf-sub-heading {
    margin-bottom: 28px;
}

.metraf-sub-heading h2 {
    margin: 0;

    color: #192d4a;

    font-size: 25px;
    line-height: 1.3;
    font-weight: 700;
}


/* =========================================================
   WHAT WE DO
========================================================= */

.metraf-what-we-do {
    padding-bottom: 60px;
}

.metraf-info-card {
    height: 100%;

    padding: 25px 28px;

    background: #ffffff;

    border-radius: 12px;

    box-shadow:
        0 10px 30px rgba(25, 45, 74, 0.08);

    transition:
        transform 0.3s ease,
        box-shadow 0.3s ease;
}

.metraf-info-card:hover {
    transform: translateY(-5px);

    box-shadow:
        0 18px 40px rgba(25, 45, 74, 0.13);
}

.metraf-info-card h3 {
    margin: 0 0 10px;

    color: #203452;

    font-size: 18px;
    line-height: 1.4;
    font-weight: 700;
}

.metraf-info-card p {
    margin: 0;

    color: #657184;

    font-size: 14px;
    line-height: 1.65;
}


/* =========================================================
   BLUE INDUSTRIES AREA
========================================================= */

.metraf-industries-area {
    position: relative;

    padding: 0 0 75px;


}


/* heading */
.metraf-industries-area .metraf-sub-heading {
    padding-top: 0;
}


/* =========================================================
   INDUSTRY CARDS
========================================================= */

.metraf-industry-grid {
    margin-bottom: 70px;
}

.metraf-industry-card {
    min-height: 48px;

    display: flex;
    align-items: center;
    justify-content: center;

    padding: 12px 15px;

    background: #ffffff;

    border-radius: 9px;

    color: #4f5e73;

    font-size: 15px;
    line-height: 1.4;
    text-align: center;

    box-shadow:
        0 7px 20px rgba(27, 48, 78, 0.08);

    transition:
        transform 0.3s ease,
        box-shadow 0.3s ease;
}

.metraf-industry-card:hover {
    transform: translateY(-4px);

    box-shadow:
        0 12px 25px rgba(27, 48, 78, 0.15);
}


/* =========================================================
   WHY WE WORK WITH US
========================================================= */

.metraf-why-heading {
    margin-bottom: 27px;
}

.metraf-why-grid {
    padding-bottom: 55px;
}

.metraf-why-card {
    height: 100%;

    min-height: 135px;

    padding: 25px 25px;

    background: #ffffff;

    border-radius: 12px;

    text-align: center;

    box-shadow:
        0 10px 25px rgba(24, 46, 78, 0.10);

    transition:
        transform 0.3s ease,
        box-shadow 0.3s ease;
}

.metraf-why-card:hover {
    transform: translateY(-5px);

    box-shadow:
        0 17px 35px rgba(24, 46, 78, 0.15);
}

.metraf-why-card h3 {
  margin: 0 0 12px;
  color: #243957;
  font-size: 20px;
  line-height: 1.4;
  font-weight: 700;
}

.metraf-why-card p {
    margin: 0;
    color: #667389;
    font-size: 15px;
    line-height: 1.7;
}


/* =========================================================
   CTA
========================================================= */

.metraf-about-cta {
    position: relative;

    margin: 0 auto -75px;

    max-width: 100%;

    padding: 42px 40px;

    background: #1d314f;

    border-radius: 15px;

    color: #ffffff;

    box-shadow:
        0 15px 35px rgba(17, 37, 64, 0.16);

    z-index: 5;
}

.metraf-about-cta h2 {
    margin: 0 0 12px;

    color: #ffffff;

    font-size: 32px;
    line-height: 1.35;
    font-weight: 700;
}

.metraf-about-cta p {
    max-width: 750px;

    margin: 0 auto 20px;

    color: #d6deea;

    font-size: 15px;
    line-height: 1.6;
}

.metraf-cta-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;

    min-width: 155px;

    padding: 12px 22px;

    background: #3d66c5;

    border-radius: 5px;

    color: #ffffff !important;

    font-size: 16px;
    font-weight: 700;

    text-decoration: none;

    transition:
        background 0.3s ease,
        transform 0.3s ease;
}

.metraf-cta-btn:hover {
    background: #2f56b0;

    transform: translateY(-2px);
}


/* =========================================================
   HOME LINK
========================================================= */
.metraf-home-link {
  padding: 60px 0;
  text-align: center;
}

.metraf-home-link a {
    display: inline-flex;

    flex-direction: column;
    align-items: center;

    gap: 8px;

    color: #3761be;

    font-size: 16px;
    font-weight: 700;

    text-decoration: none;
}

.metraf-home-icon {
    display: flex;

    align-items: center;
    justify-content: center;

    width: 42px;
    height: 42px;

    color: #3e67c3;

    font-size: 32px;

    transition: transform 0.3s ease;
}

.metraf-home-link a:hover .metraf-home-icon {
    transform: translateY(-4px);
}


/* =========================================================
   TABLET
========================================================= */

@media (max-width: 991.98px) {

    .metraf-about-intro {
        padding: 45px 0;
    }

    .metraf-about-content {
        padding-left: 0;
        padding-top: 35px;
    }

    .metraf-about-content h1 {
        font-size: 30px;
    }

    .metraf-info-card {
        padding: 22px;
    }

    .metraf-about-cta {
        padding: 38px 25px;
    }

}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 767.98px) {

    .metraf-about-page .container {
        width: 100%;
        padding-left: 18px;
        padding-right: 18px;
    }

    .metraf-about-intro {
        padding: 30px 0 40px;
    }

    .metraf-about-image {
        min-height: 250px;
        padding: 18px;
        border-radius: 12px;
    }

    .metraf-about-image img {
        max-height: 230px;
    }

    .metraf-about-content {
        padding-top: 28px;
    }

    .metraf-about-content h1 {
        font-size: 27px;
    }

    .metraf-about-content p {
        font-size: 14px;
        line-height: 1.65;
    }

    .metraf-sub-heading h2 {
        font-size: 22px;
    }

    .metraf-what-we-do {
        padding-bottom: 45px;
    }

    .metraf-info-card {
        padding: 20px;
    }

    .metraf-info-card h3 {
        font-size: 17px;
    }

    .metraf-industries-area {
        padding-bottom: 55px;
    }

    .metraf-industry-grid {
        margin-bottom: 50px;
    }

    .metraf-industry-card {
        min-height: 50px;
    }

    .metraf-why-heading {
        margin-bottom: 22px;
    }

    .metraf-why-grid {
        padding-bottom: 40px;
    }

    .metraf-why-card {
        min-height: auto;
        padding: 22px 20px;
    }

    .metraf-about-cta {
        margin-bottom: -60px;
        padding: 30px 20px;
        border-radius: 12px;
    }

    .metraf-about-cta h2 {
        font-size: 20px;
    }

    .metraf-about-cta p {
        font-size: 12px;
    }

    .metraf-home-link {
        padding-top: 100px;
    }

}


/* =========================================================
   SMALL MOBILE
========================================================= */

@media (max-width: 480px) {

    .metraf-about-content h1 {
        font-size: 25px;
    }

    .metraf-sub-heading h2 {
        font-size: 21px;
    }

    .metraf-info-card h3 {
        font-size: 16px;
    }

    .metraf-info-card p {
        font-size: 13px;
    }

    .metraf-about-cta {
        padding: 27px 17px;
    }

    .metraf-about-cta h2 {
        font-size: 18px;
    }

}



/* =========================================================
   METRAF BLOG DETAIL
========================================================= */

.metraf-blog-detail {
    background: #f1f5f9;
    color: #111827;
    font-family: "Manrope", sans-serif;
    padding: 50px 0;
}


/* =========================================================
   MAIN ARTICLE CONTAINER
========================================================= */

.metraf-blog-article {
    width: 100%;
    max-width: 980px;
    margin: 0 auto;
    padding: 15px 0 45px;
}


/* =========================================================
   FEATURED IMAGE
========================================================= */

.blog-featured-image {
    width: 100%;
    margin-bottom: 8px;
}

.blog-featured-image img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
}


/* =========================================================
   TABLE OF CONTENTS
========================================================= */

.blog-toc {
    margin-bottom: 20px;
}

.blog-toc h3 {
    font-size: 2.5rem;
    line-height: 1.3;
    font-weight: 700;
    margin: 0 0 8px;
    color: #111827;
}

.blog-toc ul {
    margin: 0;
    padding-left: 22px;
}

.blog-toc li {
    line-height: 1.45;
    margin-bottom: 1px;
    color: #111827;
}

.blog-toc li ul {
    padding-left: 20px;
}

.blog-toc a {
    color: #1723e8;
    text-decoration: underline;
}

.blog-toc a:hover {
    color: #0d6efd;
}


/* =========================================================
   ARTICLE CONTENT
========================================================= */

.blog-content {
    line-height: 1.55;
    color: #343a40;
}

.blog-content p {
    margin: 0 0 12px;
}

.blog-content h2 {
  font-size: 28px;
  line-height: 1.25;
  font-weight: 700;
  color: #101828;
  margin: 20px 0;
}
.blog-faq .faq-item {
  background: transparent;
  border: none;
}

.blog-content h3 {
    font-size: 14px;
    line-height: 1.35;
    font-weight: 700;
    color: #111827;
    margin: 14px 0 5px;
}

.blog-content a {
    color: #2525db;
    text-decoration: underline;
    font-weight: 600;
}

.blog-content strong {
    font-weight: 700;
    color: #1f2937;
}


/* =========================================================
   BENEFITS LIST
========================================================= */

.blog-benefits {
    padding-left: 20px;
    margin: 8px 0 15px;
}

.blog-benefits li {
    margin-bottom: 2px;
}


/* =========================================================
   FAQ
========================================================= */

.blog-faq {
    margin-top: 5px;
}

.faq-item {
    margin-bottom: 13px;
}

.faq-item h3 {
  font-size: 18px;
  margin: 0 0 3px;
}

.faq-item p {
    margin-bottom: 0;
}


/* =========================================================
   PREVIOUS POST
========================================================= */

.blog-post-navigation {
    background: #eef3f7;
    border-top: 1px solid #e1e7ec;
    border-bottom: 1px solid #e1e7ec;
}

.blog-post-navigation .container {
    padding-top: 12px;
    padding-bottom: 12px;
}

.previous-post {
    color: #1e2ce0;
    text-decoration: none;
}

.previous-post:hover {
    text-decoration: underline;
}


/* =========================================================
   RELATED POSTS
========================================================= */

.related-posts {
  padding: 30px;
  background: #fff;
  margin-bottom: 30px;
}

.related-title {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 12px;
    color: #111827;
}


/* Card */

.related-card {
    background: #fff;
    border-radius: 7px;
    overflow: hidden;
    height: 100%;
    border: 1px solid #e1e5e9;
}

.related-image {
    display: block;
    width: 100%;
}

.related-image img {
    display: block;
    width: 100%;
    height: 290px;
    object-fit: cover;
}

.related-content {
    padding: 10px 12px 13px;
}

.related-content h3 {
    line-height: 1.3;
    margin: 0 0 8px;
}

.related-content h3 a {
    color: #1c19db;
    text-decoration: underline;
}

.related-content p {
    line-height: 1.5;
    margin-bottom: 8px;
    color: #555;
}

.read-more {
    color: #1d19db;
    text-decoration: underline;
}


/* =========================================================
   COMMENTS
========================================================= */

.blog-comments {
    padding: 50px;
    background: #fff;
    border-top: 1px solid #edf0f3;
}



.comments-wrapper h2 {
    font-weight: 700;
    margin-bottom: 3px;
}

.comment-note {
    color: #777;
    margin-bottom: 15px;
}


/* Textarea */

.comment-form textarea,
.comment-form input {
    border: 1px solid #d9dee4;
    border-radius: 0;
    box-shadow: none;
    color: #333;
}

.comment-form textarea {
    resize: vertical;
    min-height: 120px;
}

.comment-form textarea:focus,
.comment-form input:focus {
    border-color: #315ac8;
    box-shadow: 0 0 0 2px rgba(49, 90, 200, .08);
}

.comment-form input {
    height: 35px;
}


/* Checkbox */
.comment-form textarea {
  margin-bottom: 20px;
}
.comment-check {
    margin: 12px 0;
}

.comment-check label {
    display: flex;
    align-items: flex-start;
    gap: 6px;
    cursor: pointer;
    color: #555;
}

.comment-check input {
  margin: 4px 0;
  height: 15px;
}


/* Submit */

.comment-submit {
    border: 0;
    background: #3d1bc8;
    color: #fff;
    padding: 8px 15px;
    font-weight: 600;
    cursor: pointer;
}

.comment-submit:hover {
    background: #2f12a2;
}


/* =========================================================
   RESPONSIVE
========================================================= */

@media (max-width: 991px) {

    .metraf-blog-article {
        max-width: 90%;
    }

    .comments-wrapper {
        max-width: 90%;
    }

    .related-image img {
        height: 250px;
    }

}


@media (max-width: 767px) {

    .metraf-blog-article {
        max-width: 94%;
        padding-top: 12px;
    }

    .blog-content {
        font-size: 13px;
        line-height: 1.65;
    }

    .blog-content h2 {
        font-size: 21px;
        margin-top: 25px;
    }

    .blog-content h3 {
        font-size: 15px;
    }

    .blog-toc li {
        font-size: 12px;
        line-height: 1.5;
    }

    .related-posts {
        padding: 25px 0;
    }

    .related-image img {
        height: auto;
        max-height: 350px;
    }

    .comments-wrapper {
        max-width: 94%;
    }

}


@media (max-width: 575px) {

    .blog-featured-image {
        margin-bottom: 12px;
    }

    .blog-toc h3 {
        font-size: 17px;
    }

    .blog-content h2 {
        font-size: 20px;
    }

    .related-content h3 {
        font-size: 14px;
    }

    .comment-form input {
        margin-bottom: 0;
    }

}




/* =========================================================
   METRAF PVC PRODUCT DETAIL
========================================================= */

.metraf-product-detail {
    position: relative;
    isolation: isolate;
    overflow: hidden;

    padding: 80px 0 100px;

    background:
        linear-gradient(
            105deg,
            #ffffff 0%,
            #f4f7fc 22%,
            #dce7f8 48%,
            #c2d3ef 70%,
            #edf2fa 100%
        );
}


/* =========================================================
   MOVING BACKGROUND OVERLAY
========================================================= */

.metraf-product-detail::before {
    content: "";

    position: absolute;
    inset: 0;

    z-index: -1;

    background:
        linear-gradient(
            90deg,
            rgba(77, 123, 199, 0.25) 0%,
            rgba(255,255,255,0.05) 45%,
            rgba(255,255,255,0.35) 70%,
            rgba(111, 150, 213, 0.18) 100%
        );

    background-size: 220% 100%;

    animation: metrafProductGradient 12s ease-in-out infinite alternate;
}


@keyframes metrafProductGradient {

    0% {
        background-position: 0% 50%;
    }

    100% {
        background-position: 100% 50%;
    }
}


/* =========================================================
   PRODUCT TOP
========================================================= */

.metraf-product-top {
    margin-bottom: 55px;
}


/* =========================================================
   THUMBNAILS
========================================================= */

.metraf-product-thumbs {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 18px;
}


.metraf-thumb {
    width: 78px;
    height: 78px;

    padding: 0;

    border: 2px solid transparent;
    border-radius: 17px;

    overflow: hidden;

    background: rgba(255,255,255,0.45);

    cursor: pointer;

    transition:
        transform 0.3s ease,
        border-color 0.3s ease,
        box-shadow 0.3s ease,
        opacity 0.3s ease;
}


.metraf-thumb img {
    width: 100%;
    height: 100%;

    display: block;

    object-fit: cover;
}


.metraf-thumb:hover {
    transform: translateY(-3px);
    border-color: #2d6bd3;

    box-shadow:
        0 10px 25px rgba(31, 71, 130, 0.20);
}


.metraf-thumb:not(.active) {
    opacity: 0.65;
}


.metraf-thumb.active {
    opacity: 1;

    border-color: #1475d1;

    box-shadow:
        0 8px 20px rgba(37, 102, 184, 0.20);
}


/* =========================================================
   MAIN IMAGE BOX
========================================================= */

.metraf-product-image-box {

    min-height: 425px;

    padding: 40px;

    display: flex;
    align-items: center;
    justify-content: center;

    background: rgba(255,255,255,0.92);

    border-radius: 28px;

    box-shadow:
        0 20px 50px rgba(36, 68, 111, 0.12);

    transition:
        transform 0.4s ease,
        box-shadow 0.4s ease;
}


.metraf-product-image-box:hover {

    transform: translateY(-5px);

    box-shadow:
        0 25px 60px rgba(36, 68, 111, 0.18);
}


.metraf-main-product-image {

    width: 100%;
    max-width: 500px;

    height: 270px;

    object-fit: contain;

    display: block;

    transition:
        opacity 0.25s ease,
        transform 0.35s ease;
}


.metraf-main-product-image.image-changing {
    opacity: 0;
    transform: scale(0.96);
}


/* =========================================================
   PRODUCT CONTENT
========================================================= */

.metraf-product-content {
    padding-left: 20px;
}


.metraf-product-content h1 {

    margin-bottom: 25px;

    font-size: clamp(38px, 4vw, 56px);

    line-height: 1.1;

    font-weight: 700;

    color: #172d4c;
}


.metraf-product-content p {

    max-width: 650px;

    margin-bottom: 42px;

    font-size: 18px;

    line-height: 1.75;

    color: #536276;
}


/* =========================================================
   BUTTON
========================================================= */

.metraf-product-btn {

    display: inline-flex;
    align-items: center;
    justify-content: center;

    min-width: 205px;
    min-height: 52px;

    padding: 13px 28px;

    border: 0;
    border-radius: 7px;

    background: #2e5bc0;

    color: #fff;

    font-size: 16px;
    font-weight: 700;

    box-shadow:
        0 10px 25px rgba(46, 91, 192, 0.20);

    transition:
        background 0.3s ease,
        transform 0.3s ease,
        box-shadow 0.3s ease;
}


.metraf-product-btn:hover {

    color: #fff;

    background: #21499f;

    transform: translateY(-3px);

    box-shadow:
        0 15px 30px rgba(46, 91, 192, 0.28);
}


/* =========================================================
   INFORMATION SECTION
========================================================= */

.metraf-product-info {
    margin-top: 10px;
}


/* =========================================================
   WHITE CARDS
========================================================= */

.metraf-info-card {

    height: 100%;

    padding: 30px 34px;

    background: rgba(255,255,255,0.96);

    border-radius: 18px;

    box-shadow:
        0 15px 35px rgba(35, 65, 105, 0.10);

    transition:
        transform 0.35s ease,
        box-shadow 0.35s ease;
}


.metraf-info-card:hover {

    transform: translateY(-5px);

    box-shadow:
        0 20px 45px rgba(35, 65, 105, 0.15);
}


.metraf-info-card h2 {

    margin-bottom: 17px;

    font-size: 25px;

    line-height: 1.3;

    font-weight: 700;

    color: #172d4c;
}


.metraf-info-card ul {

    margin: 0;

    padding-left: 20px;

    color: #566276;
}


.metraf-info-card li {

    margin-bottom: 7px;

    font-size: 16px;

    line-height: 1.55;
}


.metraf-info-card li:last-child {
    margin-bottom: 0;
}


/* =========================================================
   SPECIFICATIONS
========================================================= */

.metraf-spec-card {

    min-height: 260px;

    padding: 30px 34px;
}


.metraf-spec-card ul {

    display: grid;

    grid-template-columns: repeat(2, minmax(0, 1fr));

    column-gap: 60px;

    row-gap: 7px;
}


/* =========================================================
   LARGE DESKTOP
========================================================= */

@media (min-width: 1400px) {

    .metraf-product-detail {
        padding-top: 90px;
        padding-bottom: 110px;
    }

    .metraf-product-image-box {
        min-height: 460px;
        padding: 80px 30px;
    }

    .metraf-main-product-image {
        height: 300px;
    }

}


/* =========================================================
   TABLET
========================================================= */

@media (max-width: 991.98px) {

    .metraf-product-detail {
        padding: 60px 0 80px;
    }


    .metraf-product-top {
        margin-bottom: 40px;
    }


    .metraf-product-thumbs {

        flex-direction: row;

        justify-content: center;

        margin-bottom: 10px;
    }


    .metraf-thumb {
        width: 70px;
        height: 70px;
    }


    .metraf-product-content {

        padding-left: 0;

        text-align: center;
    }


    .metraf-product-content p {
        margin-left: auto;
        margin-right: auto;
    }


    .metraf-spec-card ul {
        grid-template-columns: 1fr;
    }

}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 575.98px) {

    .metraf-product-detail {
        padding: 45px 0 60px;
    }


    .metraf-product-top {
        margin-bottom: 35px;
    }


    .metraf-thumb {

        width: 58px;
        height: 58px;

        border-radius: 13px;
    }


    .metraf-product-thumbs {
        gap: 10px;
    }


    .metraf-product-image-box {

        min-height: 300px;

        padding: 40px 15px;

        border-radius: 20px;
    }


    .metraf-main-product-image {
        height: 210px;
    }


    .metraf-product-content h1 {
        font-size: 36px;
    }


    .metraf-product-content p {

        font-size: 15px;

        line-height: 1.7;

        margin-bottom: 30px;
    }


    .metraf-info-card {

        padding: 24px 22px;

        border-radius: 15px;
    }


    .metraf-info-card h2 {
        font-size: 22px;
    }


    .metraf-info-card li {
        font-size: 14px;
    }


    .metraf-spec-card ul {
        padding-left: 18px;
    }

}

/* =========================================================
   ROLLING MILLS PAGE
========================================================= */

.metraf-rolling-section {
    padding: 40px 0 70px;
    color: #1d3150;
}


/* =========================================================
   PAGE HEADING
========================================================= */

.metraf-page-heading {
    margin-bottom: 15px;
}

.metraf-page-heading h1 {
    margin: 0;
    font-size: 32px;
    line-height: 1.2;
    font-weight: 700;
    color: #1d3150;
}


/* =========================================================
   HERO
========================================================= */

.metraf-rolling-hero {
    margin-top: 5px;
    margin-bottom: 48px;
}

.metraf-rolling-image-wrap {
    background: #fff;
    padding: 20px;
    border-radius: 20px;
    box-shadow: 0 15px 35px rgba(24, 52, 90, 0.10);
}

.metraf-rolling-image-wrap img {
    width: 100%;
    height: 365px;
    object-fit: cover;
    display: block;
    border-radius: 12px;
}


/* =========================================================
   HERO CONTENT
========================================================= */

.metraf-rolling-content {
    padding-left: 35px;
}

.metraf-rolling-content h2 {
    margin: 0 0 18px;
    font-size: 31px;
    line-height: 1.15;
    font-weight: 700;
    color: #1b3151;
}

.metraf-rolling-content p {
    margin: 0 0 16px;
    font-size: 15px;
    line-height: 1.7;
    color: #40536e;
}


/* =========================================================
   BUTTON
========================================================= */

.metraf-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;

    min-height: 48px;
    padding: 0 27px;

    border: 0;
    border-radius: 6px;

    background: #315abd;
    color: #fff !important;

    font-size: 14px;
    font-weight: 700;

    transition:
        transform .3s ease,
        box-shadow .3s ease,
        background .3s ease;
}

.metraf-btn:hover {
    background: #244da9;
    transform: translateY(-2px);
    box-shadow: 0 10px 22px rgba(35, 75, 160, .25);
}

.metraf-hero-btn {
    margin-top: 20px;
}


/* =========================================================
   MILL TYPE CARDS
========================================================= */

.metraf-mill-types {
    margin-bottom: 48px;
}

.metraf-mill-card {
    height: 100%;
    min-height: 138px;

    display: flex;
    flex-direction: column;
    justify-content: center;

    padding: 24px 20px;

    text-align: center;

    background: #fff;
    border-radius: 12px;

    box-shadow: 0 12px 30px rgba(30, 56, 95, .09);

    transition:
        transform .3s ease,
        box-shadow .3s ease;
}

.metraf-mill-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 18px 35px rgba(30, 56, 95, .14);
}

.metraf-mill-card h3 {
    margin: 0 0 8px;

    font-size: 19px;
    line-height: 1.3;
    font-weight: 700;

    color: #1d3150;
}

.metraf-mill-card p {
    max-width: 270px;
    margin: 0 auto;
    line-height: 1.65;

    color: #53647a;
}


/* =========================================================
   COMMON APPLICATIONS
========================================================= */

.metraf-applications {
    padding: 28px 24px 26px;

    margin-bottom: 50px;

    background: rgba(255, 255, 255, .9);

    border-radius: 15px;

    box-shadow: 0 12px 30px rgba(30, 56, 95, .08);
}

.metraf-applications h2 {
    margin: 0 0 22px;

    text-align: center;

    font-size: 20px;
    font-weight: 700;

    color: #1d3150;
}

.metraf-application-item {
    min-height: 48px;

    display: flex;
    align-items: center;
    justify-content: center;

    padding: 10px 12px;

    background: #fff;

    border-radius: 9px;

    text-align: center;
    font-weight: 500;

    color: #4b5b71;

    box-shadow: 0 7px 18px rgba(30, 56, 95, .07);

    transition:
        transform .3s ease,
        color .3s ease;
}

.metraf-application-item:hover {
    transform: translateY(-3px);
    color: #315abd;
}


/* =========================================================
   CTA
========================================================= */

.metraf-rolling-cta {
    padding: 38px 35px 40px;

    text-align: center;

    background: rgba(255, 255, 255, .93);

    border-radius: 15px;

    box-shadow: 0 15px 35px rgba(30, 56, 95, .10);
}

.metraf-rolling-cta h2 {
    margin: 0 0 14px;

    font-size: 31px;
    line-height: 1.25;
    font-weight: 700;
    color: #1d3150;
}

.metraf-rolling-cta p {
    max-width: 850px;

    margin: 0 auto 20px;

    line-height: 1.7;

    color: #52647b;
}


/* =========================================================
   RESPONSIVE
========================================================= */

@media (max-width: 991.98px) {

    .metraf-rolling-section {
        padding: 35px 0 60px;
    }

    .metraf-page-heading h1 {
        font-size: 28px;
    }

    .metraf-rolling-content {
        padding-left: 0;
        padding-top: 30px;
    }

    .metraf-rolling-content h2 {
        font-size: 27px;
    }

    .metraf-rolling-image-wrap img {
        height: 350px;
    }

    .metraf-hero-btn {
        margin-bottom: 15px;
    }

    .metraf-rolling-cta h2 {
        font-size: 27px;
    }
}


@media (max-width: 767.98px) {

    .metraf-rolling-section {
        padding: 30px 0 50px;
    }

    .metraf-page-heading {
        margin-bottom: 20px;
    }

    .metraf-page-heading h1 {
        font-size: 25px;
    }

    .metraf-rolling-hero {
        margin-bottom: 35px;
    }

    .metraf-rolling-image-wrap {
        padding: 12px;
        border-radius: 15px;
    }

    .metraf-rolling-image-wrap img {
        height: 280px;
        border-radius: 10px;
    }

    .metraf-rolling-content {
        padding-top: 25px;
    }

    .metraf-rolling-content h2 {
        font-size: 24px;
    }

    .metraf-rolling-content p {
        font-size: 14px;
        line-height: 1.65;
    }

    .metraf-mill-card {
        min-height: 145px;
    }

    .metraf-applications {
        padding: 25px 15px;
        margin-bottom: 35px;
    }

    .metraf-rolling-cta {
        padding: 30px 18px;
    }

    .metraf-rolling-cta h2 {
        font-size: 24px;
    }

    .metraf-rolling-cta p {
        font-size: 13px;
    }

    .metraf-btn {
        width: auto;
        min-height: 46px;
        padding: 0 20px;
    }
}


@media (max-width: 575.98px) {

    .metraf-page-heading h1 {
        font-size: 23px;
    }

    .metraf-rolling-image-wrap img {
        height: 240px;
    }

    .metraf-rolling-content h2 {
        font-size: 22px;
    }

    .metraf-mill-card {
        padding: 22px 18px;
    }

    .metraf-mill-card h3 {
        font-size: 18px;
    }

    .metraf-rolling-cta h2 {
        font-size: 22px;
    }

    .metraf-rolling-cta .metraf-btn {
        width: 100%;
    }
}