/* =========================================
   ROOT
========================================= */

:root {

    --primary: #13254c;
    --accent: #c53b31;

    --dark: #111827;
    --text: #374151;
    --muted: #6b7280;

    --light: #f7f8fa;
    --white: #ffffff;
    --border: #e5e7eb;

    --container: 1200px;

    --radius: 12px;

    --shadow:
        0 10px 30px rgba(0, 0, 0, 0.07);

}


/* =========================================
   RESET
========================================= */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {

    font-family:
        "Aptos Serif",
        Georgia,
        serif;

    color: var(--text);

    background: var(--white);

    line-height: 1.7;

    overflow-x: hidden;

}


/* =========================================
   GLOBAL
========================================= */

img {

    max-width: 100%;

    height: auto;

    display: block;

}

a {

    text-decoration: none;

    color: inherit;

}

button {

    font-family: inherit;

}

.container {

    width: min(
        92%,
        var(--container)
    );

    margin-inline: auto;

}

.section {

    padding: 90px 0;

}

.section-heading {

    max-width: 700px;

    margin: 0 auto 50px;

    text-align: center;

}

.section-label {

    display: inline-block;

    margin-bottom: 10px;

    color: var(--accent);

    font-size: 13px;

    font-weight: 700;

    letter-spacing: 2px;

}

h1,
h2,
h3 {

    color: var(--dark);

    line-height: 1.2;

}

h1 {

    font-size: clamp(
        42px,
        6vw,
        72px
    );

}

h2 {

    font-size: clamp(
        32px,
        4vw,
        48px
    );

}

h3 {

    font-size: 22px;

}

.section-heading p {

    margin-top: 18px;

    color: var(--muted);

}
/* =========================================================
   GLOBAL RESET
========================================================= */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    
    color: #112235;
    background: #ffffff;
}

img {
    max-width: 100%;
    height: auto;
}

a {
    text-decoration: none;
}

button {
    font-family: inherit;
}


/* =========================================================
   CONTAINER
========================================================= */

.container {
    width: min(1200px, 92%);
    margin: 0 auto;
}


/* =========================================================
   PREMIUM STICKY HEADER
========================================================= */

.site-header {
    position: sticky;
    top: 0;
    left: 0;
    width: 100%;

    z-index: 9999;

    background: #f7f8fa;

    border-bottom: 1px solid rgba(17, 34, 53, 0.10);

    box-shadow:
        0 6px 25px rgba(17, 34, 53, 0.08);

    transition:
        background 0.3s ease,
        box-shadow 0.3s ease;
}


/* =========================================================
   HEADER INNER
========================================================= */

.header-inner {
    min-height: 108px;

    display: flex;
    align-items: center;

    gap: 30px;
}


/* =========================================================
   LOGO
========================================================= */

.logo {
    width: 165px;

    display: flex;
    align-items: center;
    justify-content: center;

    flex-shrink: 0;

    background: transparent;
}

.logo img {
    width: 155px;
    height: auto;

    display: block;

    object-fit: contain;
}


/* =========================================================
   RIGHT HEADER AREA
========================================================= */

.header-right {
    flex: 1;

    display: flex;
    flex-direction: column;

    min-width: 0;
}


/* =========================================================
   TOP CONTACT AREA
========================================================= */

.header-top {
    min-height: 48px;

    display: flex;
    align-items: center;
    justify-content: flex-end;

    gap: 24px;

    border-bottom: 1px solid rgba(17, 34, 53, 0.10);
}


/* =========================================================
   CONTACT ITEM
========================================================= */

.header-contact {
    display: flex;
    align-items: center;

    gap: 9px;

    color: #112235;

    font-size: 14px;
    font-weight: 700;

    white-space: nowrap;

    transition: color 0.3s ease;
}

.header-contact:hover {
    color: #fd691b;
}


/* =========================================================
   CONTACT ICON
========================================================= */

.header-contact i {
    width: 34px;
    height: 34px;

    display: flex;
    align-items: center;
    justify-content: center;

    background: #fff1e9;

    color: #fd691b;

    border: 1px solid rgba(253, 105, 27, 0.25);

    border-radius: 50%;

    font-size: 13px;

    transition: all 0.3s ease;
}

.header-contact:hover i {
    background: #fd691b;
    color: #ffffff;

    transform: translateY(-2px);
}


/* =========================================================
   SOCIAL MEDIA
========================================================= */

.header-social {
    display: flex;
    align-items: center;

    gap: 8px;

    margin-left: 4px;
}

.header-social a {
    width: 33px;
    height: 33px;

    display: flex;
    align-items: center;
    justify-content: center;

    background: #112235;

    color: #ffffff;

    border-radius: 50%;

    font-size: 13px;

    transition: all 0.3s ease;
}

.header-social a:hover {
    background: #fd691b;

    transform: translateY(-3px);

    box-shadow:
        0 6px 15px rgba(253, 105, 27, 0.25);
}


/* =========================================================
   NAVIGATION
========================================================= */

.main-nav {
    min-height: 59px;

    display: flex;
    align-items: center;
    justify-content: flex-end;

    gap: 29px;
}


/* =========================================================
   NAV LINKS
========================================================= */

.main-nav > a {
    position: relative;

    display: flex;
    align-items: center;

    height: 59px;

    color: #112235;

    font-size: 17px;
    font-weight: 700;

    white-space: nowrap;

    transition: color 0.3s ease;
}

.main-nav > a:hover {
    color: #fd691b;
}


/* =========================================================
   ACTIVE NAVIGATION
========================================================= */

.main-nav > a.active {
    color: #fd691b;
}

.main-nav > a.active::after {
    content: "";

    position: absolute;

    left: 0;
    right: 0;

    bottom: 0;

    height: 3px;

    background: #fd691b;

    border-radius:
        5px 5px 0 0;
}


/* =========================================================
   PRODUCTS DROPDOWN
========================================================= */

.nav-dropdown {
    position: relative;

    height: 59px;

    display: flex;
    align-items: center;
}


/* =========================================================
   DROPDOWN BUTTON
========================================================= */

.dropdown-btn {
    height: 59px;

    display: flex;
    align-items: center;

    gap: 6px;

    padding: 0;

    background: transparent;

    border: 0;

    color: #112235;

    font-size: 17px;
    font-weight: 700;

    cursor: pointer;

    transition: color 0.3s ease;
}

.dropdown-btn:hover {
    color: #fd691b;
}

.dropdown-btn span {
    color: #fd691b;

    font-size: 16px;

    transition:
        transform 0.3s ease;
}

.nav-dropdown:hover .dropdown-btn span {
    transform: rotate(180deg);
}


/* =========================================================
   DROPDOWN MENU
========================================================= */

.dropdown-menu {
    position: absolute;

    top: calc(100% + 1px);
    left: -18px;

    width: 235px;

    padding: 10px;

    background: #ffffff;

    border-top: 3px solid #fd691b;

    border-radius:
        0 0 8px 8px;

    box-shadow:
        0 18px 40px rgba(17, 34, 53, 0.15);

    opacity: 0;
    visibility: hidden;

    transform:
        translateY(10px);

    transition:
        opacity 0.25s ease,
        visibility 0.25s ease,
        transform 0.25s ease;
}

.nav-dropdown:hover .dropdown-menu {
    opacity: 1;

    visibility: visible;

    transform:
        translateY(0);
}


/* =========================================================
   DROPDOWN LINKS
========================================================= */

.dropdown-menu a {
    display: block;

    padding: 12px 14px;

    color: #112235;

    font-size: 14px;
    font-weight: 600;

    border-radius: 5px;

    transition:
        background 0.25s ease,
        color 0.25s ease,
        padding-left 0.25s ease;
}

.dropdown-menu a:hover {
    background: #fff1e9;

    color: #fd691b;

    padding-left: 20px;
}


/* =========================================================
   GET QUOTE BUTTON
========================================================= */

.header-btn {
    min-width: 125px;

    height: 44px;

    padding: 0 20px;

    display: inline-flex;
    align-items: center;
    justify-content: center;

    gap: 7px;

    background: #fd691b;

    color: #ffffff;

    border-radius: 6px;

    font-size: 14px;
    font-weight: 800;

    white-space: nowrap;

    box-shadow:
        0 7px 18px rgba(253, 105, 27, 0.22);

    transition:
        background 0.3s ease,
        transform 0.3s ease,
        box-shadow 0.3s ease;
}

.header-btn:hover {
    background: #112235;

    color: #ffffff;

    transform: translateY(-2px);

    box-shadow:
        0 9px 22px rgba(17, 34, 53, 0.20);
}


/* =========================================================
   MOBILE MENU BUTTON
========================================================= */

.menu-toggle {
    display: none;

    width: 44px;
    height: 44px;

    margin-left: auto;

    align-items: center;
    justify-content: center;

    background: #112235;

    color: #ffffff;

    border: none;

    border-radius: 6px;

    font-size: 22px;

    cursor: pointer;

    transition:
        background 0.3s ease;
}

.menu-toggle:hover {
    background: #fd691b;
}


/* =========================================================
   TABLET
========================================================= */

@media (max-width: 1100px) {

    .container {
        width: 94%;
    }

    .header-inner {
        gap: 20px;
    }

    .logo {
        width: 145px;
    }

    .logo img {
        width: 140px;
    }

    .main-nav {
        gap: 18px;
    }

    .main-nav > a,
    .dropdown-btn {
        font-size: 14px;
    }

    .header-btn {
        min-width: 110px;

        padding: 0 15px;

        font-size: 13px;
    }

    .header-contact {
        font-size: 13px;
    }

    .header-top {
        gap: 15px;
    }
}


/* =========================================================
   SMALL TABLET / MOBILE
========================================================= */

@media (max-width: 900px) {

    .header-inner {
        min-height: 78px;
    }

    .logo {
        width: auto;
    }

    .logo img {
        width: 130px;
    }

    .menu-toggle {
        display: flex;
    }

    .header-right {
        position: absolute;

        top: 78px;
        left: 0;
        right: 0;

        display: none;

        width: 100%;

        padding: 15px 20px 20px;

        background: #f7f8fa;

        border-top: 1px solid rgba(17, 34, 53, 0.08);

        box-shadow:
            0 15px 35px rgba(17, 34, 53, 0.14);
    }

    .header-right.active {
        display: block;
    }


    /* Contact Row */

    .header-top {
        min-height: auto;

        padding-bottom: 14px;

        justify-content: flex-start;

        flex-wrap: wrap;

        gap: 10px 18px;
    }

    .header-contact {
        font-size: 12px;
    }

    .header-contact i {
        width: 30px;
        height: 30px;
    }


    /* Social */

    .header-social {
        margin-left: 0;
    }

    .header-social a {
        width: 30px;
        height: 30px;
    }


    /* Navigation */

    .main-nav {
        min-height: auto;

        display: flex;

        flex-direction: column;

        align-items: stretch;

        justify-content: flex-start;

        gap: 0;

        padding-top: 8px;
    }

    .main-nav > a {
        width: 100%;

        height: auto;

        min-height: 48px;

        padding: 12px 5px;

        border-bottom:
            1px solid rgba(17, 34, 53, 0.08);
    }

    .main-nav > a.active::after {
        display: none;
    }


    /* Dropdown */

    .nav-dropdown {
        height: auto;

        display: block;

        width: 100%;
    }

    .dropdown-btn {
        width: 100%;

        height: 48px;

        justify-content: space-between;

        border-bottom:
            1px solid rgba(17, 34, 53, 0.08);
    }

    .dropdown-menu {
        position: static;

        width: 100%;

        display: none;

        padding: 5px 0 5px 15px;

        background: #f1f3f5;

        border: 0;

        border-left: 3px solid #fd691b;

        border-radius: 0;

        box-shadow: none;

        opacity: 1;

        visibility: visible;

        transform: none;
    }

    .nav-dropdown:hover .dropdown-menu {
        display: block;
    }

    .dropdown-menu a {
        padding: 11px 12px;
    }

    .dropdown-menu a:hover {
        padding-left: 16px;
    }


    /* Quote Button */

    .header-btn {
        width: 100%;

        margin-top: 15px;

        height: 46px;
    }
}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 600px) {

    .container {
        width: 92%;
    }

    .header-inner {
        min-height: 72px;
    }

    .logo img {
        width: 120px;
    }

    .menu-toggle {
        width: 42px;
        height: 42px;

        font-size: 20px;
    }

    .header-right {
        top: 72px;

        padding:
            12px 15px 18px;
    }

    .header-top {
        display: grid;

        grid-template-columns:
            1fr 1fr;

        gap: 8px;
    }

    .header-contact {
        font-size: 11px;

        gap: 6px;
    }

    .header-contact i {
        width: 27px;
        height: 27px;

        font-size: 11px;
    }

    .header-social {
        grid-column:
            1 / -1;

        justify-content: flex-start;

        padding-top: 3px;
    }

    .header-social a {
        width: 29px;
        height: 29px;

        font-size: 12px;
    }
}


/* =========================================================
   VERY SMALL MOBILE
========================================================= */

@media (max-width: 400px) {

    .logo img {
        width: 108px;
    }

    .header-contact {
        font-size: 10px;
    }

    .header-contact i {
        width: 25px;
        height: 25px;
    }

    .menu-toggle {
        width: 40px;
        height: 40px;
    }
}
@media (max-width: 900px) {

    .header-btn {
        display: none !important;
    }

}

/* =========================================================
   OPTIONAL HEADER SCROLL EFFECT
========================================================= */

.site-header.scrolled {
    background: #ffffff;

    box-shadow:
        0 8px 30px rgba(17, 34, 53, 0.12);
}


/* =========================================================
   ACCESSIBILITY
========================================================= */

.main-nav a:focus-visible,
.dropdown-btn:focus-visible,
.header-btn:focus-visible,
.menu-toggle:focus-visible,
.header-social a:focus-visible {
    outline: 3px solid rgba(253, 105, 27, 0.35);

    outline-offset: 3px;
}


/* =========================================================
   REDUCE MOTION
========================================================= */

@media (prefers-reduced-motion: reduce) {

    *,
    *::before,
    *::after {
        scroll-behavior: auto !important;

        transition-duration: 0.01ms !important;

        animation-duration: 0.01ms !important;

        animation-iteration-count: 1 !important;
    }
}
/* =========================================
   PREMIUM HERO BANNER
========================================= */

.hero {
    position: relative;
    width: 100%;
    height: 550px;
    min-height: 550px;
    overflow: hidden;
    background: #f7f8f9;
}

/* =========================================
   HERO IMAGE
========================================= */

.hero-bg-img {
    position: absolute;
    inset: 0;

    width: 100%;
    height: 100%;

    object-fit: cover;
    object-position: center center;

    z-index: 1;
}

/* =========================================
   LIGHT OVERLAY
========================================= */

.hero-overlay {
    position: absolute;
    inset: 0;

    z-index: 2;

    background: linear-gradient(
        90deg,
        rgba(255,255,255,0.30) 0%,
        rgba(255,255,255,0.20) 35%,
        rgba(255,255,255,0.05) 60%,
        rgba(255,255,255,0) 100%
    );
}

/* =========================================
   CONTAINER
========================================= */

.container {
    width: min(1240px, 92%);
    margin: 0 auto;
}

/* =========================================
   HERO CONTENT
========================================= */

.hero-content {
    position: relative;
    z-index: 5;

    height: 100%;

    display: flex;
    flex-direction: column;
    justify-content: center;

    padding: 40px 50% 40px 0;
}

/* =========================================
   EYEBROW
========================================= */

.eyebrow {
    display: flex;
    align-items: center;
    gap: 10px;

    margin-bottom: 18px;

    color: #fd691b;

    font-size: 13px;
    font-weight: 800;

    letter-spacing: 1.8px;
    text-transform: uppercase;
}

.eyebrow::before {
    content: "";

    width: 38px;
    height: 3px;

    background: #fd691b;

    border-radius: 10px;
}

/* =========================================
   HEADING
========================================= */

.hero h1 {
    margin: 0 0 22px;

    color: #112235;

    font-size: clamp(48px, 5vw, 70px);

    line-height: 1.02;

    font-weight: 800;

    letter-spacing: -2px;
}

.hero h1 span {
    display: block;
    color: #fd691b;
}

/* =========================================
   DESCRIPTION
========================================= */

.hero p {
    max-width: 590px;

    margin: 0 0 30px;

    color: #465568;

    font-size: 16px;

    line-height: 1.75;
}

/* =========================================
   BUTTONS
========================================= */

.hero-buttons {
    display: flex;
    align-items: center;
    gap: 14px;

    flex-wrap: wrap;
}

.btn {
    display: inline-flex;

    align-items: center;
    justify-content: center;

    min-height: 50px;

    padding: 0 27px;

    border-radius: 5px;

    font-size: 14px;
    font-weight: 700;

    text-decoration: none;

    transition: all 0.3s ease;
}

/* PRIMARY */

.btn-primary {
    color: #ffffff;

    background: #fd691b;

    border: 2px solid #fd691b;

    box-shadow: 0 10px 25px rgba(253,105,27,0.20);
}

.btn-primary:hover {
    color: #ffffff;

    background: #112235;

    border-color: #112235;

    transform: translateY(-2px);
}

/* OUTLINE */

.btn-outline {
    color: #112235;

    background: rgba(255,255,255,0.88);

    border: 2px solid #112235;
}

.btn-outline:hover {
    color: #ffffff;

    background: #112235;

    transform: translateY(-2px);
}


/* =========================================
   LARGE DESKTOP
========================================= */

@media (min-width: 1400px) {

    .hero {
        height: 680px;
        min-height: 680px;
    }

    .hero-content {
        padding-right: 51%;
    }

    .hero h1 {
        font-size: 74px;
    }
}


/* =========================================
   TABLET
========================================= */

@media (max-width: 1100px) {

    .hero {
        height: 580px;
        min-height: 580px;
    }

    .hero-content {
        padding-right: 46%;
    }

    .hero h1 {
        font-size: 52px;
    }

    .hero p {
        font-size: 15px;
    }

    .hero-bg-img {
        object-position: center center;
    }
}


/* =========================================
   MOBILE LANDSCAPE / SMALL TABLET
========================================= */

@media (max-width: 768px) {

    .hero {
        height: 720px;
        min-height: 720px;
    }

    /*
       Put image slightly toward right so
       electrodes remain visible.
    */

    .hero-bg-img {
        object-position: 65% center;
    }

    /*
       Stronger white area behind text
    */

    .hero-overlay {
        background: linear-gradient(
            180deg,
            rgba(255,255,255,0.96) 0%,
            rgba(255,255,255,0.90) 42%,
            rgba(255,255,255,0.55) 68%,
            rgba(255,255,255,0.10) 100%
        );
    }

    .hero-content {
        height: auto;
        min-height: 720px;

        padding: 55px 25px 40px;

        justify-content: flex-start;

        text-align: left;
    }

    .eyebrow {
        margin-bottom: 15px;

        font-size: 11px;

        letter-spacing: 1.4px;
    }

    .eyebrow::before {
        width: 28px;
    }

    .hero h1 {
        max-width: 600px;

        margin-bottom: 20px;

        font-size: 48px;

        line-height: 1.05;

        letter-spacing: -1.5px;
    }

    .hero p {
        max-width: 580px;

        margin-bottom: 27px;

        font-size: 15px;

        line-height: 1.7;
    }

    .hero-buttons {
        gap: 10px;
    }

    .btn {
        min-height: 48px;

        padding: 0 23px;

        font-size: 13px;
    }
}


/* =========================================
   MOBILE
========================================= */

@media (max-width: 576px) {

    .hero {
        height: 760px;
        min-height: 760px;
    }

    .hero-bg-img {
        /*
           Image stays behind content.
           Product remains visible toward
           the lower/right portion.
        */
        object-position: 68% center;
    }

    .hero-overlay {
        background: linear-gradient(
            180deg,
            rgba(255,255,255,0.98) 0%,
            rgba(255,255,255,0.94) 40%,
            rgba(255,255,255,0.72) 60%,
            rgba(255,255,255,0.18) 100%
        );
    }

    .hero-content {
        min-height: 760px;

        padding: 45px 20px 30px;
    }

    .eyebrow {
        font-size: 10px;

        letter-spacing: 1.2px;

        margin-bottom: 13px;
    }

    .eyebrow::before {
        width: 25px;
        height: 2px;
    }

    .hero h1 {
        font-size: 39px;

        line-height: 1.04;

        letter-spacing: -1px;

        margin-bottom: 18px;
    }

    .hero p {
        max-width: 100%;

        font-size: 14px;

        line-height: 1.65;

        margin-bottom: 24px;
    }

    .hero-buttons {
        width: 100%;

        display: flex;
        flex-direction: column;

        align-items: flex-start;

        gap: 10px;
    }

    .btn {
        width: auto;

        min-width: 190px;

        min-height: 46px;

        padding: 0 20px;
    }
}


/* =========================================
   VERY SMALL MOBILE
========================================= */

@media (max-width: 390px) {

    .hero {
        height: 730px;
        min-height: 730px;
    }

    .hero-content {
        min-height: 730px;

        padding: 38px 18px 25px;
    }

    .hero h1 {
        font-size: 34px;
    }

    .hero p {
        font-size: 13px;
    }

    .hero-bg-img {
        object-position: 70% center;
    }
}

/* =========================================
   PREMIUM TRUST BAR
   COLORS:
   NAVY  #112235
   ORANGE #fd691b
========================================= */

.trust-bar {
    position: relative;

    width: 100%;

    background: #112235;

    overflow: hidden;

    border-top: 3px solid #fd691b;

    box-shadow:
        0 12px 35px rgba(17, 34, 53, 0.18);

    z-index: 10;
}


/* =========================================
   SUBTLE PREMIUM TEXTURE
========================================= */

.trust-bar::before {
    content: "";

    position: absolute;

    inset: 0;

    background-image:
        radial-gradient(
            rgba(255,255,255,0.06) 1px,
            transparent 1px
        );

    background-size: 18px 18px;

    opacity: 0.35;

    pointer-events: none;
}


/* =========================================
   ORANGE GLOW
========================================= */

.trust-bar::after {
    content: "";

    position: absolute;

    width: 400px;
    height: 150px;

    left: 50%;
    top: -100px;

    transform: translateX(-50%);

    background: rgba(253,105,27,0.10);

    filter: blur(60px);

    pointer-events: none;
}


/* =========================================
   GRID
========================================= */

.trust-grid {
    position: relative;

    z-index: 2;

    width: min(1240px, 92%);

    margin: auto;

    display: grid;

    grid-template-columns:
        repeat(4, 1fr);
}


/* =========================================
   TRUST ITEM
========================================= */

.trust-item {
    position: relative;

    min-height: 130px;

    display: flex;

    align-items: center;

    justify-content: center;

    gap: 15px;

    padding: 20px 25px;

    border-right:
        1px solid rgba(255,255,255,0.12);

    transition:
        background 0.3s ease,
        transform 0.3s ease;
}

.trust-item:last-child {
    border-right: none;
}


/* =========================================
   HOVER EFFECT
========================================= */

.trust-item:hover {
    background:
        rgba(253,105,27,0.06);

    transform: translateY(-2px);
}


/* =========================================
   ICON
========================================= */

.trust-icon {
    width: 55px;
    height: 55px;

    flex: 0 0 55px;

    display: flex;

    align-items: center;
    justify-content: center;

    border-radius: 50%;

    background: rgba(253,105,27,0.10);

    border:
        1px solid rgba(253,105,27,0.40);

    box-shadow:
        0 0 0 5px rgba(253,105,27,0.04);
}

.trust-icon img {
    width: 28px;
    height: 28px;

    object-fit: contain;

    filter:
        brightness(0)
        saturate(100%)
        invert(52%)
        sepia(92%)
        saturate(3268%)
        hue-rotate(345deg)
        brightness(101%)
        contrast(100%);
}


/* =========================================
   CONTENT
========================================= */

.trust-content {
    display: flex;

    flex-direction: column;

    justify-content: center;
}


/* =========================================
   NUMBER
========================================= */

.trust-content strong {
    color: #ffffff;

    font-size: 34px;

    line-height: 1;

    font-weight: 800;

    letter-spacing: -1px;
}


/* Orange + */

.trust-content strong::after {
    content: "+";

    color: #fd691b;

    font-size: 18px;

    margin-left: 2px;

    vertical-align: top;
}


/* =========================================
   LABEL
========================================= */

.trust-content span {
    margin-top: 7px;

    color: rgba(255,255,255,0.68);

    font-size: 12px;

    line-height: 1.3;

    font-weight: 600;

    letter-spacing: 0.3px;
}


/* =========================================
   ORANGE BOTTOM ACCENT
========================================= */

.trust-item::after {
    content: "";

    position: absolute;

    bottom: 0;
    left: 50%;

    width: 0;
    height: 2px;

    background: #fd691b;

    transform: translateX(-50%);

    transition: width 0.3s ease;
}

.trust-item:hover::after {
    width: 55px;
}


/* =========================================
   TABLET
========================================= */

@media (max-width: 992px) {

    .trust-grid {
        grid-template-columns:
            repeat(2, 1fr);
    }

    .trust-item:nth-child(2) {
        border-right: none;
    }

    .trust-item:nth-child(1),
    .trust-item:nth-child(2) {
        border-bottom:
            1px solid rgba(255,255,255,0.12);
    }
}


/* =========================================
   MOBILE
========================================= */

@media (max-width: 576px) {

    .trust-grid {
        width: 100%;

        grid-template-columns:
            repeat(2, 1fr);
    }

    .trust-item {
        min-height: 110px;

        gap: 9px;

        padding: 15px 8px;
    }

    .trust-icon {
        width: 42px;
        height: 42px;

        flex-basis: 42px;
    }

    .trust-icon img {
        width: 21px;
        height: 21px;
    }

    .trust-content strong {
        font-size: 27px;
    }

    .trust-content span {
        margin-top: 5px;

        font-size: 9px;
    }

    .trust-content strong::after {
        font-size: 14px;
    }
}


/* =========================================
   SMALL MOBILE
========================================= */

@media (max-width: 380px) {

    .trust-item {
        gap: 6px;

        padding: 12px 5px;
    }

    .trust-icon {
        width: 36px;
        height: 36px;

        flex-basis: 36px;
    }

    .trust-icon img {
        width: 18px;
        height: 18px;
    }

    .trust-content strong {
        font-size: 23px;
    }

    .trust-content span {
        font-size: 8px;
    }
}
/* =========================================
   PREMIUM ABOUT SECTION
   SMSC
   #112235 NAVY
   #fd691b ORANGE
========================================= */

.about-section {
    position: relative;

    padding: 100px 0;

    background: #ffffff;

    overflow: hidden;
}


/* =========================================
   SUBTLE BACKGROUND DETAIL
========================================= */

.about-section::before {
    content: "";

    position: absolute;

    width: 350px;
    height: 350px;

    left: -180px;
    bottom: -180px;

    border-radius: 50%;

    background: rgba(253, 105, 27, 0.05);

    pointer-events: none;
}


/* =========================================
   GRID
========================================= */

.about-grid {
    position: relative;

    display: grid;

    grid-template-columns: 48% 52%;

    align-items: center;

    gap: 70px;
}


/* =========================================
   IMAGE AREA
========================================= */

.about-image {
    position: relative;

    padding: 0 35px 35px 0;
}


/* IMAGE BOX */

.about-image-box {
    position: relative;

    width: 100%;

    height: 520px;

    overflow: hidden;

    background: #f2f4f6;

    border-radius: 4px;

    box-shadow:
        0 20px 50px rgba(17, 34, 53, 0.14);
}


/* IMAGE */

.about-image-box img {
    width: 100%;
    height: 100%;

    display: block;

    object-fit: cover;

    transition: transform 0.6s ease;
}

.about-image:hover .about-image-box img {
    transform: scale(1.04);
}


/* =========================================
   ORANGE FRAME
========================================= */

.about-image::after {
    content: "";

    position: absolute;

    left: 25px;
    bottom: 10px;

    width: 85%;

    height: 85%;

    border: 2px solid #fd691b;

    z-index: -1;
}


/* =========================================
   EXPERIENCE BOX
========================================= */

.about-experience {
    position: absolute;

    right: 0;
    bottom: 0;

    width: 190px;

    min-height: 125px;

    padding: 20px;

    display: flex;

    flex-direction: column;

    justify-content: center;

    background: #112235;

    border-left: 5px solid #fd691b;

    box-shadow:
        0 15px 35px rgba(17, 34, 53, 0.25);
}

.about-experience strong {
    color: #ffffff;

    font-size: 40px;

    line-height: 1;

    font-weight: 800;
}

.about-experience span {
    margin-top: 8px;

    color: rgba(255,255,255,0.72);

    font-size: 11px;

    line-height: 1.4;

    font-weight: 600;

    text-transform: uppercase;

    letter-spacing: 0.8px;
}


/* =========================================
   CONTENT
========================================= */

.about-content {
    padding: 10px 0;
}


/* EYEBROW */

.about-eyebrow {
    position: relative;

    display: inline-flex;

    align-items: center;

    gap: 10px;

    margin-bottom: 18px;

    color: #fd691b;

    font-size: 12px;

    font-weight: 800;

    letter-spacing: 2px;

    text-transform: uppercase;
}

.about-eyebrow::before {
    content: "";

    width: 35px;
    height: 3px;

    background: #fd691b;

    border-radius: 5px;
}


/* =========================================
   HEADING
========================================= */

.about-content h2 {
    max-width: 650px;

    margin: 0 0 25px;

    color: #112235;

    font-size: clamp(40px, 4vw, 58px);

    line-height: 1.05;

    font-weight: 800;

    letter-spacing: -1.8px;
}

.about-content h2 span {
    display: block;

    color: #fd691b;
}


/* =========================================
   PARAGRAPHS
========================================= */

.about-content p {
    max-width: 680px;

    margin: 0 0 17px;

    color: #5c6977;

    font-size: 15px;

    line-height: 1.8;
}

.about-content p strong {
    color: #112235;

    font-weight: 700;
}


/* =========================================
   HIGHLIGHTS
========================================= */

.about-highlights {
    display: grid;

    grid-template-columns:
        repeat(3, 1fr);

    margin: 30px 0;

    border-top:
        1px solid rgba(17,34,53,0.10);

    border-bottom:
        1px solid rgba(17,34,53,0.10);
}


.about-highlight {
    position: relative;

    padding: 18px 15px;

    border-right:
        1px solid rgba(17,34,53,0.10);
}

.about-highlight:last-child {
    border-right: none;
}


.about-highlight span {
    display: block;

    margin-bottom: 7px;

    color: #fd691b;

    font-size: 11px;

    font-weight: 800;

    letter-spacing: 1px;
}


.about-highlight strong {
    display: block;

    color: #112235;

    font-size: 14px;

    font-weight: 800;
}


.about-highlight small {
    display: block;

    margin-top: 4px;

    color: #7a8590;

    font-size: 10px;
}


/* =========================================
   BUTTON
========================================= */

.about-btn {
    display: inline-flex;

    align-items: center;

    gap: 15px;

    min-height: 50px;

    padding: 0 24px;

    color: #ffffff;

    background: #112235;

    border: 2px solid #112235;

    border-radius: 4px;

    font-size: 13px;

    font-weight: 700;

    text-decoration: none;

    transition: all 0.3s ease;
}

.about-btn span {
    color: #fd691b;

    font-size: 20px;

    line-height: 1;

    transition: transform 0.3s ease;
}

.about-btn:hover {
    color: #ffffff;

    background: #fd691b;

    border-color: #fd691b;

    transform: translateY(-2px);
}

.about-btn:hover span {
    color: #ffffff;

    transform: translateX(4px);
}


/* =========================================
   TABLET
========================================= */

@media (max-width: 992px) {

    .about-section {
        padding: 75px 0;
    }

    .about-grid {
        grid-template-columns: 1fr;

        gap: 55px;
    }

    .about-image {
        max-width: 700px;

        margin: auto;

        width: 100%;
    }

    .about-content {
        max-width: 750px;

        margin: auto;
    }

    .about-content h2 {
        font-size: 48px;
    }
}


/* =========================================
   MOBILE
========================================= */

@media (max-width: 576px) {

    .about-section {
        padding: 60px 0;
    }

    .about-grid {
        gap: 45px;
    }

    .about-image {
        padding: 0 18px 25px 0;
    }

    .about-image-box {
        height: 380px;
    }

    .about-image::after {
        left: 12px;
        bottom: 3px;

        width: 88%;
        height: 88%;
    }

    .about-experience {
        width: 155px;

        min-height: 100px;

        padding: 15px;

        border-left-width: 4px;
    }

    .about-experience strong {
        font-size: 31px;
    }

    .about-experience span {
        font-size: 9px;
    }

    .about-eyebrow {
        font-size: 10px;

        letter-spacing: 1.3px;
    }

    .about-content h2 {
        font-size: 38px;

        letter-spacing: -1px;

        line-height: 1.08;
    }

    .about-content p {
        font-size: 14px;

        line-height: 1.7;
    }

    .about-highlights {
        grid-template-columns:
            1fr;

        margin-top: 25px;
    }

    .about-highlight {
        border-right: none;

        border-bottom:
            1px solid rgba(17,34,53,0.10);
    }

    .about-highlight:last-child {
        border-bottom: none;
    }

    .about-btn {
        width: 100%;

        justify-content: center;
    }
}
/* =========================================
   PREMIUM PRODUCTS SECTION
   SMSC
   #112235 + #fd691b
========================================= */

.products-section {
    position: relative;

    padding: 100px 0;

    background: #f7f8f9;

    overflow: hidden;
}


/* =========================================
   CONTAINER
========================================= */

.products-section .container {
    width: min(1240px, 92%);

    margin: auto;
}


/* =========================================
   HEADER
========================================= */

.products-header {
    display: flex;

    align-items: flex-end;

    justify-content: space-between;

    gap: 50px;

    margin-bottom: 45px;
}


.products-eyebrow {
    display: inline-flex;

    align-items: center;

    gap: 10px;

    margin-bottom: 14px;

    color: #fd691b;

    font-size: 12px;

    font-weight: 800;

    letter-spacing: 2px;

    text-transform: uppercase;
}


.products-eyebrow::before {
    content: "";

    width: 35px;

    height: 3px;

    background: #fd691b;

    border-radius: 5px;
}


.products-header h2 {
    margin: 0;

    color: #112235;

    font-size: clamp(40px, 5vw, 60px);

    line-height: 1;

    letter-spacing: -2px;

    font-weight: 800;
}


.products-header h2 span {
    color: #fd691b;
}


.products-header > p {
    max-width: 430px;

    margin: 0 0 4px;

    color: #657180;

    font-size: 15px;

    line-height: 1.7;
}


/* =========================================
   FEATURED PRODUCT
========================================= */

.products-featured {
    display: grid;

    grid-template-columns: 55% 45%;

    min-height: 400px;

    margin-bottom: 25px;

    overflow: hidden;

    background: #112235;

    border-radius: 8px;

    box-shadow:
        0 20px 50px rgba(17,34,53,0.15);
}


/* IMAGE */

.featured-image {
    position: relative;

    min-height: 400px;

    overflow: hidden;
}


.featured-image img {
    width: 100%;
    height: 100%;

    display: block;

    object-fit: cover;

    transition: transform 0.6s ease;
}


.products-featured:hover .featured-image img {
    transform: scale(1.04);
}


/* IMAGE GRADIENT */

.featured-image::after {
    content: "";

    position: absolute;

    inset: 0;

    background:
        linear-gradient(
            90deg,
            rgba(17,34,53,0) 55%,
            rgba(17,34,53,0.75) 100%
        );
}


/* FEATURED LABEL */

.featured-label {
    position: absolute;

    left: 25px;
    top: 25px;

    z-index: 2;

    padding: 8px 13px;

    color: #ffffff;

    background: #fd691b;

    font-size: 9px;

    font-weight: 800;

    letter-spacing: 1.2px;

    border-radius: 3px;
}


/* =========================================
   FEATURED CONTENT
========================================= */

.featured-content {
    position: relative;

    display: flex;

    flex-direction: column;

    justify-content: center;

    padding: 55px;
}


.product-number {
    margin-bottom: 10px;

    color: #fd691b;

    font-size: 12px;

    font-weight: 800;

    letter-spacing: 2px;
}


.featured-content h3 {
    margin: 0 0 18px;

    color: #ffffff;

    font-size: 42px;

    line-height: 1;

    font-weight: 800;
}


.featured-content p {
    max-width: 450px;

    margin: 0 0 25px;

    color: rgba(255,255,255,0.67);

    font-size: 14px;

    line-height: 1.75;
}


/* =========================================
   PRODUCT LINK
========================================= */

.product-link {
    display: inline-flex;

    align-items: center;

    gap: 12px;

    width: fit-content;

    color: #ffffff;

    font-size: 12px;

    font-weight: 800;

    text-decoration: none;

    text-transform: uppercase;

    letter-spacing: 0.8px;

    transition: 0.3s ease;
}


.product-link span {
    color: #fd691b;

    font-size: 19px;

    transition: 0.3s ease;
}


.product-link:hover {
    color: #fd691b;
}


.product-link:hover span {
    transform: translateX(5px);
}


/* =========================================
   PRODUCT CARDS
========================================= */

.products-list {
    display: grid;

    grid-template-columns:
        repeat(3, 1fr);

    gap: 20px;
}


.product-card {
    position: relative;

    overflow: hidden;

    background: #ffffff;

    border: 1px solid
        rgba(17,34,53,0.08);

    border-radius: 6px;

    transition:
        transform 0.3s ease,
        box-shadow 0.3s ease;
}


.product-card:hover {
    transform: translateY(-6px);

    box-shadow:
        0 18px 40px rgba(17,34,53,0.12);
}


/* =========================================
   CARD IMAGE
========================================= */

.product-card-image {
    position: relative;

    height: 250px;

    overflow: hidden;

    background: #eef0f2;
}


.product-card-image img {
    width: 100%;
    height: 100%;

    display: block;

    object-fit: cover;

    transition: transform 0.5s ease;
}


.product-card:hover .product-card-image img {
    transform: scale(1.06);
}


/* INDEX */

.product-index {
    position: absolute;

    right: 15px;
    top: 15px;

    width: 35px;
    height: 35px;

    display: flex;

    align-items: center;
    justify-content: center;

    color: #ffffff;

    background: #112235;

    border-radius: 50%;

    font-size: 10px;

    font-weight: 800;

    border: 2px solid #fd691b;
}


/* =========================================
   CARD CONTENT
========================================= */

.product-card-content {
    padding: 25px;
}


.product-card-content h3 {
    margin: 0 0 10px;

    color: #112235;

    font-size: 22px;

    font-weight: 800;
}


.product-card-content p {
    min-height: 70px;

    margin: 0 0 20px;

    color: #6c7784;

    font-size: 13px;

    line-height: 1.65;
}


.product-card-content .product-link {
    color: #112235;
}


.product-card-content .product-link:hover {
    color: #fd691b;
}


/* =========================================
   BOTTOM CTA
========================================= */

.products-cta {
    display: flex;

    align-items: center;

    justify-content: space-between;

    gap: 30px;

    margin-top: 25px;

    padding: 24px 30px;

    background: #112235;

    border-left: 4px solid #fd691b;

    box-shadow:
        0 8px 25px rgba(17,34,53,0.06);
}


.products-cta div {
    display: flex;

    flex-direction: column;

    gap: 5px;
}


.products-cta strong {
    color: #ffffff;

    font-size: 15px;
}


.products-cta span {
    color: #ffffff;

    font-size: 14px;
}


.products-cta > a {
    display: inline-flex;

    align-items: center;

    gap: 12px;

    padding: 13px 20px;

    color: #ffffff;

    background: #fd691b;

    border-radius: 4px;

    font-size: 12px;

    font-weight: 800;

    text-decoration: none;

    white-space: nowrap;

    transition: 0.3s ease;
}


.products-cta > a:hover {
    background: #fd691b;
}


.products-cta > a span {
    color: #ffffff;

    font-size: 17px;
}


/* =========================================
   TABLET
========================================= */

@media (max-width: 992px) {

    .products-section {
        padding: 75px 0;
    }

    .products-header {
        align-items: flex-start;

        flex-direction: column;

        gap: 20px;
    }

    .products-featured {
        grid-template-columns: 1fr;

        min-height: auto;
    }

    .featured-image {
        height: 350px;

        min-height: 350px;
    }

    .featured-content {
        padding: 40px;
    }

    .products-list {
        grid-template-columns:
            repeat(2, 1fr);
    }

    .product-card:last-child {
        grid-column: span 2;
    }
}


/* =========================================
   MOBILE
========================================= */

@media (max-width: 600px) {

    .products-section {
        padding: 60px 0;
    }

    .products-section .container {
        width: 92%;
    }


    /* HEADER */

    .products-header {
        margin-bottom: 30px;

        gap: 15px;
    }

    .products-header h2 {
        font-size: 39px;

        letter-spacing: -1px;
    }

    .products-header > p {
        font-size: 13px;

        line-height: 1.65;
    }


    /* FEATURED */

    .products-featured {
        margin-bottom: 18px;

        border-radius: 6px;
    }

    .featured-image {
        height: 260px;

        min-height: 260px;
    }

    .featured-label {
        left: 15px;
        top: 15px;

        font-size: 8px;
    }

    .featured-content {
        padding: 30px 23px;
    }

    .product-number {
        font-size: 10px;
    }

    .featured-content h3 {
        font-size: 32px;

        margin-bottom: 13px;
    }

    .featured-content p {
        font-size: 13px;

        line-height: 1.65;
    }


    /* PRODUCT CARDS */

    .products-list {
        display: flex;

        flex-direction: column;

        gap: 15px;
    }

    .product-card:last-child {
        grid-column: auto;
    }

    .product-card {
        display: grid;

        grid-template-columns: 125px 1fr;

        min-height: 150px;
    }

    .product-card-image {
        height: 100%;

        min-height: 150px;
    }

    .product-card-content {
        padding: 18px 17px;
    }

    .product-card-content h3 {
        font-size: 18px;

        margin-bottom: 7px;
    }

    .product-card-content p {
        min-height: auto;

        margin-bottom: 10px;

        font-size: 11px;

        line-height: 1.5;

        display: -webkit-box;

        -webkit-line-clamp: 3;

        -webkit-box-orient: vertical;

        overflow: hidden;
    }

    .product-card-content .product-link {
        font-size: 9px;
    }

    .product-index {
        width: 28px;
        height: 28px;

        right: 8px;
        top: 8px;

        font-size: 8px;
    }


    /* CTA */

    .products-cta {
        flex-direction: column;

        align-items: flex-start;

        gap: 15px;

        margin-top: 18px;

        padding: 20px;
    }

    .products-cta strong {
        font-size: 13px;
    }

    .products-cta span {
        font-size: 10px;
    }

    .products-cta > a {
        width: 100%;

        justify-content: center;
    }
}


/* =========================================
   SMALL MOBILE
========================================= */

@media (max-width: 380px) {

    .products-header h2 {
        font-size: 34px;
    }

    .product-card {
        grid-template-columns: 105px 1fr;
    }

    .product-card-image {
        min-height: 145px;
    }

    .product-card-content {
        padding: 15px 13px;
    }

    .product-card-content h3 {
        font-size: 16px;
    }

    .product-card-content p {
        font-size: 10px;
    }
}

/* =========================================
   PREMIUM CLIENTS SECTION
   SMSC
   #112235 + #fd691b
========================================= */

.clients-section {
    position: relative;

    padding: 90px 0 85px;

    background: #f7f8fa;

    overflow: hidden;
}


/* =========================================
   BACKGROUND
========================================= */

.clients-bg {
    position: absolute;

    width: 500px;
    height: 500px;

    right: -220px;
    top: -250px;

    border-radius: 50%;

    background:
        radial-gradient(
            circle,
            rgba(253,105,27,0.08) 0%,
            rgba(253,105,27,0) 70%
        );

    pointer-events: none;
}


/* SUBTLE DOT TEXTURE */

.clients-section::before {
    content: "";

    position: absolute;

    inset: 0;

    background-image:
        radial-gradient(
            rgba(17,34,53,0.07) 1px,
            transparent 1px
        );

    background-size: 24px 24px;

    opacity: 0.35;

    pointer-events: none;
}


/* =========================================
   CONTAINER
========================================= */

.clients-section .container {
    position: relative;

    z-index: 2;

    width: min(1200px, 92%);

    margin: auto;
}


/* =========================================
   SECTION HEADING
========================================= */

.section-heading {
    text-align: center;

    max-width: 700px;

    margin: 0 auto 45px;
}


.section-eyebrow {
    display: inline-flex;

    align-items: center;

    gap: 10px;

    margin-bottom: 13px;

    color: #fd691b;

    font-size: 11px;

    font-weight: 800;

    letter-spacing: 2.5px;

    text-transform: uppercase;
}


.section-eyebrow::before,
.section-eyebrow::after {
    content: "";

    width: 25px;

    height: 2px;

    background: #fd691b;

    border-radius: 10px;
}


.section-heading h2 {
    margin: 0;

    color: #112235;

    font-size: clamp(38px, 5vw, 55px);

    line-height: 1;

    font-weight: 800;

    letter-spacing: -1.5px;
}


.section-heading h2 span {
    color: #fd691b;
}


.section-heading p {
    max-width: 620px;

    margin: 18px auto 0;

    color: #6b7785;

    font-size: 14px;

    line-height: 1.75;
}


/* =========================================
   CLIENT GRID
========================================= */

.clients-grid {
    display: grid;

    grid-template-columns:
        repeat(3, 1fr);

    gap: 18px;
}


/* =========================================
   CLIENT CARD
========================================= */

.client-card {
    position: relative;

    min-height: 150px;

    display: flex;

    align-items: center;

    justify-content: center;

    padding: 25px;

    background: #ffffff;

    border: 1px solid
        rgba(17,34,53,0.08);

    border-radius: 6px;

    box-shadow:
        0 8px 25px
        rgba(17,34,53,0.045);

    transition:
        transform 0.35s ease,
        box-shadow 0.35s ease,
        border-color 0.35s ease;
}


/* ORANGE TOP LINE */

.client-card::before {
    content: "";

    position: absolute;

    top: 0;
    left: 50%;

    width: 0;

    height: 3px;

    background: #fd691b;

    transform: translateX(-50%);

    transition: width 0.35s ease;
}


.client-card:hover::before {
    width: 65px;
}


.client-card:hover {
    transform: translateY(-7px);

    border-color:
        rgba(253,105,27,0.25);

    box-shadow:
        0 18px 40px
        rgba(17,34,53,0.11);
}


/* =========================================
   LOGO AREA
========================================= */


.client-logo img {
    max-width: 90%;
    max-height: 72px;

    width: auto;
    height: auto;

    object-fit: contain;

    /* REMOVE BLACK / DARK OVERLAY */
    filter: none;

    opacity: 1;

    transition:
        transform 0.35s ease,
        opacity 0.35s ease;
}


/* Clean premium hover */

.client-card:hover .client-logo img {
    filter: none;

    opacity: 1;

    transform: scale(1.05);
}
.client-card:hover .client-logo img {
    filter: grayscale(0%);

    opacity: 1;

    transform: scale(1.04);
}


/* =========================================
   BOTTOM TRUST LINE
========================================= */

.clients-bottom {
    display: flex;

    align-items: center;

    justify-content: center;

    gap: 18px;

    margin-top: 42px;
}


.clients-bottom span {
    color: #112235;

    font-size: 9px;

    font-weight: 800;

    letter-spacing: 2px;

    white-space: nowrap;
}


.clients-line {
    width: 70px;

    height: 1px;

    background:
        linear-gradient(
            90deg,
            transparent,
            #fd691b
        );
}


.clients-line:last-child {
    background:
        linear-gradient(
            90deg,
            #fd691b,
            transparent
        );
}


/* =========================================
   TABLET
========================================= */

@media (max-width: 900px) {

    .clients-section {
        padding: 75px 0;
    }

    .clients-grid {
        grid-template-columns:
            repeat(2, 1fr);

        gap: 15px;
    }

    .client-card {
        min-height: 135px;
    }
}


/* =========================================
   MOBILE
========================================= */

@media (max-width: 600px) {

    .clients-section {
        padding: 60px 0;
    }

    .clients-section .container {
        width: 92%;
    }


    /* HEADING */

    .section-heading {
        margin-bottom: 30px;
    }

    .section-eyebrow {
        font-size: 9px;

        letter-spacing: 1.8px;
    }

    .section-eyebrow::before,
    .section-eyebrow::after {
        width: 18px;
    }

    .section-heading h2 {
        font-size: 38px;

        letter-spacing: -1px;
    }

    .section-heading p {
        margin-top: 14px;

        font-size: 12px;

        line-height: 1.65;
    }


    /* LOGO GRID */

    .clients-grid {
        grid-template-columns:
            repeat(2, 1fr);

        gap: 10px;
    }


    /* CARDS */

    .client-card {
        min-height: 115px;

        padding: 12px;

        border-radius: 5px;
    }


    .client-logo {
        height: 75px;

        padding: 8px;
    }


    .client-logo img {
        max-width: 95%;

        max-height: 55px;
    }


    /* BOTTOM */

    .clients-bottom {
        gap: 10px;

        margin-top: 30px;
    }

    .clients-bottom span {
        font-size: 7px;

        letter-spacing: 1.2px;

        text-align: center;
    }

    .clients-line {
        width: 30px;
    }
}


/* =========================================
   SMALL MOBILE
========================================= */

@media (max-width: 380px) {

    .clients-grid {
        gap: 8px;
    }

    .client-card {
        min-height: 100px;

        padding: 8px;
    }

    .client-logo {
        height: 65px;
    }

    .client-logo img {
        max-height: 48px;
    }

    .section-heading h2 {
        font-size: 34px;
    }
}
/* =========================================
   WE PROVIDE SECTION
   SMSC
   #112235 + #fd691b
========================================= */

.provide-section {
    position: relative;

    padding: 95px 0;

    background: #eef1f4;

    overflow: hidden;
}


/* =========================================
   SUBTLE BACKGROUND DESIGN
========================================= */

.provide-section::before {
    content: "";

    position: absolute;

    width: 450px;
    height: 450px;

    right: -220px;
    top: -220px;

    border-radius: 50%;

    background:
        radial-gradient(
            circle,
            rgba(253,105,27,0.09),
            transparent 70%
        );

    pointer-events: none;
}


.provide-section::after {
    content: "";

    position: absolute;

    width: 350px;
    height: 350px;

    left: -200px;
    bottom: -200px;

    border-radius: 50%;

    background:
        radial-gradient(
            circle,
            rgba(17,34,53,0.08),
            transparent 70%
        );

    pointer-events: none;
}


/* =========================================
   CONTAINER
========================================= */

.provide-section .container {
    position: relative;

    z-index: 2;

    width: min(1200px, 92%);

    margin: auto;
}


/* =========================================
   HEADER
========================================= */

.provide-header {
    max-width: 700px;

    margin: 0 auto 48px;

    text-align: center;
}


.provide-eyebrow {
    display: inline-flex;

    align-items: center;

    gap: 10px;

    margin-bottom: 14px;

    color: #fd691b;

    font-size: 11px;

    font-weight: 800;

    letter-spacing: 2.5px;

    text-transform: uppercase;
}


.provide-eyebrow::before,
.provide-eyebrow::after {
    content: "";

    width: 28px;

    height: 2px;

    background: #fd691b;

    border-radius: 10px;
}


.provide-header h2 {
    margin: 0;

    color: #112235;

    font-size: clamp(40px, 5vw, 56px);

    line-height: 1;

    font-weight: 800;

    letter-spacing: -1.5px;
}


.provide-header h2 span {
    color: #fd691b;
}


.provide-header p {
    max-width: 650px;

    margin: 18px auto 0;

    color: #657180;

    font-size: 14px;

    line-height: 1.75;
}


/* =========================================
   GRID
========================================= */

.provide-grid {
    display: grid;

    grid-template-columns:
        repeat(3, 1fr);

    gap: 18px;
}


/* =========================================
   CARD
========================================= */

.provide-card {
    position: relative;

    min-height: 285px;

    padding: 32px 30px;

    background: #ffffff;

    border: 1px solid
        rgba(17,34,53,0.08);

    border-radius: 7px;

    overflow: hidden;

    box-shadow:
        0 10px 30px
        rgba(17,34,53,0.06);

    transition:
        transform 0.35s ease,
        box-shadow 0.35s ease,
        border-color 0.35s ease;
}


/* TOP ORANGE LINE */

.provide-card::before {
    content: "";

    position: absolute;

    left: 0;
    top: 0;

    width: 0;

    height: 3px;

    background: #fd691b;

    transition: width 0.4s ease;
}


.provide-card:hover::before {
    width: 100%;
}


.provide-card:hover {
    transform: translateY(-7px);

    border-color:
        rgba(253,105,27,0.22);

    box-shadow:
        0 20px 45px
        rgba(17,34,53,0.12);
}


/* =========================================
   ICON
========================================= */

.provide-icon {
    width: 62px;
    height: 62px;

    display: flex;

    align-items: center;
    justify-content: center;

    margin-bottom: 23px;

    background: rgba(253,105,27,0.09);

    border: 1px solid
        rgba(253,105,27,0.18);

    border-radius: 50%;

    transition:
        background 0.3s ease,
        transform 0.3s ease;
}


.provide-icon img {
    width: 31px;
    height: 31px;

    object-fit: contain;
}


.provide-card:hover .provide-icon {
    background: #fd691b;

    transform: rotate(-3deg);
}


/* =========================================
   NUMBER
========================================= */

.provide-number {
    position: absolute;

    right: 25px;
    top: 25px;

    color: rgba(17,34,53,0.10);

    font-size: 30px;

    line-height: 1;

    font-weight: 900;
}


/* =========================================
   TITLE
========================================= */

.provide-card h3 {
    margin: 0 0 11px;

    color: #112235;

    font-size: 20px;

    line-height: 1.2;

    font-weight: 800;
}


/* =========================================
   DESCRIPTION
========================================= */

.provide-card p {
    margin: 0;

    color: #6b7785;

    font-size: 13px;

    line-height: 1.7;
}


/* =========================================
   TABLET
========================================= */

@media (max-width: 950px) {

    .provide-section {
        padding: 75px 0;
    }

    .provide-grid {
        grid-template-columns:
            repeat(2, 1fr);
    }
}


/* =========================================
   MOBILE
========================================= */

@media (max-width: 600px) {

    .provide-section {
        padding: 60px 0;
    }

    .provide-section .container {
        width: 92%;
    }


    /* HEADER */

    .provide-header {
        margin-bottom: 30px;
    }

    .provide-eyebrow {
        font-size: 9px;

        letter-spacing: 1.7px;
    }

    .provide-eyebrow::before,
    .provide-eyebrow::after {
        width: 18px;
    }

    .provide-header h2 {
        font-size: 39px;

        letter-spacing: -1px;
    }

    .provide-header p {
        margin-top: 14px;

        font-size: 12px;

        line-height: 1.65;
    }


    /* GRID */

    .provide-grid {
        grid-template-columns:
            repeat(2, 1fr);

        gap: 10px;
    }


    /* CARD */

    .provide-card {
        min-height: 245px;

        padding: 22px 17px;

        border-radius: 5px;
    }


    /* ICON */

    .provide-icon {
        width: 48px;
        height: 48px;

        margin-bottom: 18px;
    }

    .provide-icon img {
        width: 24px;
        height: 24px;
    }


    /* NUMBER */

    .provide-number {
        right: 13px;
        top: 13px;

        font-size: 21px;
    }


    /* TITLE */

    .provide-card h3 {
        margin-bottom: 8px;

        font-size: 16px;
    }


    /* TEXT */

    .provide-card p {
        font-size: 11px;

        line-height: 1.55;
    }
}


/* =========================================
   SMALL MOBILE
========================================= */

@media (max-width: 380px) {

    .provide-grid {
        gap: 8px;
    }

    .provide-card {
        min-height: 235px;

        padding: 18px 13px;
    }

    .provide-icon {
        width: 43px;
        height: 43px;

        margin-bottom: 15px;
    }

    .provide-icon img {
        width: 21px;
        height: 21px;
    }

    .provide-card h3 {
        font-size: 14px;
    }

    .provide-card p {
        font-size: 10px;
    }
}

/* =========================================
   INDUSTRIES WE SERVE
   SMSC PREMIUM DESIGN

   NAVY  : #112235
   ORANGE: #fd691b
========================================= */

/* =====================================================
   ORIGINAL DARK INDUSTRIES DESIGN
   #fd691b = Orange
   #112235 = Navy
===================================================== */

.industries-dark {
    position: relative;
    padding: 100px 0;
    background: #0b1621;
    color: #fff;
    overflow: hidden;
}


/* SUBTLE INDUSTRIAL BACKGROUND */

.industries-dark::before {
    content: "";
    position: absolute;
    inset: 0;

    background-image:
        linear-gradient(
            rgba(255,255,255,0.025) 1px,
            transparent 1px
        ),
        linear-gradient(
            90deg,
            rgba(255,255,255,0.025) 1px,
            transparent 1px
        );

    background-size: 45px 45px;

    pointer-events: none;
}


/* ORANGE LIGHT */

.industries-dark::after {
    content: "";
    position: absolute;

    width: 450px;
    height: 450px;

    right: -250px;
    top: -180px;

    border-radius: 50%;

    background: rgba(253,105,27,0.07);

    filter: blur(80px);
}


/* CONTAINER */

.industries-dark .container {
    position: relative;
    z-index: 2;

    width: min(1200px, 92%);
    margin: auto;
}


/* =====================================================
   HEADER
===================================================== */

.industries-dark-header {
    display: grid;

    grid-template-columns: 1.1fr .9fr;

    gap: 70px;

    align-items: end;

    margin-bottom: 55px;

    padding-bottom: 35px;

    border-bottom: 1px solid rgba(255,255,255,0.09);
}


.industries-dark-label {
    position: relative;

    display: inline-block;

    margin-bottom: 16px;

    padding-left: 42px;

    color: #fd691b;

    font-size: 10px;
    font-weight: 900;

    letter-spacing: 3px;
}


.industries-dark-label::before {
    content: "";

    position: absolute;

    left: 0;
    top: 50%;

    width: 30px;
    height: 2px;

    background: #fd691b;
}


.industries-dark-header h2 {
    margin: 0;

    color: #fff;

    font-size: clamp(40px, 5vw, 62px);

    line-height: 1.02;

    letter-spacing: -2px;
}


.industries-dark-header h2 span {
    display: block;

    color: #fd691b;
}


.industries-dark-header > p {
    margin: 0;

    max-width: 480px;

    color: rgba(255,255,255,0.58);

    font-size: 16px;

    line-height: 1.85;
}


/* =====================================================
   INDUSTRY GRID
===================================================== */

.industries-dark-grid {
    display: grid;

    grid-template-columns:
        repeat(4, 1fr);

    gap: 1px;

    background: rgba(255,255,255,0.09);

    border: 1px solid rgba(255,255,255,0.09);
}


/* =====================================================
   CARD
===================================================== */

.dark-industry-card {
    position: relative;

    min-height: 245px;

    padding: 30px 25px;

    background: #112235;

    overflow: hidden;

    transition:
        background .35s ease,
        transform .35s ease;
}


.dark-industry-card:hover {
    background: #172c40;

    transform: translateY(-4px);

    z-index: 3;
}


/* NUMBER */

.dark-industry-number {
    position: absolute;

    top: 22px;
    right: 22px;

    color: rgba(255,255,255,0.18);

    font-size: 11px;

    font-weight: 900;

    letter-spacing: 1px;
}


/* ICON */

.dark-industry-icon {
    width: 50px;
    height: 50px;

    display: flex;
    align-items: center;
    justify-content: center;

    margin-bottom: 28px;

    color: #fd691b;

    background: rgba(253,105,27,0.08);

    border: 1px solid rgba(253,105,27,0.25);

    font-size: 18px;

    transition: .35s ease;
}


.dark-industry-card:hover .dark-industry-icon {
    background: #fd691b;

    color: #fff;

    transform: rotate(-5deg);
}


/* TITLE */

.dark-industry-card h3 {
    margin: 0 0 10px;

    color: #fff;

    font-size: 17px;

    font-weight: 800;
}


/* DESCRIPTION */

.dark-industry-card p {
    margin: 0;

    color: rgba(255,255,255,0.48);

    font-size: 11px;

    line-height: 1.7;
}


/* BOTTOM LINE */

.dark-industry-line {
    position: absolute;

    left: 25px;
    bottom: 0;

    width: 0;
    height: 3px;

    background: #fd691b;

    transition: width .4s ease;
}


.dark-industry-card:hover .dark-industry-line {
    width: calc(100% - 50px);
}


/* =====================================================
   FOOTER STRIP
===================================================== */

.industries-dark-footer {
    display: grid;

    grid-template-columns:
        repeat(4, 1fr);

    margin-top: 22px;

    border: 1px solid rgba(255,255,255,0.08);

    background: rgba(17,34,53,0.7);
}


.industries-dark-footer div {
    padding: 20px;

    border-right:
        1px solid rgba(255,255,255,0.08);
}


.industries-dark-footer div:last-child {
    border-right: 0;
}


.industries-dark-footer strong {
    display: block;

    margin-bottom: 6px;

    color: #fd691b;

    font-size: 9px;

    letter-spacing: 1.5px;
}


.industries-dark-footer span {
    color: rgba(255,255,255,0.45);

    font-size: 10px;
}


/* =====================================================
   TABLET
===================================================== */

@media (max-width: 1000px) {

    .industries-dark-header {
        grid-template-columns: 1fr;

        gap: 20px;
    }


    .industries-dark-grid {
        grid-template-columns:
            repeat(2, 1fr);
    }


    .industries-dark-footer {
        grid-template-columns:
            repeat(2, 1fr);
    }


    .industries-dark-footer div:nth-child(2) {
        border-right: 0;
    }

}


/* =====================================================
   MOBILE
===================================================== */

@media (max-width: 600px) {

    .industries-dark {
        padding: 65px 0;
    }


    .industries-dark-header {
        margin-bottom: 35px;

        padding-bottom: 25px;
    }


    .industries-dark-header h2 {
        font-size: 37px;

        letter-spacing: -1px;
    }


    .industries-dark-header > p {
        font-size: 12px;

        line-height: 1.7;
    }


    .industries-dark-grid {
        grid-template-columns: 1fr;

        gap: 1px;
    }


    .dark-industry-card {
        min-height: 190px;

        padding: 25px 22px;
    }


    .dark-industry-icon {
        width: 45px;
        height: 45px;

        margin-bottom: 20px;
    }


    .dark-industry-card h3 {
        font-size: 16px;
    }


    .dark-industry-card p {
        max-width: 330px;

        font-size: 11px;
    }


    .industries-dark-footer {
        grid-template-columns: 1fr;
    }


    .industries-dark-footer div {
        border-right: 0;

        border-bottom:
            1px solid rgba(255,255,255,0.08);
    }


    .industries-dark-footer div:last-child {
        border-bottom: 0;
    }

}
/* =========================================
   PREMIUM CTA SECTION
   SMSC

   NAVY  : #112235
   ORANGE: #fd691b
========================================= */

.cta-section {
    position: relative;

    padding: 80px 0;

    background: #f1f3f5;

    overflow: hidden;
}


/* =========================================
   CONTAINER
========================================= */

.cta-section .container {
    position: relative;

    z-index: 2;

    width: min(1200px, 92%);

    margin: auto;
}


/* =========================================
   CTA BOX
========================================= */

.cta-box {
    position: relative;

    display: grid;

    grid-template-columns: 1.6fr 0.8fr;

    align-items: center;

    min-height: 300px;

    padding: 55px 60px;

    background: #112235;

    border-radius: 12px;

    overflow: hidden;

    box-shadow:
        0 25px 60px
        rgba(17,34,53,0.18);
}


/* =========================================
   ORANGE DECORATIVE SHAPE
========================================= */

.cta-box::before {
    content: "";

    position: absolute;

    width: 430px;
    height: 430px;

    right: -180px;
    top: -220px;

    border-radius: 50%;

    border: 1px solid
        rgba(253,105,27,0.30);

    box-shadow:
        0 0 0 35px rgba(253,105,27,0.035),
        0 0 0 70px rgba(253,105,27,0.025);

    pointer-events: none;
}


.cta-box::after {
    content: "";

    position: absolute;

    right: 0;
    bottom: 0;

    width: 45%;

    height: 100%;

    background:
        linear-gradient(
            135deg,
            transparent 35%,
            rgba(253,105,27,0.08) 35%,
            rgba(253,105,27,0.08) 36%,
            transparent 36%
        );

    opacity: 0.8;

    pointer-events: none;
}


/* =========================================
   CONTENT
========================================= */

.cta-content {
    position: relative;

    z-index: 2;
}


.cta-eyebrow {
    display: inline-flex;

    align-items: center;

    gap: 10px;

    margin-bottom: 14px;

    color: #fd691b;

    font-size: 10px;

    font-weight: 800;

    letter-spacing: 2.5px;
}


.cta-eyebrow::before {
    content: "";

    width: 28px;

    height: 2px;

    background: #fd691b;

    border-radius: 5px;
}


/* =========================================
   HEADING
========================================= */

.cta-content h2 {
    max-width: 650px;

    margin: 0;

    color: #ffffff;

    font-size: clamp(38px, 4vw, 55px);

    line-height: 1.05;

    font-weight: 800;

    letter-spacing: -1.5px;
}


.cta-content h2 span {
    color: #fd691b;
}


/* =========================================
   DESCRIPTION
========================================= */

.cta-content p {
    max-width: 620px;

    margin: 18px 0 0;

    color: #b9c3ce;

    font-size: 13px;

    line-height: 1.75;
}


/* =========================================
   CTA POINTS
========================================= */

.cta-points {
    display: flex;

    flex-wrap: wrap;

    gap: 20px;

    margin-top: 25px;
}


.cta-points span {
    display: flex;

    align-items: center;

    gap: 7px;

    color: #e0e5e9;

    font-size: 10px;

    font-weight: 700;

    letter-spacing: 0.3px;
}


.cta-points i {
    color: #fd691b;

    font-size: 12px;
}


/* =========================================
   ACTION AREA
========================================= */

.cta-action {
    position: relative;

    z-index: 3;

    display: flex;

    flex-direction: column;

    align-items: center;

    justify-content: center;

    text-align: center;

    padding-left: 35px;

    border-left: 1px solid
        rgba(255,255,255,0.12);
}


.cta-action-icon {
    width: 50px;
    height: 50px;

    display: flex;

    align-items: center;
    justify-content: center;

    margin-bottom: 13px;

    color: #ffffff;

    background: #fd691b;

    border-radius: 50%;

    box-shadow:
        0 8px 25px
        rgba(253,105,27,0.30);
}


.cta-action-icon i {
    font-size: 17px;
}


.cta-action > span {
    margin-bottom: 15px;

    color: #9ca9b5;

    font-size: 8px;

    font-weight: 800;

    letter-spacing: 2px;
}


/* =========================================
   BUTTON
========================================= */

.cta-button {
    display: inline-flex;

    align-items: center;

    justify-content: center;

    gap: 14px;

    min-width: 185px;

    padding: 15px 23px;

    color: #ffffff;

    background: #fd691b;

    border: 1px solid #fd691b;

    border-radius: 5px;

    text-decoration: none;

    font-size: 12px;

    font-weight: 800;

    transition:
        background 0.3s ease,
        transform 0.3s ease,
        box-shadow 0.3s ease;
}


.cta-button i {
    transition:
        transform 0.3s ease;
}


.cta-button:hover {
    color: #112235;

    background: #ffffff;

    border-color: #ffffff;

    transform: translateY(-3px);

    box-shadow:
        0 12px 30px
        rgba(0,0,0,0.18);
}


.cta-button:hover i {
    transform: translateX(5px);
}


.cta-action small {
    margin-top: 12px;

    color: #7f8d9a;

    font-size: 9px;
}


/* =========================================
   TABLET
========================================= */

@media (max-width: 850px) {

    .cta-section {
        padding: 65px 0;
    }

    .cta-box {
        grid-template-columns: 1fr;

        gap: 35px;

        padding: 45px;
    }

    .cta-action {
        align-items: flex-start;

        padding-left: 0;

        padding-top: 30px;

        border-left: 0;

        border-top: 1px solid
            rgba(255,255,255,0.12);

        text-align: left;
    }

}


/* =========================================
   MOBILE
========================================= */

@media (max-width: 600px) {

    .cta-section {
        padding: 55px 0;
    }


    .cta-section .container {
        width: 92%;
    }


    .cta-box {
        min-height: auto;

        padding: 35px 25px;

        border-radius: 8px;

        gap: 28px;
    }


    .cta-eyebrow {
        font-size: 8px;

        letter-spacing: 1.8px;
    }


    .cta-eyebrow::before {
        width: 20px;
    }


    .cta-content h2 {
        font-size: 34px;

        line-height: 1.08;

        letter-spacing: -0.8px;
    }


    .cta-content p {
        margin-top: 14px;

        font-size: 11px;

        line-height: 1.7;
    }


    .cta-points {
        gap: 9px 15px;

        margin-top: 20px;
    }


    .cta-points span {
        font-size: 9px;
    }


    .cta-action {
        padding-top: 25px;
    }


    .cta-action-icon {
        width: 43px;
        height: 43px;
    }


    .cta-action > span {
        font-size: 7px;

        letter-spacing: 1.5px;
    }


    .cta-button {
        width: 100%;

        min-width: 0;

        padding: 14px 18px;

        font-size: 11px;
    }

}

/* =========================================
   PREMIUM CONTACT SECTION
   SMSC

   NAVY  : #112235
   ORANGE: #fd691b
========================================= */

.contact-section {
    position: relative;

    padding: 100px 0;

    background: #f1f3f5;

    overflow: hidden;
}


/* =========================================
   BACKGROUND
========================================= */

.contact-section::before {
    content: "";

    position: absolute;

    width: 550px;
    height: 550px;

    right: -280px;
    top: -280px;

    border-radius: 50%;

    background:
        radial-gradient(
            circle,
            rgba(253,105,27,0.08),
            transparent 70%
        );

    pointer-events: none;
}


.contact-section::after {
    content: "";

    position: absolute;

    width: 400px;
    height: 400px;

    left: -250px;
    bottom: -250px;

    border-radius: 50%;

    background:
        radial-gradient(
            circle,
            rgba(17,34,53,0.07),
            transparent 70%
        );

    pointer-events: none;
}


/* =========================================
   CONTAINER
========================================= */

.contact-section .container {
    position: relative;

    z-index: 2;

    width: min(1200px, 92%);

    margin: auto;
}


/* =========================================
   HEADER
========================================= */

.contact-header {
    max-width: 700px;

    margin: 0 auto 55px;

    text-align: center;
}


.contact-eyebrow {
    display: inline-flex;

    align-items: center;

    gap: 10px;

    margin-bottom: 14px;

    color: #fd691b;

    font-size: 10px;

    font-weight: 800;

    letter-spacing: 2.5px;
}


.contact-eyebrow::before,
.contact-eyebrow::after {
    content: "";

    width: 28px;

    height: 2px;

    background: #fd691b;
}


.contact-header h2 {
    margin: 0;

    color: #112235;

    font-size: clamp(40px, 5vw, 57px);

    line-height: 1;

    font-weight: 800;

    letter-spacing: -1.5px;
}


.contact-header h2 span {
    color: #fd691b;
}


.contact-header p {
    max-width: 650px;

    margin: 18px auto 0;

    color: #687582;

    font-size: 14px;

    line-height: 1.75;
}


/* =========================================
   MAIN GRID
========================================= */

.contact-grid {
    display: grid;

    grid-template-columns: 0.9fr 1.1fr;

    gap: 25px;

    align-items: stretch;
}


/* =========================================
   CONTACT INFO
========================================= */

.contact-info {
    padding: 42px;

    background: #112235;

    border-radius: 9px;

    box-shadow:
        0 20px 50px
        rgba(17,34,53,0.15);
}


/* =========================================
   GLOBAL BADGE
========================================= */

.global-badge {
    display: flex;

    align-items: center;

    gap: 13px;

    margin-bottom: 38px;

    padding: 12px 15px;

    background:
        rgba(253,105,27,0.10);

    border: 1px solid
        rgba(253,105,27,0.25);

    border-radius: 5px;
}


.global-icon {
    width: 42px;
    height: 42px;

    display: flex;

    align-items: center;
    justify-content: center;

    flex: 0 0 42px;

    color: #ffffff;

    background: #fd691b;

    border-radius: 50%;
}


.global-icon i {
    font-size: 17px;
}


.global-badge div:last-child {
    display: flex;

    flex-direction: column;

    gap: 4px;
}


.global-badge strong {
    color: #ffffff;

    font-size: 13px;

    font-weight: 800;
}


.global-badge span {
    color: #9daab6;

    font-size: 9px;
}


/* =========================================
   CONTACT TITLE
========================================= */

.contact-info h3 {
    margin: 0 0 12px;

    color: #ffffff;

    font-size: 30px;

    line-height: 1.15;

    font-weight: 800;
}


.contact-intro {
    margin: 0 0 30px;

    color: #aebac5;

    font-size: 12px;

    line-height: 1.75;
}


/* =========================================
   CONTACT DETAILS
========================================= */

.contact-detail {
    display: flex;

    align-items: flex-start;

    gap: 14px;

    margin-bottom: 23px;
}


.detail-icon {
    width: 38px;
    height: 38px;

    display: flex;

    align-items: center;
    justify-content: center;

    flex: 0 0 38px;

    color: #fd691b;

    background:
        rgba(253,105,27,0.09);

    border: 1px solid
        rgba(253,105,27,0.18);

    border-radius: 50%;

    font-size: 13px;
}


.contact-detail > div:last-child {
    display: flex;

    flex-direction: column;

    gap: 5px;
}


.contact-detail span {
    color: #7f8e9b;

    font-size: 14px;

    font-weight: 800;

    letter-spacing: 1.5px;
}


.contact-detail p {
    margin: 0;

    color: #d2d9df;

    font-size: 16px;

    line-height: 1.65;
}


.contact-detail a {
    color: #ffffff;

    font-size: 16px;

    text-decoration: none;

    transition: color 0.3s ease;
}


.contact-detail a:hover {
    color: #fd691b;
}


/* =========================================
   EXPORT NOTE
========================================= */

.export-note {
    display: flex;

    align-items: center;

    gap: 10px;

    margin-top: 32px;

    padding-top: 22px;

    border-top: 1px solid
        rgba(255,255,255,0.10);
}


.export-note i {
    color: #fd691b;

    font-size: 16px;
}


.export-note span {
    color: #8e9ba7;

    font-size: 14px;

    line-height: 1.5;
}


/* =========================================
   ENQUIRY BOX
========================================= */

.enquiry-box {
    padding: 42px;

    background: #ffffff;

    border: 1px solid
        rgba(17,34,53,0.08);

    border-radius: 9px;

    box-shadow:
        0 15px 40px
        rgba(17,34,53,0.07);
}


.form-heading {
    margin-bottom: 25px;
}


.form-heading > span {
    color: #fd691b;

    font-size: 12px;

    font-weight: 800;

    letter-spacing: 2px;
}


.form-heading h3 {
    margin: 7px 0 7px;

    color: #112235;

    font-size: 28px;

    font-weight: 800;
}


.form-heading p {
    margin: 0;

    color: #75818d;

    font-size: 11px;
}


/* =========================================
   FORM
========================================= */

.form-row {
    display: grid;

    grid-template-columns:
        repeat(2, 1fr);

    gap: 15px;
}


.form-group {
    margin-bottom: 17px;
}


.form-group label {
    display: block;

    margin-bottom: 7px;

    color: #112235;

    font-size: 10px;

    font-weight: 800;
}


.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;

    box-sizing: border-box;

    padding: 12px 13px;

    color: #112235;

    background: #f7f8fa;

    border: 1px solid
        #e1e5e8;

    border-radius: 4px;

    outline: none;

    font-family: inherit;

    font-size: 11px;

    transition:
        border-color 0.3s ease,
        background 0.3s ease;
}


.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    background: #ffffff;

    border-color: #fd691b;
}


.form-group textarea {
    resize: vertical;

    min-height: 100px;
}


.form-group input::placeholder,
.form-group textarea::placeholder {
    color: #a0aab3;
}


/* =========================================
   BUTTON
========================================= */

.enquiry-button {
    width: 100%;

    display: flex;

    align-items: center;

    justify-content: center;

    gap: 12px;

    padding: 14px 20px;

    color: #ffffff;

    background: #fd691b;

    border: 1px solid #fd691b;

    border-radius: 4px;

    cursor: pointer;

    font-family: inherit;

    font-size: 11px;

    font-weight: 800;

    transition:
        background 0.3s ease,
        transform 0.3s ease;
}


.enquiry-button i {
    transition: transform 0.3s ease;
}


.enquiry-button:hover {
    background: #112235;

    border-color: #112235;

    transform: translateY(-2px);
}


.enquiry-button:hover i {
    transform: translateX(5px);
}


/* =========================================
   MAP
========================================= */

.map-wrapper {
    margin-top: 25px;

    overflow: hidden;

    background: #ffffff;

    border: 1px solid
        rgba(17,34,53,0.08);

    border-radius: 9px;

    box-shadow:
        0 12px 35px
        rgba(17,34,53,0.07);
}


.map-header {
    display: flex;

    align-items: center;

    justify-content: space-between;

    gap: 20px;

    padding: 22px 27px;
}


.map-header span {
    color: #fd691b;

    font-size: 8px;

    font-weight: 800;

    letter-spacing: 2px;
}


.map-header h3 {
    margin: 5px 0 0;

    color: #112235;

    font-size: 20px;

    font-weight: 800;
}


.map-header a {
    display: flex;

    align-items: center;

    gap: 8px;

    color: #112235;

    font-size: 10px;

    font-weight: 800;

    text-decoration: none;
}


.map-header a i {
    color: #fd691b;
}


.map-container {
    width: 100%;

    height: 400px;
}


.map-container iframe {
    display: block;

    width: 100%;

    height: 100%;
}


/* =========================================
   TABLET
========================================= */

@media (max-width: 900px) {

    .contact-section {
        padding: 75px 0;
    }

    .contact-grid {
        grid-template-columns: 1fr;
    }

}


/* =========================================
   MOBILE
========================================= */

@media (max-width: 600px) {

    .contact-section {
        padding: 60px 0;
    }

    .contact-section .container {
        width: 92%;
    }


    /* HEADER */

    .contact-header {
        margin-bottom: 32px;
    }

    .contact-eyebrow {
        font-size: 8px;

        letter-spacing: 1.8px;
    }

    .contact-eyebrow::before,
    .contact-eyebrow::after {
        width: 18px;
    }

    .contact-header h2 {
        font-size: 39px;

        letter-spacing: -1px;
    }

    .contact-header p {
        margin-top: 14px;

        font-size: 11px;

        line-height: 1.65;
    }


    /* INFO */

    .contact-info {
        padding: 28px 22px;

        border-radius: 7px;
    }

    .global-badge {
        margin-bottom: 27px;

        padding: 10px;
    }

    .global-icon {
        width: 37px;
        height: 37px;

        flex-basis: 37px;
    }

    .contact-info h3 {
        font-size: 25px;
    }


    /* FORM */

    .enquiry-box {
        padding: 28px 20px;

        border-radius: 7px;
    }

    .form-row {
        grid-template-columns: 1fr;

        gap: 0;
    }

    .form-heading h3 {
        font-size: 25px;
    }


    /* MAP */

    .map-header {
        align-items: flex-start;

        flex-direction: column;

        padding: 20px;
    }

    .map-container {
        height: 300px;
    }

}

/* =========================================
   OUR SOURCES / TRUSTED SOURCES
   SHANTI METAL SUPPLY CORPORATION (SMSC)

   NAVY  : #112235
   ORANGE: #fd691b
========================================= */


/* =========================================
   MAIN SECTION
========================================= */

.sources-section {
    position: relative;

    padding: 90px 0;

    background: #ffffff;

    overflow: hidden;
}


/* =========================================
   BACKGROUND DECORATION
========================================= */

.sources-section::before {
    content: "";

    position: absolute;

    width: 520px;
    height: 520px;

    left: -270px;
    top: -260px;

    border-radius: 50%;

    background:
        radial-gradient(
            circle,
            rgba(253, 105, 27, 0.07) 0%,
            rgba(253, 105, 27, 0.03) 40%,
            transparent 72%
        );

    pointer-events: none;
}


.sources-section::after {
    content: "";

    position: absolute;

    width: 360px;
    height: 360px;

    right: -210px;
    bottom: -210px;

    border-radius: 50%;

    border: 1px solid rgba(17, 34, 53, 0.06);

    box-shadow:
        0 0 0 35px rgba(17, 34, 53, 0.018),
        0 0 0 70px rgba(17, 34, 53, 0.012);

    pointer-events: none;
}


/* =========================================
   CONTAINER
========================================= */

.sources-section .container {
    position: relative;

    z-index: 2;

    width: min(1200px, 92%);

    margin: 0 auto;
}


/* =========================================
   SECTION HEADER
========================================= */

.sources-header {
    max-width: 720px;

    margin: 0 auto 50px;

    text-align: center;
}


/* =========================================
   EYEBROW
========================================= */

.sources-eyebrow {
    display: inline-flex;

    align-items: center;

    justify-content: center;

    gap: 10px;

    margin-bottom: 14px;

    color: #fd691b;

    font-size: 10px;

    font-weight: 800;

    letter-spacing: 2.5px;

    line-height: 1;

    text-transform: uppercase;
}


.sources-eyebrow::before,
.sources-eyebrow::after {
    content: "";

    display: block;

    width: 28px;

    height: 2px;

    background: #fd691b;

    border-radius: 10px;
}


/* =========================================
   MAIN HEADING
========================================= */

.sources-header h2 {
    margin: 0;

    color: #112235;

    font-size: clamp(40px, 5vw, 55px);

    line-height: 1;

    font-weight: 800;

    letter-spacing: -1.8px;
}


.sources-header h2 span {
    color: #fd691b;
}


/* =========================================
   DESCRIPTION
========================================= */

.sources-header p {
    max-width: 680px;

    margin: 18px auto 0;

    color: #687582;

    font-size: 15px;

    line-height: 1.8;

    font-weight: 400;
}


/* =========================================
   LOGO GRID
========================================= */

.sources-grid {
    display: grid;

    grid-template-columns:
        repeat(4, minmax(0, 1fr));

    gap: 18px;
}


/* =========================================
   SOURCE CARD
========================================= */

.source-logo {
    position: relative;

    min-height: 175px;

    display: flex;

    flex-direction: column;

    align-items: center;

    justify-content: center;

    padding: 20px 15px;

    box-sizing: border-box;

    background: #ffffff;

    border: 1px solid rgba(17, 34, 53, 0.09);

    border-radius: 7px;

    text-align: center;

    overflow: hidden;

    transition:
        transform 0.3s ease,
        border-color 0.3s ease,
        box-shadow 0.3s ease;
}


/* =========================================
   TOP ORANGE ACCENT
========================================= */

.source-logo::before {
    content: "";

    position: absolute;

    top: 0;
    left: 50%;

    width: 0;

    height: 3px;

    background: #fd691b;

    transform: translateX(-50%);

    transition: width 0.3s ease;
}


/* =========================================
   LOGO IMAGE AREA
========================================= */

.source-image {
    width: 100%;

    height: 82px;

    display: flex;

    align-items: center;

    justify-content: center;

    margin-bottom: 14px;

    box-sizing: border-box;
}


/* =========================================
   LOGO IMAGE
   NO GRAYSCALE
   NO DARK OVERLAY
========================================= */

.source-image img {
    display: block;

    width: auto;

    height: auto;

    max-width: 190px;

    max-height: 70px;

    object-fit: contain;

    /* ORIGINAL LOGO COLOURS */
    filter: none;

    opacity: 1;

    visibility: visible;

    mix-blend-mode: normal;

    transition:
        transform 0.3s ease;
}


/* =========================================
   SOURCE NAME
========================================= */

.source-logo h3 {
    position: relative;

    margin: 0;

    padding: 0;

    color: #112235;

    font-size: 15px;

    font-weight: 800;

    line-height: 1.4;

    letter-spacing: 0.2px;

    text-align: center;

    transition:
        color 0.3s ease;
}


/* =========================================
   ORANGE UNDERLINE
========================================= */

.source-logo h3::after {
    content: "";

    display: block;

    width: 28px;

    height: 2px;

    margin: 9px auto 0;

    background: #fd691b;

    border-radius: 10px;

    transition:
        width 0.3s ease;
}


/* =========================================
   CARD HOVER
========================================= */

.source-logo:hover {
    transform: translateY(-6px);

    border-color:
        rgba(253, 105, 27, 0.35);

    box-shadow:
        0 18px 40px
        rgba(17, 34, 53, 0.10);
}


.source-logo:hover::before {
    width: 65px;
}


.source-logo:hover .source-image img {
    transform: scale(1.07);

    /* KEEP ORIGINAL COLOUR */
    filter: none;

    opacity: 1;
}


.source-logo:hover h3 {
    color: #fd691b;
}


.source-logo:hover h3::after {
    width: 48px;
}


/* =========================================
   TABLET
========================================= */

@media (max-width: 1000px) {

    .sources-section {
        padding: 75px 0;
    }


    .sources-header {
        margin-bottom: 42px;
    }


    .sources-grid {
        grid-template-columns:
            repeat(3, minmax(0, 1fr));

        gap: 15px;
    }


    .source-logo {
        min-height: 165px;

        padding: 18px 12px;
    }


    .source-image {
        height: 76px;
    }


    .source-image img {
        max-width: 175px;

        max-height: 65px;
    }


    .source-logo h3 {
        font-size: 14px;
    }

}


/* =========================================
   TABLET / SMALL LAPTOP
========================================= */

@media (max-width: 768px) {

    .sources-section {
        padding: 70px 0;
    }


    .sources-header {
        max-width: 620px;

        margin-bottom: 38px;
    }


    .sources-header h2 {
        font-size: 42px;

        letter-spacing: -1.2px;
    }


    .sources-header p {
        font-size: 14px;

        line-height: 1.75;
    }


    .sources-grid {
        grid-template-columns:
            repeat(3, minmax(0, 1fr));

        gap: 12px;
    }


    .source-logo {
        min-height: 155px;

        padding: 16px 10px;
    }


    .source-image {
        height: 70px;

        margin-bottom: 11px;
    }


    .source-image img {
        max-width: 155px;

        max-height: 60px;
    }


    .source-logo h3 {
        font-size: 13px;

        line-height: 1.35;
    }


    .source-logo h3::after {
        width: 25px;

        margin-top: 7px;
    }

}


/* =========================================
   MOBILE
========================================= */

@media (max-width: 600px) {

    .sources-section {
        padding: 60px 0;
    }


    .sources-section .container {
        width: 92%;
    }


    /* HEADER */

    .sources-header {
        margin-bottom: 32px;
    }


    .sources-eyebrow {
        gap: 7px;

        margin-bottom: 12px;

        font-size: 8px;

        letter-spacing: 1.8px;
    }


    .sources-eyebrow::before,
    .sources-eyebrow::after {
        width: 18px;

        height: 1.5px;
    }


    .sources-header h2 {
        font-size: 37px;

        letter-spacing: -1px;
    }


    .sources-header p {
        margin-top: 14px;

        font-size: 13px;

        line-height: 1.7;
    }


    /* GRID */

    .sources-grid {
        grid-template-columns:
            repeat(2, minmax(0, 1fr));

        gap: 11px;
    }


    /* CARD */

    .source-logo {
        min-height: 145px;

        padding: 14px 8px;

        border-radius: 6px;
    }


    /* IMAGE */

    .source-image {
        height: 65px;

        margin-bottom: 10px;
    }


    .source-image img {
        max-width: 135px;

        max-height: 55px;

        filter: none;

        opacity: 1;
    }


    /* NAME */

    .source-logo h3 {
        font-size: 12px;

        line-height: 1.35;

        font-weight: 800;
    }


    .source-logo h3::after {
        width: 22px;

        height: 2px;

        margin-top: 7px;
    }


    /* HOVER */

    .source-logo:hover {
        transform: translateY(-3px);
    }


    .source-logo:hover .source-image img {
        transform: scale(1.04);
    }

}


/* =========================================
   SMALL MOBILE
========================================= */

@media (max-width: 380px) {

    .sources-section {
        padding: 50px 0;
    }


    .sources-header h2 {
        font-size: 33px;
    }


    .sources-header p {
        font-size: 12px;

        line-height: 1.7;
    }


    .sources-grid {
        gap: 8px;
    }


    .source-logo {
        min-height: 135px;

        padding: 11px 6px;
    }


    .source-image {
        height: 58px;

        margin-bottom: 8px;
    }


    .source-image img {
        max-width: 120px;

        max-height: 50px;
    }


    .source-logo h3 {
        font-size: 11px;

        line-height: 1.3;
    }


    .source-logo h3::after {
        width: 18px;

        height: 1.5px;

        margin-top: 6px;
    }

}


/* =========================================
   ACCESSIBILITY
========================================= */

@media (prefers-reduced-motion: reduce) {

    .source-logo,
    .source-logo img,
    .source-logo h3,
    .source-logo h3::after,
    .source-logo::before {
        transition: none;
    }

}
/* =====================================================
   PREMIUM ABOUT US SECTION
   SHANTI METAL SUPPLY CORPORATION

   NAVY   : #112235
   ORANGE : #fd691b
===================================================== */


/* =====================================================
   MAIN SECTION
===================================================== */

.about-premium {
    position: relative;

    padding: 100px 0;

    background: #ffffff;

    overflow: hidden;
}


/* =====================================================
   CONTAINER
===================================================== */

.about-premium .container {
    position: relative;

    z-index: 2;

    width: min(1200px, 92%);

    margin: 0 auto;
}


/* =====================================================
   BACKGROUND SHAPES
===================================================== */

.about-bg-shape {
    position: absolute;

    pointer-events: none;
}


.about-shape-one {
    width: 450px;

    height: 450px;

    left: -250px;

    top: -200px;

    border-radius: 50%;

    background:
        radial-gradient(
            circle,
            rgba(253, 105, 27, 0.08),
            transparent 68%
        );
}


.about-shape-two {
    width: 500px;

    height: 500px;

    right: -300px;

    bottom: -300px;

    border-radius: 50%;

    border: 1px solid
        rgba(17, 34, 53, 0.05);

    box-shadow:
        0 0 0 35px
        rgba(17, 34, 53, 0.015),

        0 0 0 70px
        rgba(17, 34, 53, 0.01);
}


/* =====================================================
   SECTION HEADING
===================================================== */

.about-heading {
    max-width: 760px;

    margin: 0 auto 65px;

    text-align: center;
}


.about-eyebrow {
    display: inline-flex;

    align-items: center;

    gap: 10px;

    margin-bottom: 15px;

    color: #fd691b;

    font-size: 11px;

    font-weight: 800;

    letter-spacing: 2.5px;

    text-transform: uppercase;
}


.about-eyebrow::before,
.about-eyebrow::after {
    content: "";

    width: 28px;

    height: 2px;

    background: #fd691b;

    border-radius: 10px;
}


.about-heading h2 {
    margin: 0;

    color: #112235;

    font-size: clamp(38px, 5vw, 58px);

    line-height: 1.05;

    font-weight: 800;

    letter-spacing: -1.8px;
}


.about-heading h2 span {
    color: #fd691b;
}


.about-heading p {
    max-width: 650px;

    margin: 20px auto 0;

    color: #667482;

    font-size: 16px;

    line-height: 1.8;
}


/* =====================================================
   MAIN GRID
===================================================== */

.about-main-grid {
    display: grid;

    grid-template-columns:
        0.9fr 1.1fr;

    gap: 75px;

    align-items: center;
}


/* =====================================================
   LEFT VISUAL
===================================================== */

.about-visual {
    position: relative;
}


.about-image-box {
    position: relative;

    width: 100%;

    height: 530px;

    border-radius: 4px;

    overflow: hidden;

    background: #f3f5f6;

    box-shadow:
        0 25px 60px
        rgba(17, 34, 53, 0.13);
}


.about-image-box::after {
    content: "";

    position: absolute;

    inset: 0;

    background:
        linear-gradient(
            135deg,
            rgba(17,34,53,0.02),
            transparent 50%,
            rgba(253,105,27,0.10)
        );

    pointer-events: none;
}


.about-image-box img {
    width: 100%;

    height: 100%;

    display: block;

    object-fit: cover;
}


/* =====================================================
   EXPERIENCE CARD
===================================================== */

.experience-card {
    position: absolute;

    left: 25px;

    bottom: 25px;

    display: flex;

    align-items: center;

    gap: 15px;

    min-width: 205px;

    padding: 18px 22px;

    background: #112235;

    border-left: 4px solid #fd691b;

    box-shadow:
        0 15px 35px
        rgba(17, 34, 53, 0.25);
}


.experience-card strong {
    color: #fd691b;

    font-size: 42px;

    line-height: 1;

    font-weight: 900;
}


.experience-card span {
    color: #ffffff;

    font-size: 12px;

    line-height: 1.4;

    font-weight: 700;

    text-transform: uppercase;

    letter-spacing: 0.5px;
}


/* =====================================================
   ORANGE VISUAL LINE
===================================================== */

.about-orange-line {
    position: absolute;

    width: 100px;

    height: 5px;

    left: -20px;

    bottom: -12px;

    background: #fd691b;
}


/* =====================================================
   RIGHT CONTENT
===================================================== */

.about-content {
    padding-top: 5px;
}


.content-label {
    display: block;

    margin-bottom: 10px;

    color: #fd691b;

    font-size: 11px;

    font-weight: 800;

    letter-spacing: 2px;

    text-transform: uppercase;
}


.about-content h3 {
    margin: 0 0 22px;

    color: #112235;

    font-size: clamp(30px, 3.2vw, 43px);

    line-height: 1.15;

    font-weight: 800;

    letter-spacing: -1px;
}


.about-content h3 span {
    color: #fd691b;
}


.about-content p {
    margin: 0 0 17px;

    color: #5f6d79;

    font-size: 16px;

    line-height: 1.85;
}


/* =====================================================
   HIGHLIGHTS
===================================================== */

.about-highlights {
    display: grid;

    grid-template-columns:
        repeat(2, 1fr);

    gap: 12px;

    margin-top: 30px;
}


.about-highlight {
    display: flex;

    align-items: center;

    gap: 12px;

    padding: 15px;

    background: #f8f9fa;

    border: 1px solid
        rgba(17, 34, 53, 0.07);

    transition:
        transform 0.3s ease,
        border-color 0.3s ease,
        box-shadow 0.3s ease;
}


.about-highlight:hover {
    transform: translateY(-3px);

    border-color:
        rgba(253, 105, 27, 0.3);

    box-shadow:
        0 10px 25px
        rgba(17, 34, 53, 0.07);
}


.highlight-icon {
    width: 34px;

    height: 34px;

    flex-shrink: 0;

    display: flex;

    align-items: center;

    justify-content: center;

    background: #fd691b;

    color: #ffffff;

    border-radius: 50%;

    font-size: 15px;

    font-weight: 900;
}


.about-highlight strong {
    display: block;

    color: #112235;

    font-size: 13px;

    font-weight: 800;
}


.about-highlight small {
    display: block;

    margin-top: 3px;

    color: #78838d;

    font-size: 10px;
}


/* =====================================================
   WHY US
===================================================== */

.why-us-box {
    position: relative;

    margin-top: 100px;

    padding: 45px;

    background: #f7f8f9;

    border: 1px solid
        rgba(17, 34, 53, 0.07);

    border-top: 3px solid #fd691b;

    box-shadow:
        0 20px 50px
        rgba(17, 34, 53, 0.06);
}


/* =====================================================
   WHY US HEADING
===================================================== */

.why-us-heading {
    display: flex;

    align-items: center;

    gap: 20px;

    margin-bottom: 30px;
}


.why-icon {
    width: 58px;

    height: 58px;

    flex-shrink: 0;

    display: flex;

    align-items: center;

    justify-content: center;

    background: #112235;

    color: #fd691b;

    font-size: 25px;

    border-radius: 50%;
}


.why-us-heading .content-label {
    margin-bottom: 5px;
}


.why-us-heading h3 {
    margin: 0;

    color: #112235;

    font-size: 32px;

    line-height: 1.2;

    font-weight: 800;
}


.why-us-heading h3 span {
    color: #fd691b;
}


/* =====================================================
   WHY CONTENT GRID
===================================================== */

.why-us-content {
    display: grid;

    grid-template-columns:
        1fr 1fr;

    gap: 55px;

    align-items: start;
}


/* =====================================================
   WHY TEXT
===================================================== */

.why-us-text p {
    margin: 0 0 15px;

    color: #5f6d79;

    font-size: 15px;

    line-height: 1.85;
}


/* =====================================================
   PRODUCT RANGE
===================================================== */

.product-range {
    padding-left: 35px;

    border-left: 1px solid
        rgba(17, 34, 53, 0.12);
}


.product-range h4 {
    margin: 0 0 18px;

    color: #112235;

    font-size: 18px;

    font-weight: 800;
}


.range-list {
    display: flex;

    flex-wrap: wrap;

    gap: 9px;
}


.range-list span {
    display: inline-flex;

    align-items: center;

    padding: 8px 12px;

    background: #ffffff;

    border: 1px solid
        rgba(17, 34, 53, 0.08);

    color: #112235;

    font-size: 11px;

    font-weight: 700;

    border-radius: 3px;

    transition:
        background 0.25s ease,
        color 0.25s ease,
        border-color 0.25s ease;
}


.range-list span:hover {
    background: #fd691b;

    border-color: #fd691b;

    color: #ffffff;
}


/* =====================================================
   TABLET
===================================================== */

@media (max-width: 1000px) {

    .about-premium {
        padding: 80px 0;
    }


    .about-main-grid {
        grid-template-columns: 1fr;

        gap: 55px;
    }


    .about-image-box {
        height: 480px;
    }


    .about-visual {
        max-width: 700px;

        margin: 0 auto;

        width: 100%;
    }


    .about-content {
        max-width: 800px;

        margin: 0 auto;
    }


    .why-us-content {
        grid-template-columns: 1fr;

        gap: 30px;
    }


    .product-range {
        padding-left: 0;

        padding-top: 25px;

        border-left: 0;

        border-top: 1px solid
            rgba(17, 34, 53, 0.12);
    }

}


/* =====================================================
   TABLET
===================================================== */

@media (max-width: 768px) {

    .about-premium {
        padding: 70px 0;
    }


    .about-heading {
        margin-bottom: 45px;
    }


    .about-heading h2 {
        font-size: 42px;
    }


    .about-heading p {
        font-size: 14px;
    }


    .about-image-box {
        height: 420px;
    }


    .about-content h3 {
        font-size: 34px;
    }


    .about-content p {
        font-size: 15px;

        line-height: 1.75;
    }


    .why-us-box {
        margin-top: 70px;

        padding: 32px;
    }


    .why-us-heading h3 {
        font-size: 28px;
    }

}


/* =====================================================
   MOBILE
===================================================== */

@media (max-width: 600px) {

    .about-premium {
        padding: 60px 0;
    }


    .about-premium .container {
        width: 92%;
    }


    /* HEADER */

    .about-heading {
        margin-bottom: 38px;
    }


    .about-eyebrow {
        font-size: 8px;

        letter-spacing: 1.8px;

        gap: 7px;
    }


    .about-eyebrow::before,
    .about-eyebrow::after {
        width: 18px;

        height: 1.5px;
    }


    .about-heading h2 {
        font-size: 35px;

        letter-spacing: -1px;
    }


    .about-heading p {
        margin-top: 15px;

        font-size: 13px;

        line-height: 1.7;
    }


    /* IMAGE */

    .about-image-box {
        height: 350px;

        border-radius: 3px;
    }


    .experience-card {
        left: 15px;

        bottom: 15px;

        min-width: 175px;

        padding: 14px 16px;

        gap: 11px;
    }


    .experience-card strong {
        font-size: 34px;
    }


    .experience-card span {
        font-size: 9px;
    }


    .about-orange-line {
        left: -5px;

        width: 70px;

        height: 4px;

        bottom: -9px;
    }


    /* CONTENT */

    .about-content {
        padding-top: 0;
    }


    .content-label {
        font-size: 9px;

        letter-spacing: 1.7px;
    }


    .about-content h3 {
        margin-bottom: 17px;

        font-size: 29px;

        line-height: 1.2;
    }


    .about-content p {
        font-size: 14px;

        line-height: 1.75;

        margin-bottom: 14px;
    }


    /* HIGHLIGHTS */

    .about-highlights {
        grid-template-columns: 1fr 1fr;

        gap: 8px;

        margin-top: 23px;
    }


    .about-highlight {
        padding: 11px;

        gap: 8px;
    }


    .highlight-icon {
        width: 28px;

        height: 28px;

        font-size: 12px;
    }


    .about-highlight strong {
        font-size: 10px;
    }


    .about-highlight small {
        font-size: 8px;
    }


    /* WHY US */

    .why-us-box {
        margin-top: 60px;

        padding: 25px 18px;
    }


    .why-us-heading {
        gap: 13px;

        margin-bottom: 22px;
    }


    .why-icon {
        width: 45px;

        height: 45px;

        font-size: 18px;
    }


    .why-us-heading h3 {
        font-size: 24px;
    }


    .why-us-text p {
        font-size: 13px;

        line-height: 1.75;
    }


    .product-range {
        padding-top: 22px;
    }


    .product-range h4 {
        font-size: 16px;
    }


    .range-list {
        gap: 6px;
    }


    .range-list span {
        padding: 7px 9px;

        font-size: 9px;
    }

}


/* =====================================================
   SMALL MOBILE
===================================================== */

@media (max-width: 380px) {

    .about-premium {
        padding: 50px 0;
    }


    .about-heading h2 {
        font-size: 31px;
    }


    .about-image-box {
        height: 310px;
    }


    .about-content h3 {
        font-size: 26px;
    }


    .about-content p {
        font-size: 13px;
    }


    .about-highlights {
        grid-template-columns: 1fr;
    }


    .why-us-box {
        padding: 22px 15px;
    }


    .why-us-heading h3 {
        font-size: 21px;
    }

}


/* =====================================================
   REDUCE MOTION
===================================================== */

@media (prefers-reduced-motion: reduce) {

    .about-highlight,
    .range-list span {
        transition: none;
    }

}

/* =====================================================
   INDUSTRIES + VALUES SECTION
   SHANTI METAL SUPPLY CORPORATION

   NAVY   : #112235
   ORANGE : #fd691b
===================================================== */

.industries-values-section {
    position: relative;
    padding: 100px 0;
    background: #f7f8fa;
    overflow: hidden;
}


/* BACKGROUND DECORATION */

.industries-values-section::before {
    content: "";
    position: absolute;
    width: 500px;
    height: 500px;
    left: -280px;
    top: -220px;
    border-radius: 50%;
    background: radial-gradient(
        circle,
        rgba(253,105,27,0.08),
        transparent 70%
    );
    pointer-events: none;
}

.industries-values-section::after {
    content: "";
    position: absolute;
    width: 450px;
    height: 450px;
    right: -280px;
    bottom: -250px;
    border-radius: 50%;
    border: 1px solid rgba(17,34,53,0.06);
    pointer-events: none;
}


/* CONTAINER */

.industries-values-section .container {
    position: relative;
    z-index: 2;
    width: min(1200px, 92%);
    margin: auto;
}


/* MAIN GRID */

.industries-values-grid {
    display: grid;
    grid-template-columns: 1.15fr 0.85fr;
    gap: 75px;
    align-items: start;
}


/* =====================================================
   LEFT CONTENT
===================================================== */

.industries-content {
    padding-right: 10px;
}


/* EYEBROW */

.section-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    margin-bottom: 13px;
    color: #fd691b;
    font-size: 10px;
    font-weight: 800;
    letter-spacing: 2.2px;
    text-transform: uppercase;
}

.section-eyebrow::before {
    content: "";
    width: 28px;
    height: 2px;
    background: #fd691b;
}


/* HEADING */

.industries-content > h2 {
    margin: 0 0 18px;
    color: #112235;
    font-size: clamp(38px, 4.2vw, 54px);
    line-height: 1.05;
    font-weight: 800;
    letter-spacing: -1.5px;
}

.industries-content > h2 span {
    color: #fd691b;
}


/* INTRO */

.intro-text {
    max-width: 760px;
    margin: 0 0 28px;
    color: #65727e;
    font-size: 15px;
    line-height: 1.85;
}


/* =====================================================
   INDUSTRY TAGS
===================================================== */

.industry-list {
    display: flex;
    flex-wrap: wrap;
    gap: 9px;
    margin-bottom: 30px;
}

.industry-list span {
    padding: 9px 13px;
    background: #ffffff;
    border: 1px solid rgba(17,34,53,0.08);
    color: #112235;
    font-size: 11px;
    font-weight: 700;
    border-radius: 3px;
    transition: all 0.25s ease;
}

.industry-list span:hover {
    color: #ffffff;
    background: #fd691b;
    border-color: #fd691b;
    transform: translateY(-2px);
}


/* =====================================================
   STOCK HIGHLIGHT
===================================================== */

.stock-highlight {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    padding: 20px;
    margin-bottom: 50px;
    background: #112235;
    border-left: 4px solid #fd691b;
    box-shadow: 0 12px 30px rgba(17,34,53,0.12);
}

.stock-icon {
    width: 34px;
    height: 34px;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #fd691b;
    color: #ffffff;
    border-radius: 50%;
    font-size: 15px;
    font-weight: 900;
}

.stock-highlight strong {
    display: block;
    margin-bottom: 6px;
    color: #ffffff;
    font-size: 14px;
}

.stock-highlight p {
    margin: 0;
    color: rgba(255,255,255,0.72);
    font-size: 12px;
    line-height: 1.7;
}


/* =====================================================
   VALUES HEADING
===================================================== */

.values-heading {
    margin-bottom: 25px;
}

.values-heading .section-eyebrow {
    margin-bottom: 8px;
}

.values-heading h3 {
    margin: 0;
    color: #112235;
    font-size: 30px;
    font-weight: 800;
}

.values-heading h3 span {
    color: #fd691b;
}


/* =====================================================
   VALUES
===================================================== */

.values-list {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.value-item {
    display: grid;
    grid-template-columns: 48px 1fr;
    gap: 15px;
    padding: 18px 0;
    border-bottom: 1px solid rgba(17,34,53,0.09);
}

.value-number {
    color: #fd691b;
    font-size: 13px;
    font-weight: 900;
    padding-top: 2px;
}

.value-item h4 {
    margin: 0 0 6px;
    color: #112235;
    font-size: 15px;
    font-weight: 800;
}

.value-item p {
    margin: 0;
    color: #697681;
    font-size: 13px;
    line-height: 1.7;
}


/* =====================================================
   RIGHT CERTIFICATE
===================================================== */

.certificate-side {
    position: sticky;
    top: 100px;
}


/* CERTIFICATE CARD */

.certificate-card {
    position: relative;
    padding: 22px;
    background: #ffffff;
    border: 1px solid rgba(17,34,53,0.08);
    box-shadow:
        0 25px 60px rgba(17,34,53,0.12);
}


/* ORANGE TOP */

.certificate-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 75px;
    height: 4px;
    background: #fd691b;
}


/* CERTIFICATE TOP */

.certificate-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 20px;
}

.certificate-top > span {
    color: #112235;
    font-size: 10px;
    font-weight: 800;
    letter-spacing: 2px;
}


.certificate-check {
    width: 35px;
    height: 35px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #112235;
    color: #fd691b;
    border-radius: 50%;
    font-size: 15px;
    font-weight: 900;
}


/* CERTIFICATE IMAGE */

.certificate-image {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 390px;
    padding: 15px;
    background: #f3f4f5;
    border: 1px solid rgba(17,34,53,0.07);
}


.certificate-image img {
    display: block;
    width: 100%;
    max-width: 440px;
    max-height: 480px;
    height: auto;
    object-fit: contain;
}


/* CERTIFICATE CONTENT */

.certificate-content {
    padding: 25px 5px 18px;
}


.certificate-label {
    color: #fd691b;
    font-size: 9px;
    font-weight: 800;
    letter-spacing: 2px;
}


.certificate-content h3 {
    margin: 8px 0 10px;
    color: #112235;
    font-size: 28px;
    line-height: 1.15;
    font-weight: 800;
}


.certificate-content h3 span {
    color: #fd691b;
}


.certificate-content p {
    margin: 0;
    color: #687681;
    font-size: 13px;
    line-height: 1.75;
}


/* CERTIFICATE FOOTER */

.certificate-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    padding-top: 17px;
    border-top: 1px solid rgba(17,34,53,0.08);
}


.certificate-footer span:first-child {
    color: #112235;
    font-size: 8px;
    font-weight: 800;
    letter-spacing: 1px;
}


.certificate-footer span:last-child {
    color: #fd691b;
    font-size: 11px;
    font-weight: 900;
}


/* =====================================================
   TRUST CARDS
===================================================== */

.certificate-trust {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
    margin-top: 15px;
}


.certificate-trust div {
    padding: 18px;
    background: #112235;
    text-align: center;
}


.certificate-trust strong {
    display: block;
    color: #fd691b;
    font-size: 25px;
    font-weight: 900;
}


.certificate-trust span {
    display: block;
    margin-top: 4px;
    color: rgba(255,255,255,0.72);
    font-size: 9px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.8px;
}


/* =====================================================
   TABLET
===================================================== */

@media (max-width: 1000px) {

    .industries-values-section {
        padding: 80px 0;
    }

    .industries-values-grid {
        grid-template-columns: 1fr;
        gap: 60px;
    }

    .industries-content {
        padding-right: 0;
    }

    .certificate-side {
        position: relative;
        top: auto;
        max-width: 650px;
        width: 100%;
        margin: auto;
    }

    .certificate-image {
        min-height: 420px;
    }

}


/* =====================================================
   MOBILE
===================================================== */

@media (max-width: 600px) {

    .industries-values-section {
        padding: 60px 0;
    }

    .industries-values-section .container {
        width: 92%;
    }


    /* HEADING */

    .industries-content > h2 {
        font-size: 35px;
        letter-spacing: -1px;
    }

    .intro-text {
        font-size: 13px;
        line-height: 1.75;
    }


    /* INDUSTRIES */

    .industry-list {
        gap: 7px;
    }

    .industry-list span {
        padding: 8px 10px;
        font-size: 9px;
    }


    /* STOCK */

    .stock-highlight {
        padding: 16px;
        margin-bottom: 40px;
        gap: 10px;
    }

    .stock-icon {
        width: 29px;
        height: 29px;
        font-size: 12px;
    }

    .stock-highlight strong {
        font-size: 12px;
    }

    .stock-highlight p {
        font-size: 10px;
    }


    /* VALUES */

    .values-heading h3 {
        font-size: 25px;
    }

    .value-item {
        grid-template-columns: 35px 1fr;
        gap: 8px;
        padding: 15px 0;
    }

    .value-number {
        font-size: 11px;
    }

    .value-item h4 {
        font-size: 13px;
    }

    .value-item p {
        font-size: 11px;
        line-height: 1.65;
    }


    /* CERTIFICATE */

    .certificate-card {
        padding: 15px;
    }

    .certificate-image {
        min-height: 320px;
        padding: 10px;
    }

    .certificate-image img {
        max-height: 390px;
    }

    .certificate-content {
        padding: 20px 3px 15px;
    }

    .certificate-content h3 {
        font-size: 24px;
    }

    .certificate-content p {
        font-size: 11px;
    }


    /* TRUST */

    .certificate-trust {
        gap: 8px;
    }

    .certificate-trust div {
        padding: 14px 8px;
    }

    .certificate-trust strong {
        font-size: 21px;
    }

    .certificate-trust span {
        font-size: 8px;
    }

}


/* =====================================================
   SMALL MOBILE
===================================================== */

@media (max-width: 380px) {

    .industries-values-section {
        padding: 50px 0;
    }

    .industries-content > h2 {
        font-size: 31px;
    }

    .industry-list span {
        font-size: 8px;
        padding: 7px 8px;
    }

    .certificate-image {
        min-height: 280px;
    }

    .certificate-content h3 {
        font-size: 22px;
    }

}

/* =====================================================
   QUALITY PAGE CSS
   SHANTI METAL SUPPLY CORPORATION

   ORANGE : #fd691b
   NAVY   : #112235
===================================================== */


/* =====================================================
   COMMON
===================================================== */

.quality-hero,
.quality-intro,
.inspection-section,
.traceability-section,
.environment-section,
.policy-section {
    width: 100%;
}

.quality-hero .container,
.quality-intro .container,
.inspection-section .container,
.traceability-section .container,
.environment-section .container,
.policy-section .container {
    width: min(1200px, 92%);
    margin: auto;
}


/* =====================================================
   HERO
===================================================== */

.quality-hero {
    position: relative;
    min-height: 390px;
    display: flex;
    align-items: center;
    background:
        linear-gradient(
            135deg,
            #112235 0%,
            #182d43 65%,
            #223b52 100%
        );
    overflow: hidden;
}


.quality-hero::before {
    content: "";
    position: absolute;
    width: 480px;
    height: 480px;
    right: -180px;
    top: -220px;
    border-radius: 50%;
    border: 70px solid rgba(253,105,27,0.12);
}


.quality-hero::after {
    content: "";
    position: absolute;
    width: 300px;
    height: 4px;
    right: 0;
    bottom: 70px;
    background: #fd691b;
}


.quality-hero-content {
    position: relative;
    z-index: 2;
    max-width: 780px;
    padding: 70px 0;
}


.quality-eyebrow {
    display: inline-block;
    margin-bottom: 18px;
    color: #fd691b;
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 3px;
}


.quality-hero h1 {
    margin: 0 0 20px;
    color: #ffffff;
    font-size: clamp(42px, 6vw, 70px);
    line-height: 1.02;
    letter-spacing: -2px;
}


.quality-hero h1 span {
    color: #fd691b;
}


.quality-hero p {
    max-width: 720px;
    margin: 0;
    color: rgba(255,255,255,0.76);
    font-size: 16px;
    line-height: 1.8;
}


/* =====================================================
   QUALITY INTRO
===================================================== */

.quality-intro {
    padding: 100px 0;
    background: #ffffff;
}


.quality-intro-grid {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 80px;
    align-items: center;
}


.section-label {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    margin-bottom: 14px;
    color: #fd691b;
    font-size: 10px;
    font-weight: 900;
    letter-spacing: 2.3px;
    text-transform: uppercase;
}


.section-label::before {
    content: "";
    width: 27px;
    height: 2px;
    background: #fd691b;
}


.quality-intro h2,
.traceability-content h2,
.environment-content h2,
.policy-heading h2,
.section-heading h2 {
    margin: 0 0 20px;
    color: #112235;
    font-size: clamp(35px, 4vw, 50px);
    line-height: 1.08;
    letter-spacing: -1.5px;
}


.quality-intro h2 span,
.traceability-content h2 span,
.environment-content h2 span,
.section-heading h2 span {
    color: #fd691b;
}


.quality-intro-content p,
.traceability-content > p,
.environment-content > p,
.policy-content p,
.section-heading p {
    color: #697681;
    font-size: 15px;
    line-height: 1.85;
}


/* =====================================================
   STANDARD CARD
===================================================== */

.quality-standard-card {
    padding: 35px;
    background: #f6f7f8;
    border-top: 5px solid #fd691b;
    box-shadow: 0 25px 60px rgba(17,34,53,0.10);
}


.standard-card-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 28px;
}


.standard-card-top > span {
    color: #112235;
    font-size: 10px;
    font-weight: 900;
    letter-spacing: 2px;
}


.quality-icon {
    width: 42px;
    height: 42px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #112235;
    color: #fd691b;
    border-radius: 50%;
    font-weight: 900;
}


.standard-list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
}


.standard-list div {
    min-height: 100px;
    padding: 20px;
    background: #ffffff;
    border: 1px solid rgba(17,34,53,0.07);
}


.standard-list strong {
    display: block;
    margin-bottom: 8px;
    color: #112235;
    font-size: 18px;
}


.standard-list span {
    color: #7a858e;
    font-size: 10px;
    line-height: 1.5;
}


.standard-bottom {
    margin-top: 22px;
    padding-top: 18px;
    border-top: 1px solid rgba(17,34,53,0.08);
    color: #fd691b;
    font-size: 9px;
    font-weight: 900;
    letter-spacing: 1.5px;
}


/* =====================================================
   THIRD PARTY INSPECTION
===================================================== */

.inspection-section {
    padding: 100px 0;
    background: #f6f7f8;
}


.section-heading {
    max-width: 760px;
    margin: 0 auto 50px;
}


.section-heading.center {
    text-align: center;
}


.section-heading.center .section-label {
    justify-content: center;
}


.section-heading p {
    margin: 0 auto;
}


.inspection-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 18px;
}


.inspection-card {
    padding: 28px 20px;
    text-align: center;
    background: #ffffff;
    border: 1px solid rgba(17,34,53,0.07);
    transition: 0.3s ease;
}


.inspection-card:hover {
    transform: translateY(-7px);
    border-color: rgba(253,105,27,0.35);
    box-shadow: 0 18px 40px rgba(17,34,53,0.10);
}


.inspection-logo {
    height: 120px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 18px;
}


.inspection-logo img {
    max-width: 145px;
    max-height: 100px;
    width: auto;
    height: auto;
    object-fit: contain;
}


.inspection-card h3 {
    margin: 0 0 6px;
    color: #112235;
    font-size: 17px;
}


.inspection-card p {
    margin: 0;
    color: #89939b;
    font-size: 11px;
}


.inspection-note {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    margin-top: 25px;
    padding: 18px 20px;
    background: #112235;
    color: #ffffff;
}


.inspection-note strong {
    color: #fd691b;
    font-size: 11px;
}


.inspection-note span {
    color: rgba(255,255,255,0.72);
    font-size: 11px;
}


/* =====================================================
   TRACEABILITY
===================================================== */

.traceability-section {
    padding: 100px 0;
    background: #ffffff;
}


.traceability-grid {
    display: grid;
    grid-template-columns: 0.8fr 1.2fr;
    gap: 80px;
    align-items: center;
}


.traceability-image {
    min-height: 430px;
    display: flex;
    align-items: center;
    justify-content: center;
    background:
        linear-gradient(
            145deg,
            #112235,
            #1d3449
        );
    position: relative;
    overflow: hidden;
}


.traceability-image::before {
    content: "";
    position: absolute;
    width: 280px;
    height: 280px;
    border: 1px solid rgba(253,105,27,0.4);
    border-radius: 50%;
}


.traceability-image::after {
    content: "";
    position: absolute;
    width: 380px;
    height: 380px;
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 50%;
}


.traceability-box {
    position: relative;
    z-index: 2;
    text-align: center;
}


.traceability-line {
    width: 55px;
    height: 4px;
    margin: 0 auto 20px;
    background: #fd691b;
}


.traceability-box span {
    display: block;
    margin-bottom: 8px;
    color: rgba(255,255,255,0.55);
    font-size: 10px;
    letter-spacing: 4px;
}


.traceability-box strong {
    display: block;
    color: #ffffff;
    font-size: 34px;
    letter-spacing: 1px;
}


.traceability-box small {
    display: block;
    margin-top: 15px;
    color: #fd691b;
    font-size: 8px;
    font-weight: 800;
    letter-spacing: 1.5px;
}


.traceability-points {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
    margin-top: 30px;
}


.traceability-points div {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 15px;
    background: #f6f7f8;
}


.traceability-points span {
    color: #fd691b;
    font-size: 10px;
    font-weight: 900;
}


.traceability-points strong {
    color: #112235;
    font-size: 11px;
}


/* =====================================================
   ENVIRONMENT
===================================================== */

.environment-section {
    padding: 100px 0;
    background: #f6f7f8;
}


.environment-grid {
    display: grid;
    grid-template-columns: 1.15fr 0.85fr;
    gap: 80px;
    align-items: center;
}


.environment-list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
    margin-top: 28px;
}


.environment-list div {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    padding: 15px;
    background: #ffffff;
}


.environment-list span {
    color: #fd691b;
    font-weight: 900;
}


.environment-list p {
    margin: 0;
    color: #687681;
    font-size: 11px;
    line-height: 1.6;
}


.environment-card {
    position: relative;
    min-height: 400px;
    padding: 50px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    background: #112235;
    overflow: hidden;
}


.environment-card::after {
    content: "";
    position: absolute;
    width: 280px;
    height: 280px;
    right: -130px;
    bottom: -130px;
    border: 55px solid rgba(253,105,27,0.12);
    border-radius: 50%;
}


.environment-card-icon {
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 25px;
    background: #fd691b;
    color: #ffffff;
    border-radius: 50%;
    font-size: 25px;
}


.environment-card > span {
    color: #fd691b;
    font-size: 9px;
    font-weight: 900;
    letter-spacing: 2px;
}


.environment-card h3 {
    margin: 15px 0;
    color: #ffffff;
    font-size: 45px;
    line-height: 1;
}


.environment-card p {
    max-width: 330px;
    color: rgba(255,255,255,0.68);
    font-size: 12px;
    line-height: 1.7;
}


/* =====================================================
   QUALITY POLICY
===================================================== */

.policy-section {
    padding: 100px 0;
    background: #ffffff;
}


.policy-box {
    display: grid;
    grid-template-columns: 0.7fr 1.3fr;
    gap: 70px;
    padding: 60px;
    background: #f6f7f8;
    border-left: 5px solid #fd691b;
}


.policy-heading h2 {
    font-size: 45px;
}


.policy-content p {
    margin-top: 0;
    margin-bottom: 18px;
}


.policy-highlight {
    margin-top: 25px;
    padding: 20px;
    background: #112235;
}


.policy-highlight span {
    display: block;
    margin-bottom: 7px;
    color: #fd691b;
    font-size: 9px;
    font-weight: 900;
    letter-spacing: 2px;
}


.policy-highlight strong {
    color: #ffffff;
    font-size: 13px;
}


/* =====================================================
   TABLET
===================================================== */

@media (max-width: 1000px) {

    .quality-intro-grid,
    .traceability-grid,
    .environment-grid,
    .policy-box {
        grid-template-columns: 1fr;
        gap: 45px;
    }


    .inspection-grid {
        grid-template-columns: repeat(2, 1fr);
    }


    .certificate-side {
        position: relative;
    }


    .quality-standard-card {
        max-width: 650px;
    }

}


/* =====================================================
   MOBILE
===================================================== */

@media (max-width: 600px) {

    .quality-hero {
        min-height: 430px;
    }


    .quality-hero-content {
        padding: 55px 0;
    }


    .quality-eyebrow {
        font-size: 8px;
        letter-spacing: 2px;
    }


    .quality-hero h1 {
        font-size: 39px;
        letter-spacing: -1px;
    }


    .quality-hero p {
        font-size: 13px;
        line-height: 1.7;
    }


    .quality-intro,
    .inspection-section,
    .traceability-section,
    .environment-section,
    .policy-section {
        padding: 65px 0;
    }


    .quality-intro h2,
    .traceability-content h2,
    .environment-content h2,
    .section-heading h2 {
        font-size: 34px;
    }


    .quality-intro-content p,
    .traceability-content > p,
    .environment-content > p,
    .policy-content p,
    .section-heading p {
        font-size: 13px;
        line-height: 1.75;
    }


    .quality-standard-card {
        padding: 22px;
    }


    .standard-list {
        grid-template-columns: 1fr;
    }


    .standard-list div {
        min-height: auto;
    }


    /* INSPECTION */

    .inspection-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 10px;
    }


    .inspection-card {
        padding: 18px 10px;
    }


    .inspection-logo {
        height: 90px;
    }


    .inspection-logo img {
        max-width: 105px;
        max-height: 75px;
    }


    .inspection-card h3 {
        font-size: 13px;
    }


    .inspection-card p {
        font-size: 9px;
    }


    .inspection-note {
        flex-direction: column;
        gap: 6px;
        text-align: center;
    }


    /* TRACEABILITY */

    .traceability-image {
        min-height: 300px;
    }


    .traceability-box strong {
        font-size: 27px;
    }


    .traceability-points {
        grid-template-columns: 1fr;
    }


    /* ENVIRONMENT */

    .environment-list {
        grid-template-columns: 1fr;
    }


    .environment-card {
        min-height: 330px;
        padding: 35px;
    }


    .environment-card h3 {
        font-size: 38px;
    }


    /* POLICY */

    .policy-box {
        padding: 30px 22px;
        gap: 25px;
    }


    .policy-heading h2 {
        font-size: 36px;
    }

}


/* =====================================================
   SMALL MOBILE
===================================================== */

@media (max-width: 380px) {

    .quality-hero h1 {
        font-size: 34px;
    }


    .inspection-grid {
        grid-template-columns: 1fr;
    }


    .inspection-logo {
        height: 110px;
    }


    .quality-intro h2,
    .traceability-content h2,
    .environment-content h2,
    .section-heading h2 {
        font-size: 30px;
    }

}
/* =====================================================
   CERTIFICATES SECTION
===================================================== */

.certificates-section {
    position: relative;
    padding: 100px 0;
    background: #f6f7f8;
    overflow: hidden;
}


/* DECORATIVE BACKGROUND */

.certificates-section::before {
    content: "";
    position: absolute;
    width: 400px;
    height: 400px;
    left: -220px;
    top: -180px;
    border-radius: 50%;
    border: 70px solid rgba(253,105,27,0.06);
}

.certificates-section::after {
    content: "";
    position: absolute;
    width: 300px;
    height: 300px;
    right: -180px;
    bottom: -180px;
    border-radius: 50%;
    background: rgba(17,34,53,0.035);
}


/* CONTAINER */

.certificates-section .container {
    position: relative;
    z-index: 2;
    width: min(1150px, 92%);
    margin: auto;
}


/* =====================================================
   HEADING
===================================================== */

.certificates-heading {
    max-width: 760px;
    margin: 0 auto 55px;
    text-align: center;
}


.certificates-heading .section-label {
    display: inline-flex;
    align-items: center;
    gap: 9px;

    color: #fd691b;
    font-size: 10px;
    font-weight: 900;
    letter-spacing: 2.5px;
}


.certificates-heading .section-label::before {
    content: "";
    width: 28px;
    height: 2px;
    background: #fd691b;
}


.certificates-heading h2 {
    margin: 12px 0 17px;

    color: #112235;
    font-size: clamp(38px, 4.5vw, 55px);
    line-height: 1.05;
    letter-spacing: -1.5px;
}


.certificates-heading h2 span {
    color: #fd691b;
}


.certificates-heading p {
    max-width: 680px;
    margin: auto;

    color: #687681;
    font-size: 14px;
    line-height: 1.8;
}


/* =====================================================
   CERTIFICATE GRID
===================================================== */

.certificates-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
}


/* =====================================================
   CERTIFICATE CARD
===================================================== */

.certificate-box {
    position: relative;
    padding: 18px;

    background: #ffffff;

    border: 1px solid rgba(17,34,53,0.08);

    box-shadow:
        0 20px 50px rgba(17,34,53,0.08);

    transition: all 0.35s ease;
}


.certificate-box:hover {
    transform: translateY(-8px);

    border-color: rgba(253,105,27,0.35);

    box-shadow:
        0 28px 65px rgba(17,34,53,0.14);
}


/* ORANGE TOP LINE */

.certificate-box::before {
    content: "";

    position: absolute;

    top: 0;
    left: 18px;

    width: 65px;
    height: 4px;

    background: #fd691b;
}


/* NUMBER */

.certificate-number {
    position: absolute;

    top: 18px;
    right: 18px;

    width: 35px;
    height: 35px;

    display: flex;
    align-items: center;
    justify-content: center;

    background: #112235;
    color: #fd691b;

    font-size: 10px;
    font-weight: 900;

    border-radius: 50%;
}


/* =====================================================
   IMAGE
===================================================== */

.certificate-image {
    width: 100%;
    height: 500px;

    display: flex;
    align-items: center;
    justify-content: center;

    margin-top: 8px;

    padding: 25px;

    background: #f8f8f8;

    border: 1px solid rgba(17,34,53,0.06);

    overflow: hidden;
}


.certificate-image img {
    display: block;

    width: 100%;
    height: 100%;

    object-fit: contain;

    transition: transform 0.4s ease;
}


.certificate-box:hover .certificate-image img {
    transform: scale(1.025);
}


/* =====================================================
   CAPTION
===================================================== */

.certificate-caption {
    padding: 22px 8px 8px;
}


.certificate-caption span {
    color: #fd691b;

    font-size: 9px;
    font-weight: 900;

    letter-spacing: 1.8px;
}


.certificate-caption h3 {
    margin: 7px 0 0;

    color: #112235;

    font-size: 18px;
    font-weight: 800;
}


/* =====================================================
   BOTTOM
===================================================== */

.certificates-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;

    margin-top: 25px;
    padding: 18px 22px;

    background: #112235;
}


.certificates-bottom span {
    color: #ffffff;

    font-size: 9px;
    font-weight: 800;

    letter-spacing: 1.5px;
}


.certificates-bottom strong {
    color: #fd691b;

    font-size: 9px;
    letter-spacing: 1px;
}


/* =====================================================
   TABLET
===================================================== */

@media (max-width: 800px) {

    .certificates-section {
        padding: 75px 0;
    }

    .certificates-grid {
        gap: 18px;
    }

    .certificate-image {
        height: 420px;
        padding: 18px;
    }

}


/* =====================================================
   MOBILE
===================================================== */

@media (max-width: 600px) {

    .certificates-section {
        padding: 60px 0;
    }


    .certificates-heading {
        margin-bottom: 35px;
    }


    .certificates-heading h2 {
        font-size: 34px;
        letter-spacing: -1px;
    }


    .certificates-heading p {
        font-size: 12px;
        line-height: 1.7;
    }


    /* STACK CERTIFICATES */

    .certificates-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }


    .certificate-box {
        padding: 12px;
    }


    .certificate-box::before {
        left: 12px;
    }


    .certificate-number {
        top: 12px;
        right: 12px;

        width: 30px;
        height: 30px;

        font-size: 9px;
    }


    .certificate-image {
        height: 420px;
        padding: 15px;
    }


    .certificate-caption {
        padding: 18px 5px 6px;
    }


    .certificate-caption h3 {
        font-size: 15px;
    }


    .certificates-bottom {
        flex-direction: column;
        gap: 8px;

        text-align: center;
        padding: 16px 10px;
    }

}


/* =====================================================
   SMALL MOBILE
===================================================== */

@media (max-width: 380px) {

    .certificates-heading h2 {
        font-size: 30px;
    }


    .certificate-image {
        height: 350px;
    }

}


/* =========================================
   WHATSAPP FLOATING BUTTON
========================================= */

.whatsapp-float {
    position: fixed;

    right: 22px;
    bottom: 22px;

    width: 58px;
    height: 58px;

    display: flex;
    align-items: center;
    justify-content: center;

    background: #25D366;
    color: #ffffff;

    border-radius: 50%;

    font-size: 30px;

    text-decoration: none;

    z-index: 99999;

    box-shadow:
        0 8px 25px rgba(0, 0, 0, 0.20);

    transition:
        transform 0.3s ease,
        box-shadow 0.3s ease;
}

.whatsapp-float:hover {
    color: #ffffff;

    transform: translateY(-5px) scale(1.05);

    box-shadow:
        0 12px 30px rgba(0, 0, 0, 0.25);
}


/* Pulse Animation */

.whatsapp-float::before {
    content: "";

    position: absolute;

    inset: -5px;

    border: 2px solid #25D366;

    border-radius: 50%;

    opacity: 0;

    animation: whatsappPulse 2s infinite;
}

@keyframes whatsappPulse {

    0% {
        transform: scale(0.9);
        opacity: 0.7;
    }

    70% {
        transform: scale(1.25);
        opacity: 0;
    }

    100% {
        transform: scale(1.25);
        opacity: 0;
    }

}


/* Mobile */

@media (max-width: 600px) {

    .whatsapp-float {
        width: 52px;
        height: 52px;

        right: 15px;
        bottom: 15px;

        font-size: 27px;
    }

}

/* =========================================
   PREMIUM PAGE LOADER
========================================= */

#page-loader {
    position: fixed;
    inset: 0;

    width: 100%;
    height: 100vh;

    background: #f7f8fa;

    display: flex;
    flex-direction: column;

    align-items: center;
    justify-content: center;

    z-index: 999999;

    opacity: 1;
    visibility: visible;

    transition:
        opacity 0.6s ease,
        visibility 0.6s ease;
}


/* Logo */

.loader-logo {
    width: 190px;

    display: flex;
    align-items: center;
    justify-content: center;

    animation: loaderLogo 1.5s ease-in-out infinite;
}

.loader-logo img {
    width: 100%;
    height: auto;

    display: block;

    object-fit: contain;
}


/* Loading Line */

.loader-line {
    width: 120px;
    height: 3px;

    margin-top: 25px;

    background: #e3e6e9;

    border-radius: 10px;

    overflow: hidden;

    position: relative;
}

.loader-line::before {
    content: "";

    position: absolute;

    top: 0;
    left: -100%;

    width: 70%;
    height: 100%;

    background: #fd691b;

    border-radius: 10px;

    animation: loaderLine 1.2s ease-in-out infinite;
}


/* Logo Animation */

@keyframes loaderLogo {

    0% {
        opacity: 0.55;
        transform: scale(0.96);
    }

    50% {
        opacity: 1;
        transform: scale(1);
    }

    100% {
        opacity: 0.55;
        transform: scale(0.96);
    }

}


/* Line Animation */

@keyframes loaderLine {

    0% {
        left: -100%;
    }

    100% {
        left: 130%;
    }

}


/* Loader Hidden */

#page-loader.loader-hidden {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
}


/* Mobile */

@media (max-width: 600px) {

    .loader-logo {
        width: 145px;
    }

    .loader-line {
        width: 95px;
        margin-top: 20px;
    }

}


/* =========================
   INQUIRY SECTION
========================= */

.inquiry-section {
    width: 100%;
    padding: 90px 5%;
    background: #f4f6f8;
    position: relative;
    overflow: hidden;
}

.inquiry-section::before {
    content: "";
    position: absolute;
    width: 450px;
    height: 450px;
    background: rgba(255, 91, 24, 0.05);
    border-radius: 50%;
    top: -220px;
    left: -180px;
}

.inquiry-section::after {
    content: "";
    position: absolute;
    width: 400px;
    height: 400px;
    background: rgba(13, 31, 52, 0.05);
    border-radius: 50%;
    bottom: -220px;
    right: -150px;
}

.inquiry-container {
    width: 100%;
    max-width: 1400px;
    margin: auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    position: relative;
    z-index: 2;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 25px 70px rgba(13, 31, 52, 0.14);
}


/* =========================
   INQUIRY BOX
========================= */

.inquiry-box {
    padding: 65px 70px;
    min-height: 500px;
    position: relative;
    transition: 0.4s ease;
}

.export-box {
    background: #0d1f34;
    color: #ffffff;
}

.domestic-box {
    background: #ffffff;
    color: #0d1f34;
}

.inquiry-box:hover {
    transform: translateY(-5px);
}


/* =========================
   ICON
========================= */

.inquiry-icon {
    width: 62px;
    height: 62px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    margin-bottom: 25px;
}

.export-box .inquiry-icon {
    background: #ff5b18;
    color: #ffffff;
    box-shadow: 0 10px 30px rgba(255, 91, 24, 0.25);
}

.domestic-box .inquiry-icon {
    background: #fff1ea;
    color: #ff5b18;
}


/* =========================
   LABEL
========================= */

.inquiry-label {
    display: block;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 2px;
    margin-bottom: 12px;
}

.export-box .inquiry-label {
    color: #ff6b2b;
}

.domestic-box .inquiry-label {
    color: #ff5b18;
}


/* =========================
   HEADING
========================= */

.inquiry-box h2 {
    font-size: 38px;
    line-height: 1.2;
    margin: 0 0 18px;
    font-weight: 700;
}

.inquiry-box p {
    font-size: 17px;
    line-height: 1.8;
    max-width: 570px;
    margin-bottom: 30px;
}

.export-box p {
    color: #d8e0e8;
}

.domestic-box p {
    color: #5d6875;
}


/* =========================
   PERSON
========================= */

.inquiry-person {
    margin-bottom: 25px;
    padding-left: 18px;
    border-left: 3px solid #ff5b18;
}

.inquiry-person strong {
    display: block;
    font-size: 20px;
    margin-bottom: 4px;
}

.inquiry-person span {
    font-size: 14px;
    opacity: 0.7;
}


/* =========================
   PHONE / EMAIL
========================= */

.inquiry-contact {
    display: flex;
    align-items: center;
    gap: 13px;
    width: fit-content;
    text-decoration: none;
    font-size: 17px;
    font-weight: 600;
    margin: 13px 0;
    transition: 0.3s ease;
}

.export-box .inquiry-contact {
    color: #ffffff;
}

.domestic-box .inquiry-contact {
    color: #0d1f34;
}

.inquiry-contact i {
    width: 34px;
    height: 34px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    font-size: 14px;
}

.export-box .inquiry-contact i {
    background: rgba(255, 91, 24, 0.18);
    color: #ff6b2b;
}

.domestic-box .inquiry-contact i {
    background: #fff0e8;
    color: #ff5b18;
}

.inquiry-contact:hover {
    color: #ff5b18 !important;
    transform: translateX(5px);
}


/* =========================
   BUTTON
========================= */

.inquiry-btn {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    margin-top: 25px;
    padding: 15px 25px;
    background: #ff5b18;
    color: #ffffff;
    text-decoration: none;
    border-radius: 7px;
    font-size: 15px;
    font-weight: 700;
    transition: 0.3s ease;
    box-shadow: 0 10px 25px rgba(255, 91, 24, 0.22);
}

.inquiry-btn i {
    transition: 0.3s ease;
}

.inquiry-btn:hover {
    background: #e94d0d;
    transform: translateY(-3px);
    box-shadow: 0 15px 30px rgba(255, 91, 24, 0.3);
}

.inquiry-btn:hover i {
    transform: translateX(5px);
}


/* =========================
   RESPONSIVE
========================= */

@media (max-width: 900px) {

    .inquiry-section {
        padding: 60px 20px;
    }

    .inquiry-container {
        grid-template-columns: 1fr;
    }

    .inquiry-box {
        padding: 50px 35px;
        min-height: auto;
    }

    .inquiry-box h2 {
        font-size: 32px;
    }

}

@media (max-width: 500px) {

    .inquiry-section {
        padding: 40px 15px;
    }

    .inquiry-box {
        padding: 40px 25px;
    }

    .inquiry-box h2 {
        font-size: 28px;
    }

    .inquiry-box p {
        font-size: 15px;
        line-height: 1.7;
    }

    .inquiry-contact {
        font-size: 15px;
    }

    .inquiry-btn {
        width: 100%;
        justify-content: center;
    }

}

/* =========================================
   PREMIUM FOOTER
   SMSC
   NAVY #112235
   ORANGE #fd691b
========================================= */

.site-footer {
    position: relative;

    background: #112235;

    color: #ffffff;

    padding: 75px 0 0;

    overflow: hidden;
}


/* =========================================
   SUBTLE FOOTER DESIGN
========================================= */

.site-footer::before {
    content: "";

    position: absolute;

    width: 420px;
    height: 420px;

    right: -220px;
    top: -220px;

    border-radius: 50%;

    border: 1px solid
        rgba(253,105,27,0.12);

    box-shadow:
        0 0 0 35px rgba(253,105,27,0.025),
        0 0 0 70px rgba(253,105,27,0.018);

    pointer-events: none;
}


.site-footer::after {
    content: "";

    position: absolute;

    left: 0;
    top: 0;

    width: 100%;
    height: 3px;

    background:
        linear-gradient(
            90deg,
            transparent,
            #fd691b,
            transparent
        );
}


/* =========================================
   CONTAINER
========================================= */

.site-footer .container {
    position: relative;

    z-index: 2;

    width: min(1200px, 92%);

    margin: auto;
}


/* =========================================
   FOOTER GRID
========================================= */

.footer-grid {
    display: grid;

    grid-template-columns:
        1.5fr 0.8fr 1fr 1.2fr;

    gap: 55px;

    padding-bottom: 60px;
}


/* =========================================
   LOGO
========================================= */

.footer-logo {
    display: inline-block;

    margin-bottom: 22px;
}


.footer-logo img {
    width: 190px;

    max-width: 100%;

    height: auto;

    display: block;
}


/* =========================================
   ABOUT TEXT
========================================= */

.footer-about p {
    max-width: 330px;

    margin: 0 0 22px;

    color: #b8c2cc;

    font-size: 13px;

    line-height: 1.8;
}


/* =========================================
   TAGLINE
========================================= */

.footer-tagline {
    color: #ffffff;

    font-size: 9px;

    font-weight: 800;

    letter-spacing: 1.5px;
}


.footer-tagline span {
    color: #fd691b;

    padding: 0 4px;
}


/* =========================================
   COLUMN HEADINGS
========================================= */

.footer-column h3 {
    position: relative;

    margin: 5px 0 25px;

    padding-bottom: 12px;

    color: #ffffff;

    font-size: 17px;

    font-weight: 800;
}


.footer-column h3::after {
    content: "";

    position: absolute;

    left: 0;
    bottom: 0;

    width: 35px;

    height: 2px;

    background: #fd691b;
}


/* =========================================
   LINKS
========================================= */

.footer-links {
    list-style: none;

    margin: 0;
    padding: 0;
}


.footer-links li {
    margin-bottom: 12px;
}


.footer-links a {
    position: relative;

    display: inline-block;

    color: #b8c2cc;

    text-decoration: none;

    font-size: 13px;

    transition:
        color 0.3s ease,
        padding-left 0.3s ease;
}


.footer-links a::before {
    content: "→";

    position: absolute;

    left: -18px;

    color: #fd691b;

    opacity: 0;

    transition:
        opacity 0.3s ease,
        left 0.3s ease;
}


.footer-links a:hover {
    color: #fd691b;

    padding-left: 18px;
}


.footer-links a:hover::before {
    left: 0;

    opacity: 1;
}


/* =========================================
   CONTACT
========================================= */

.contact-item {
    display: flex;

    align-items: flex-start;

    gap: 13px;

    margin-bottom: 18px;
}


.contact-icon {
    width: 35px;
    height: 35px;

    flex: 0 0 35px;

    display: flex;

    align-items: center;
    justify-content: center;

    color: #fd691b;

    background:
        rgba(253,105,27,0.10);

    border: 1px solid
        rgba(253,105,27,0.20);

    border-radius: 50%;

    font-size: 13px;
}


.contact-item p {
    margin: 5px 0 0;

    color: #b8c2cc;

    font-size: 12px;

    line-height: 1.6;
}


.contact-item a {
    margin-top: 7px;

    color: #b8c2cc;

    font-size: 12px;

    text-decoration: none;

    transition: color 0.3s ease;
}


.contact-item a:hover {
    color: #fd691b;
}


/* =========================================
   FOOTER BOTTOM
========================================= */

.footer-bottom {
    display: flex;

    align-items: center;

    justify-content: space-between;

    gap: 20px;

    padding: 22px 0;

    border-top: 1px solid
        rgba(255,255,255,0.10);
}


.footer-bottom p {
    margin: 0;

    color: #8794a1;

    font-size: 11px;
}


.footer-bottom-links {
    display: flex;

    align-items: center;

    gap: 10px;
}


.footer-bottom-links a {
    color: #8794a1;

    font-size: 11px;

    text-decoration: none;

    transition: color 0.3s ease;
}


.footer-bottom-links a:hover {
    color: #fd691b;
}


.footer-bottom-links span {
    color: #455463;

    font-size: 10px;
}


/* =========================================
   TABLET
========================================= */

@media (max-width: 950px) {

    .footer-grid {
        grid-template-columns:
            repeat(2, 1fr);

        gap: 45px 35px;
    }

}


/* =========================================
   MOBILE
========================================= */

@media (max-width: 600px) {

    .site-footer {
        padding-top: 55px;
    }


    .footer-grid {
        grid-template-columns: 1fr 1fr;

        gap: 38px 22px;

        padding-bottom: 40px;
    }


    /* LOGO COLUMN FULL WIDTH */

    .footer-about {
        grid-column: 1 / -1;
    }


    .footer-about p {
        max-width: 100%;

        font-size: 12px;

        line-height: 1.7;
    }


    .footer-logo img {
        width: 165px;
    }


    .footer-column h3 {
        margin-bottom: 20px;

        font-size: 15px;
    }


    .footer-links li {
        margin-bottom: 10px;
    }


    .footer-links a {
        font-size: 11px;
    }


    .contact-item {
        gap: 9px;

        margin-bottom: 14px;
    }


    .contact-icon {
        width: 30px;
        height: 30px;

        flex-basis: 30px;

        font-size: 11px;
    }


    .contact-item p,
    .contact-item a {
        font-size: 10px;
    }


    /* BOTTOM */

    .footer-bottom {
        flex-direction: column;

        align-items: center;

        text-align: center;

        padding: 20px 0;
    }


    .footer-bottom p {
        font-size: 9px;

        line-height: 1.6;
    }


    .footer-bottom-links a {
        font-size: 9px;
    }

}


/* =========================================
   SMALL MOBILE
========================================= */

@media (max-width: 380px) {

    .footer-grid {
        gap: 32px 15px;
    }

    .footer-column h3 {
        font-size: 14px;
    }

    .footer-links a {
        font-size: 10px;
    }

    .footer-tagline {
        font-size: 8px;
    }

}