/* =========================================================
   ROOT
========================================================= */

:root {

    --primary: #d71920;
    --primary-dark: #a90f15;

    --dark: #101214;
    --dark-2: #17191c;
    --dark-3: #202328;

    --steel: #697078;

    --light: #f5f6f7;
    --white: #ffffff;

    --border: #e5e7e9;

    --font-heading: "Barlow Condensed", sans-serif;
    --font-body: "Inter", sans-serif;

}


/* =========================================================
   GLOBAL
========================================================= */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    overflow-x: hidden;
}

body {

    font-family: var(--font-body);

    color: #24272b;

    background: #fff;

    line-height: 1.7;

    overflow-x: hidden;

}

img {
    max-width: 100%;
    display: block;
}

a {
    text-decoration: none;
}

p {
    color: #656b71;
}

.container {
    max-width: 1240px;
}


/* =========================================================
   TOPBAR
========================================================= */

.topbar {

    background: #0b0d0f;

    color: rgba(255,255,255,.7);

    font-size: 12px;

    padding: 9px 0;

    border-bottom: 1px solid rgba(255,255,255,.08);

}

.topbar-left,
.topbar-right {

    display: flex;

    align-items: center;

    gap: 25px;

}

.topbar-right {
    justify-content: flex-end;
}

.topbar i {

    color: var(--primary);

    margin-right: 5px;

}

.topbar a {
    color: rgba(255,255,255,.7);
}

.topbar a:hover {
    color: #fff;
}


/* =========================================================
   NAVBAR
========================================================= */
.logo-wrap img{
    height: 80px;
}
.main-navbar {

    background: rgba(255,255,255,.98);

    border-bottom: 1px solid #e8e8e8;

    padding: 0;

    min-height: 82px;

}

.navbar-brand {

    display: flex;

    align-items: center;

    gap: 12px;

    color: var(--dark);

}

.logo-mark {

    width: 48px;

    height: 48px;

    display: inline-flex;

    align-items: center;

    justify-content: center;

    background: var(--primary);

    color: #fff;

    font-family: var(--font-heading);

    font-size: 22px;

    font-weight: 800;

    transform: skew(-8deg);

}

.logo-text {

    font-family: var(--font-heading);

    font-size: 24px;

    line-height: 1;

    font-weight: 600;

}

.logo-text strong {
    font-weight: 800;
}

.logo-text small {

    display: block;

    margin-top: 5px;

    font-family: var(--font-body);

    font-size: 7px;

    letter-spacing: 2px;

    color: #777;

}

.navbar-nav {
    gap: 3px;
}

.nav-link {

    color: #25282b !important;

    font-size: 16px;

    font-weight: 600;

    padding: 30px 13px !important;

    position: relative;

}


.nav-link:hover::after,
.nav-link.active::after {

    transform: scaleX(1);

}

.navbar-toggler {

    border: 0;

    font-size: 28px;

}

.navbar-toggler:focus {
    box-shadow: none;
}

.dropdown-menu {

    border: 0;

    border-radius: 0;

    box-shadow: 0 15px 40px rgba(0,0,0,.12);

    padding: 10px;

}

.dropdown-item {

    padding: 9px 15px;

    font-size: 13px;

}

.dropdown-item:hover {

    background: var(--primary);

    color: #fff;

}

/* =====================================================
   DESKTOP PRODUCT DROPDOWN
===================================================== */

.product-dropdown {

    min-width: 220px;

    padding: 10px;

    margin-top: 15px;

    border: 0;

    border-top: 3px solid var(--primary);

    border-radius: 0;

    background: var(--white);

    box-shadow: 0 15px 40px rgba(0,0,0,.18);
}


.product-dropdown .dropdown-item {

    padding: 12px 14px;

    color: #343434;

    font-size: 13px;

    font-weight: 600;

    transition: .25s ease;

    display: flex;

    align-items: center;

    gap: 10px;
}


.product-dropdown .dropdown-item i {

    color: var(--primary);

    font-size: 13px;

    transition: .25s ease;
}


.product-dropdown .dropdown-item:hover {

    background: var(--primary);

    color: #fff;
}


.product-dropdown .dropdown-item:hover i {

    color: #fff;

    transform: translateX(3px);
}


/* =====================================================
   MOBILE HAMBURGER
===================================================== */

.mobile-menu-btn {

    width: 48px;

    height: 48px;

    border: 0;

    background: #111;

    display: flex;

    flex-direction: column;

    justify-content: center;

    align-items: center;

    gap: 5px;

    padding: 0;

    cursor: pointer;
}


.mobile-menu-btn span {

    width: 22px;

    height: 2px;

    background: #fff;

    display: block;

    transition: .3s ease;
}


.mobile-menu-btn:hover {

    background: var(--primary);
}


/* =====================================================
   MOBILE OFFCANVAS
===================================================== */

.mobile-offcanvas {

    width: 370px !important;

    max-width: 88vw;

    background: var(--white);

    color: var(--dark);

    border: 0;
}


.mobile-menu-header {

    min-height: 88px;

    padding: 18px 22px;

    display: flex;

    align-items: center;

    justify-content: space-between;

    border-bottom: 1px solid rgba(255,255,255,.10);
}


.mobile-logo img {

    max-width: 145px;

    max-height: 48px;

    object-fit: contain;
}


.mobile-close {

    width: 42px;

    height: 42px;

    display: flex;

    align-items: center;

    justify-content: center;

    border: 1px solid rgb(215 25 32);

    background: transparent;

    color: #d71920;

    font-size: 16px;

    transition: .25s ease;
}


.mobile-close:hover {

    background: var(--primary);

    border-color: var(--primary);
}


/* =====================================================
   MOBILE MENU
===================================================== */

.mobile-menu-inner {

    padding: 15px 20px 30px;
}


.mobile-menu-link {

    width: 100%;

    min-height: 58px;

    padding: 0 12px;

    display: flex;

    align-items: center;

    justify-content: space-between;

    text-decoration: none;

    color: #2b2b2b;

    background: transparent;

    border: 0;

    border-bottom: 1px solid rgb(0 0 0 / 10%);

    font-size: 14px;

    font-weight: 600;

    letter-spacing: .2px;

    transition: .25s ease;
}


.mobile-menu-link span {

    display: flex;

    align-items: center;

    gap: 13px;
}


.mobile-menu-link span i {

    width: 24px;

    color: var(--primary);

    font-size: 17px;
}


.mobile-menu-link > i {

    color: #777;

    font-size: 13px;

    transition: .25s ease;
}


.mobile-menu-link:hover {

    color: var(--primary);

    padding-left: 18px;
}


.mobile-menu-link:hover > i {

    color: var(--primary);

    transform: translateX(3px);
}


/* =====================================================
   MOBILE PRODUCT TOGGLE
===================================================== */

.mobile-product-toggle {

    cursor: pointer;

    text-align: left;
}


.mobile-product-toggle[aria-expanded="true"] {

    color: var(--primary);

    border-bottom-color: var(--primary);
}


.mobile-product-toggle[aria-expanded="true"]
.product-chevron {

    color: var(--primary);

    transform: rotate(180deg);
}


/* =====================================================
   MOBILE PRODUCT SUBMENU
===================================================== */

.mobile-submenu {

    background: #f1f1f1;

    border-left: 2px solid var(--primary);

    margin: 0 0 5px 0px;
}


.mobile-submenu a {

    min-height: 53px;

    padding: 0 14px;

    display: flex;

    align-items: center;

    gap: 11px;

    text-decoration: none;

    color: #000;

    font-size: 13px;

    border-bottom: 1px solid rgba(255,255,255,.06);

    transition: .25s ease;
}


.mobile-submenu a:last-child {

    border-bottom: 0;
}


.mobile-submenu a:hover {

    color: var(--primary);

    background: rgba(255,255,255,.04);

    padding-left: 19px;
}


.mobile-submenu a > i {

    margin-left: auto;

    color: #666;

    font-size: 11px;
}


.mobile-submenu a:hover > i {

    color: var(--primary);
}


.product-line {

    width: 7px;

    height: 7px;

    background: var(--primary);

    display: block;

    border-radius: 50%;
}


/* =====================================================
   MOBILE CTA
===================================================== */

.mobile-menu-cta {

    margin-top: 28px;
}


.mobile-menu-cta a {

    min-height: 55px;

    padding: 0 20px;

    background: var(--primary);

    color: #fff;

    text-decoration: none;

    display: flex;

    align-items: center;

    justify-content: space-between;

    font-size: 12px;

    font-weight: 800;

    text-transform: uppercase;

    letter-spacing: 1px;

    transition: .25s ease;
}


.mobile-menu-cta a:hover {

    background: #fff;

    color: #111;
}


/* =====================================================
   MOBILE FOOTER
===================================================== */

.mobile-menu-footer {

    padding: 18px 22px;

    border-top: 1px solid rgba(255,255,255,.10);

/*    background: #0b0d0f;*/

    color: #000;

    font-size: 11px;

    line-height: 2;
}


.mobile-menu-footer div {

    display: flex;

    align-items: center;

    gap: 8px;
}


.mobile-menu-footer i {

    color: var(--primary);

    font-size: 13px;
}


/* =====================================================
   MOBILE BACKDROP
===================================================== */

.offcanvas-backdrop.show {

    opacity: .72;

    background: #000;
}


/* =====================================================
   DESKTOP DROPDOWN ANIMATION
===================================================== */

@media (min-width: 992px) {

    .product-dropdown {

        display: block;

        opacity: 0;

        visibility: hidden;

        transform: translateY(10px);

        transition:
            opacity .2s ease,
            transform .2s ease,
            visibility .2s ease;
    }


    .nav-item.dropdown:hover .product-dropdown {

        opacity: 1;

        visibility: visible;

        transform: translateY(0);
    }


    .nav-item.dropdown:hover
    .dropdown-toggle::after {

        transform: rotate(180deg);
    }


    .dropdown-toggle::after {

        transition: .2s ease;
    }

}
/* =========================================================
   BUTTONS
========================================================= */

.btn {

    border-radius: 0;

    font-size: 15px;

    font-weight: 700;
    border-radius: 8px;
    padding: 13px 25px;

    letter-spacing: .2px;

}

.btn-primary-custom {

    background: var(--primary);

    border: 1px solid var(--primary);

    color: #fff;border-radius: 8px;

}

.btn-primary-custom:hover {

    background: var(--primary-dark);

    border-color: var(--primary-dark);

    color: #fff;

}

.btn-primary-custom i {
    margin-left: 8px;
}

.btn-dark-custom {

    background: var(--dark);

    color: #fff;

    border: 1px solid var(--dark);

}

.btn-dark-custom:hover {

    background: var(--primary);

    border-color: var(--primary);

    color: #fff;

}

.btn-outline-light:hover {

    color: #111;

}

.btn-white-custom {

    background: #fff;

    color: #111;

    border: 1px solid #fff;

    padding: 16px 30px;

}

.btn-white-custom:hover {

    background: transparent;

    color: #fff;

}

.btn-white-custom i {
    margin-left: 8px;
}


/* =========================================================
   HERO
========================================================= */

.hero-section {

    position: relative;

    min-height: 680px;

    background:

        linear-gradient(
            90deg,
            rgba(7,9,11,.97) 0%,
            rgba(7,9,11,.83) 42%,
            rgba(7,9,11,.25) 100%
        ),

        url("banner.jpg");

    background-size: cover;

    background-position: center;

    color: #fff;

    overflow: hidden;

}

.min-vh-hero {
    min-height: 680px;
}

.hero-content {
    padding-top: 40px;
}

.section-tag {

    display: inline-flex;

    align-items: center;

    gap: 10px;

    color: var(--primary);

    font-size: 11px;

    font-weight: 800;

    letter-spacing: 2px;

    margin-bottom: 17px;

}

.section-tag span {

    width: 32px;

    height: 2px;

    display: inline-block;

    background: var(--primary);

}

.light-tag {
    color: #fff;
}

.light-tag span {
    background: var(--primary);
}

.hero-section .hero-content h1 {

    font-family: var(--font-heading);

    font-size: clamp(55px, 7vw, 92px);

    font-weight: 700;

    line-height: .92;

    letter-spacing: -1px;

    max-width: 750px;

    margin-bottom: 30px;

}

.hero-section .hero-content h1 span {

    display: block;

    color: #fff;

    -webkit-text-stroke: 1px rgba(255,255,255,.5);

    color: transparent;

}

.hero-section .hero-description {

    color: rgba(255,255,255,.72);

    max-width: 600px;

    font-size: 16px;

    line-height: 1.8;

    margin-bottom: 30px;

}

.hero-section .hero-buttons {

    display: flex;

    flex-wrap: wrap;

    gap: 12px;

}

.hero-section .hero-features {

    display: flex;

    flex-wrap: wrap;

    gap: 30px;

    margin-top: 50px;

}

.hero-section .hero-features div {

    display: flex;

    align-items: center;

    gap: 9px;

    color: rgba(255,255,255,.8);

    font-size: 13px;

    font-weight: 600;

}

.hero-section .hero-features i {

    color: var(--primary);

    font-size: 17px;

}

.hero-section .hero-scroll {

    position: absolute;

    right: 35px;

    bottom: 35px;

    display: flex;

    align-items: center;

    gap: 15px;

    writing-mode: vertical-rl;

    font-size: 9px;

    letter-spacing: 2px;

    color: rgba(255,255,255,.6);

}

.hero-section .hero-scroll i {
    color: var(--primary);
}


/* =========================================================
   STATS
========================================================= */

.stats-section {

    position: relative;

    margin-top: -1px;

    background: var(--primary);

}

.stats-section .stats-wrapper {

    background: var(--primary);

}

.stats-section .stat-box {
    background: transparent;
    padding: 28px 20px;

    text-align: center;

    border-right: 1px solid rgba(255,255,255,.18);

}

.stats-section .stat-box:last-child {
    border: 0;
}

.stats-section .stat-number {

    display: block;

    color: #fff;

    font-family: var(--font-heading);

    font-size: 42px;

    font-weight: 700;

    line-height: 1;

}

.stats-section stat-number span {
    font-size: 25px;
}

.stats-section .stat-label {

    display: block;

    color: #fff;

    font-size: 10px;

    letter-spacing: 1.5px;

    text-transform: uppercase;

    margin-top: 8px;

}
.stats-section .stat-number span{
    color: var(--white);
}

/* =========================================================
   SECTIONS
========================================================= */

.section-padding {
    padding: 110px 0;
}

.section-title {

    font-family: var(--font-heading);

    font-size: clamp(45px, 5vw, 66px);

    font-weight: 700;

    line-height: .98;

    color: #151719;

    margin-bottom: 25px;

}

.section-title span {

/*    display: block;*/

    color: var(--primary);

}

.section-description {

    max-width: 540px;

    color: #70767b;

    font-size: 14px;

    line-height: 1.8;

}

.lead-text {

    font-size: 17px;

    color: #454a4f;

    line-height: 1.8;

}


/* =========================================================
   ABOUT
========================================================= */

.about-section {
    background: #fff;
}

.about-image-wrapper {

    position: relative;

    padding-right: 35px;

    padding-bottom: 35px;

}

.about-image {

    position: relative;

    z-index: 2;

    overflow: hidden;

}

.about-image img {

    width: 100%;

/*    height: 570px;*/

    object-fit: cover;

}

.image-pattern {

    position: absolute;

    right: 0;

    bottom: 0;

    width: 65%;

    height: 65%;

    background-image:

        linear-gradient(#d71920 1px, transparent 1px),

        linear-gradient(90deg,#d71920 1px,transparent 1px);

    background-size: 14px 14px;

    opacity: .22;

}

.experience-card {

    position: absolute;

    z-index: 3;

    left: -25px;

    bottom: 0;

    background: var(--primary);

    color: #fff;

    padding: 25px 28px;

    display: flex;

    align-items: center;

    gap: 18px;

    max-width: 235px;

}

.experience-card strong {

    font-family: var(--font-heading);

    font-size: 52px;

    line-height: 1;

}

.experience-card span {

    font-size: 11px;

    text-transform: uppercase;

    letter-spacing: 1px;

    line-height: 1.5;

}

.about-points {

    display: grid;

    grid-template-columns: 1fr 1fr;

    gap: 12px;

    margin-top: 25px;

}

.about-points div {

    font-size: 12px;

    font-weight: 600;

    color: #34383c;

}

.about-points i {

    color: var(--primary);

    margin-right: 7px;

}


/* =========================================================
   PRODUCTS
========================================================= */

.products-section {

    background: #f5f6f7;

}

.products-section .product-card {

    background: #fff;

    height: 100%;

    transition: .35s;

    border: 1px solid #e8eaec;

}

.products-section .product-card:hover {

    transform: translateY(-8px);

    box-shadow: 0 25px 50px rgba(0,0,0,.1);

}

.products-section .product-image {

    position: relative;

    overflow: hidden;

}

.products-section .product-image img {

    width: 100%;

    height: 300px;

    object-fit: cover;

    transition: .5s;

}

.products-section .product-card:hover .product-image img {

    transform: scale(1.06);

}

.products-section .product-number {

    position: absolute;

    right: 18px;

    top: 18px;

    width: 45px;

    height: 45px;

    display: flex;

    justify-content: center;

    align-items: center;

    background: var(--primary);

    color: #fff;

    font-family: var(--font-heading);

    font-weight: 700;

    font-size: 20px;

}

.products-section .product-content {

    padding: 30px;

}

.products-section .product-label {

    font-size: 9px;

    color: var(--primary);

    font-weight: 800;

    letter-spacing: 2px;

}

.products-section .product-content h3 {

    font-family: var(--font-heading);

    font-size: 34px;

    font-weight: 700;

    margin: 5px 0 10px;

}

.products-section .product-content p {

    font-size: 13px;

    line-height: 1.8;

/*    min-height: 90px;*/

}

.products-section .product-link {

    display: inline-flex;

    align-items: center;

    gap: 10px;

    color: #151719;

    font-size: 11px;

    font-weight: 800;

    text-transform: uppercase;

    letter-spacing: 1px;

    margin-top: 15px;

}

.products-section .product-link:hover {

    color: var(--primary);

}

.products-section .product-link i {

    color: var(--primary);

}


/* =========================================================
   WHY CHOOSE US
========================================================= */

.why-section {

    background:

        linear-gradient(
            rgba(13,15,17,.96),
            rgba(13,15,17,.96)
        ),

        url("https://images.unsplash.com/photo-1565043589221-1a6fd9ae45c7?auto=format&fit=crop&w=1800&q=80");

    background-size: cover;

    background-attachment: fixed;

}

.light-section-tag {
    color: #fff;
}

.why-section .why-card {

    height: 100%;

    background: #1b1e21;

    border: 1px solid rgba(255,255,255,.07);

    padding: 32px;

    transition: .3s;

}

.why-section .why-card:hover {

    background: var(--primary);

    transform: translateY(-5px);

}

.why-section .why-card:hover .why-icon {
    background: #fff;
    color: var(--primary);
}

.why-section .why-icon {

    width: 54px;

    height: 54px;

    display: flex;

    align-items: center;

    justify-content: center;

    background: rgba(215,25,32,.12);

    color: var(--primary);

    font-size: 23px;

    margin-bottom: 25px;

    transition: .3s;

}

.why-section .why-card h3 {

    font-family: var(--font-heading);

    color: #fff;

    font-size: 27px;

    margin-bottom: 10px;

}

.why-section .why-card p {

    color: rgba(255,255,255,.58);

    font-size: 12px;

    margin: 0;

}

.why-section .why-card:hover p {
    color: rgba(255,255,255,.82);
}


/* =========================================================
   INFRASTRUCTURE
========================================================= */

.infra-image {

    position: relative;

}

.infra-image img {

    width: 100%;

    height: 550px;

    object-fit: cover;

}

.infra-overlay-card {

    position: absolute;

    left: 25px;

    bottom: 25px;

    padding: 25px;

    background: rgba(15,17,19,.92);

    color: #fff;

    width: 220px;

}

.infra-overlay-card span {

    display: block;

    color: var(--primary);

    font-size: 9px;

    letter-spacing: 2px;

    font-weight: 800;

    margin-bottom: 10px;

}

.infra-overlay-card strong {

    font-family: var(--font-heading);

    font-size: 30px;

    line-height: .95;

}

.infra-list {

    margin-top: 25px;

    display: grid;

    grid-template-columns: 1fr 1fr;

    gap: 15px;

}

.infra-list div {

    font-size: 12px;

    font-weight: 600;

}

.infra-list i {

    color: var(--primary);

    margin-right: 8px;

}


/* =========================================================
   APPLICATIONS
========================================================= */

.applications-section {

    background: #f5f6f7;

}

.application-card {

    background: #fff;

    padding: 40px 20px;

    text-align: center;

    border: 1px solid #e6e7e8;

    transition: .3s;

}

.application-card:hover {

    background: var(--primary);

    color: #fff;

}

.application-card i {

    font-size: 38px;

    color: var(--primary);

    margin-bottom: 20px;

    display: block;

}

.application-card:hover i {
    color: #fff;
}

.application-card h3 {

    font-family: var(--font-heading);

    font-size: 25px;

    margin-bottom: 5px;

}

.application-card span {

    font-size: 10px;

    color: #888;

    text-transform: uppercase;

    letter-spacing: 1px;

}

.application-card:hover span {
    color: rgba(255,255,255,.7);
}


/* =========================================================
   GRADES
========================================================= */

.grades-section {

    background: #fff;

}

.grades-box {

    border: 1px solid #ddd;

}

.grade-item {

    padding: 22px;

    border-right: 1px solid #ddd;

    border-bottom: 1px solid #ddd;

    text-align: center;

    font-family: var(--font-heading);

    font-size: 22px;

    font-weight: 700;

    transition: .25s;

}

.grade-item:hover {

    background: var(--primary);

    color: #fff;

}


/* =========================================================
   QUALITY
========================================================= */

.quality-section {

    background: #f5f6f7;

}

.quality-points {

    display: flex;

/*    flex-direction: column;*/

    gap: 15px;

    margin-top: 30px;

}

.quality-points > div {

    display: flex;

    align-items: center;

    gap: 15px;

}

.quality-points i {

    width: 50px;

    height: 50px;

    background: #fff;

    color: var(--primary);

    display: flex;

    align-items: center;

    justify-content: center;

    font-size: 21px;

}

.quality-points strong,
.quality-points span {

    display: block;

}

.quality-points strong {

    font-size: 13px;

}

.quality-points span {

    font-size: 11px;

    color: #888;

}

.certificate-grid {

    display: grid;

    grid-template-columns: 1fr 1fr;

    gap: 15px;

}

.certificate-card {

    background: #fff;

    padding: 30px;

    min-height: 200px;

    border: 1px solid #e2e4e5;

}

.certificate-card.dark {

    background: var(--dark);

    color: #fff;

}

.certificate-card:last-child {

    grid-column: span 2;

}

.certificate-icon {

    color: var(--primary);

    font-size: 32px;

    margin-bottom: 18px;

}

.certificate-card span {

    display: block;

    font-size: 8px;

    letter-spacing: 2px;

    font-weight: 800;

    color: #999;

}

.certificate-card h3 {

    font-family: var(--font-heading);

    font-size: 28px;

    margin: 5px 0;

}

.certificate-card h3 strong {

    color: var(--primary);

}

.certificate-card small {

    font-size: 10px;

    color: #999;

}


/* =========================================================
   TESTIMONIALS
========================================================= */

.testimonial-section {

    background: #fff;

}

.testimonial-card {

    padding: 35px;

    background: #f5f6f7;

    height: 100%;

    position: relative;

    border-top: 3px solid var(--primary);

}

.quote-icon {

    color: var(--primary);

    font-size: 32px;

}

.testimonial-card p {

    font-size: 13px;

    line-height: 1.9;

    min-height: 105px;

}

.customer {

    display: flex;

    align-items: center;

    gap: 12px;

    margin-top: 25px;

}

.customer-avatar {

    width: 43px;

    height: 43px;

    display: flex;

    align-items: center;

    justify-content: center;

    background: var(--dark);

    color: #fff;

    font-family: var(--font-heading);

    font-weight: 700;

}

.customer strong,
.customer span {

    display: block;

}

.customer strong {

    font-size: 12px;

}

.customer span {

    font-size: 10px;

    color: #999;

}


/* =========================================================
   CTA
========================================================= */

.cta-section {

    background: linear-gradient(
            90deg,
            rgba(215,25,32,.98),
            rgba(170,15,21,.96)
        );

}

.cta-wrapper {

   padding: 35px 30px;
    /* background: linear-gradient(90deg, rgba(215, 25, 32, .98), rgba(170, 15, 21, .96)); */
    color: #fff;
    border-radius: 20px;

}

.cta-wrapper h2 {
    font-family: var(--font-heading);
    font-size: clamp(40px,5vw,65px);
    line-height: .95;
    margin-bottom: 20px;
}

.cta-wrapper h2 span {
    display: block;
    /* color: rgba(255, 255, 255, .65); */
    font-size: 42px;
}

.cta-wrapper p {
    color: rgba(255,255,255,.75);
    max-width: 620px;
    margin: 0;
}


/* =========================================================
   CONTACT
========================================================= */

.contact-section {
    background: #fff;
}

.contact-info {
    margin-top: 35px;
    display: flex;
    flex-direction: column;
    gap: 22px;
}

.contact-item {
    display: flex;
    gap: 15px;
    align-items: center;
}

.contact-icon {
    width: 48px;
    height: 48px;
    flex: 0 0 48px;
    background: #f5f6f7;
    color: var(--primary);
    display: flex;
    align-items: center;
    justify-content: center;

}

.contact-item small {
    display: block;
    font-size: 11px;
    letter-spacing: 2px;
    color:  var(--primary);
    font-weight: 800;
}

.contact-item strong {
    display: block;
    font-size: 13px;
    max-width: 350px;
}

.contact-item a {
    display: block;
    color: #222;
    font-size: 13px;
}

.contact-item a:hover {
    color: var(--primary);
}

.contact-form-wrapper {
    background: #f5f6f7;
    padding: 40px;
}

.form-header {
    margin-bottom: 25px;
}

.form-header span {
    font-size: 9px;
    color: var(--primary);
    font-weight: 800;
    letter-spacing: 2px;
}

.form-header h3 {

    font-family: var(--font-heading);

    font-size: 36px;

    margin-top: 5px;

}

.form-control,
.form-select {

    border-radius: 0;

    border: 1px solid #ddd;

    min-height: 50px;

    font-size: 12px;

    padding: 12px 15px;

}

.form-control:focus,
.form-select:focus {

    border-color: var(--primary);

    box-shadow: 0 0 0 .15rem rgba(215,25,32,.1);

}

textarea.form-control {
    min-height: 130px;
}

form label {

    display: block;

    font-size: 13px;

    font-weight: 700;

    margin-bottom: 6px;

}


/* =========================================================
   FOOTER
========================================================= */

.footer {

    background: #0b0d0f;

    color: #fff;

    padding: 75px 0 0;

}

.footer-logo {

    display: inline-flex;

    align-items: center;

    gap: 12px;

    color: #fff;

    font-family: var(--font-heading);

    font-size: 25px;

}

.footer-logo span:last-child {

    line-height: 1;

}

.footer-logo small {

    display: block;

    font-family: var(--font-body);

    font-size: 7px;

    letter-spacing: 2px;

    color: #777;

    margin-top: 5px;

}

.footer-about {

    color: #fff;

    font-size: 15px;

    line-height: 1.8;

    max-width: 350px;

    margin-top: 25px;

}

.social-links {

    display: flex;

    gap: 8px;

    margin-top: 20px;

}

.social-links a {

    width: 36px;

    height: 36px;

    display: flex;

    align-items: center;

    justify-content: center;

    border: 1px solid #7f7f7f;

    color: #aaa;

}

.social-links a:hover {

    background: var(--primary);

    border-color: var(--primary);

    color: #fff;

}

.footer h4 {
    position: relative;
    padding-left: 15px;
    font-family: var(--font-heading);

    font-size: 24px;
    letter-spacing: 1px;
    margin-bottom: 22px;

}
.footer h4 {
    border-left: 3px solid var(--primary);
}
.footer ul {

    list-style: none;

    padding: 0;

    margin: 0;

}

.footer li {

    margin-bottom: 9px;

}

.footer li a {

    color: #fff;

    font-size: 15px;

}

.footer li a i{padding-right: 5px;color: var(--primary);}
.footer li a:hover {
    color: var(--primary);
}

.footer-contact li {

    display: flex;

    gap: 10px;

    color: #fff;

    font-size: 15px;

}

.footer-contact i {

    color: var(--primary);

    font-size: 15px;

}

.footer-bottom {

    margin-top: 60px;

    padding: 20px 0;

    border-top: 1px solid #ffffff29;

    display: flex;

    justify-content: space-between;

    gap: 20px;

    color: #fff;

    font-size: 13px;

    text-transform: uppercase;

    letter-spacing: .5px;

}


/* =========================================================
   BACK TO TOP
========================================================= */

.back-to-top {

    position: fixed;

    right: 25px;

    bottom: 25px;

    width: 45px;

    height: 45px;

    background: var(--primary);

    color: #fff;

    display: flex;

    align-items: center;

    justify-content: center;

    z-index: 100;

    box-shadow: 0 5px 20px rgba(0,0,0,.2);

}

.back-to-top:hover {

    background: var(--dark);

    color: #fff;

}



/*----------about page csss-------------*/

.profile-banner {

    min-height: 440px;

    position: relative;

    display: flex;

    align-items: center;
    background-size:cover;
    background-position:center;
   /* background:
        linear-gradient(
            90deg,
            rgba(5,7,9,.94) 0%,
            rgba(5,7,9,.80) 48%,
            rgba(5,7,9,.35) 100%
        ),
        url('gallery/ak-steels1.jpg') center/cover no-repeat;*/
}

.profile-banner::before{
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    right: 0;
    left: 0;
    background:
        linear-gradient(
            90deg,
            rgba(5,7,9,.94) 0%,
            rgba(5,7,9,.80) 48%,
            rgba(5,7,9,.35) 100%
        );
        z-index: 1;
}
.profile-banner::after {

    content: "";

    position: absolute;

    left: 0;
    bottom: 0;

    width: 100%;
    height: 5px;

    background: var(--primary);
}


.profile-banner-content {

    max-width: 850px;

    position: relative;

    z-index: 2;
}


.section-label {
    display: flex;

    align-items: center;

    gap: 10px;

    color: var(--primary);

    font-size: 11px;

    font-weight: 800;

    letter-spacing: 2px;

    text-transform: uppercase;

    margin-bottom: 13px;
}


.section-label span {
    width: 32px;

    height: 2px;

    background: var(--primary);
}


.section-title {
    font-size: 45px;

    line-height: .95;

    text-transform: uppercase;

    font-weight: 700;

    margin-bottom: 22px;
}


.section-title span {
    color: var(--primary);
}

.profile-banner p {

    max-width: 680px;

    color: rgba(255,255,255,.80);

    font-size: 16px;

    line-height: 1.85;

    margin: 0;
}


/* =====================================================
   INTRODUCTION
====================================================== */

.profile-intro {

    padding: 110px 0;
}


.profile-image-wrap {

    position: relative;

    padding-right: 35px;

    padding-bottom: 35px;
}


.profile-image-wrap img {

    width: 100%;

    height: 520px;

    object-fit: cover;
}


.profile-image-accent {

    position: absolute;

    right: 0;

    bottom: 0;

    width: 170px;

    height: 170px;

    background: var(--primary);

    z-index: -1;
}


.profile-content {

    padding-left: 25px;
}


.profile-content h2 {

    font-family: var(--font-heading);

    font-size: 50px;

    line-height: .98;

    text-transform: uppercase;

    margin: 15px 0 25px;
}


.profile-content h2 span {

    color: var(--primary);
}


.profile-content p {

    color: #666;

    /*font-size: 14px;*/

    line-height: 1.9;

    margin-bottom: 18px;
}


.profile-check {

    display: flex;

    align-items: center;

    gap: 12px;

    margin-top: 25px;
}


.profile-check-icon {

    width: 38px;

    height: 38px;

    min-width: 38px;

    display: flex;

    align-items: center;

    justify-content: center;

    background: #111;

    color: var(--primary);
}


.profile-check strong {

    font-size: 13px;

    color: #222;
}


/* =====================================================
   COMPANY STATS
====================================================== */

.company-stats {

    padding: 0 0 100px;
}


.stat-box {

    background: #111;

    padding: 35px 30px;

    height: 100%;

    border-bottom: 3px solid var(--primary);
}


.stat-number {

    font-family: var(--font-heading);

    font-size: 58px;

    line-height: 1;

    color: #fff;

    font-weight: 700;
}


.stat-number span {

    color: var(--primary);

    font-size: 35px;
}


.stat-box p {

    color: #999;

    margin: 8px 0 0;

    font-size: 12px;

    text-transform: uppercase;

    letter-spacing: 1.5px;
}


/* =====================================================
   ABOUT SECTION
====================================================== */

.about-section {

    background: #f5f6f7;

    padding: 110px 0;
}


.about-card {

    background: #fff;

    height: 100%;

    padding: 42px 35px;

    border: 1px solid #ddd;

    transition: .3s ease;
}


.about-card:hover {

    transform: translateY(-7px);

    border-color: var(--primary);
}


.about-icon {

    width: 62px;

    height: 62px;

    background: #111;

    color: var(--primary);

    display: flex;

    align-items: center;

    justify-content: center;

    font-size: 25px;

    margin-bottom: 25px;
}


.about-card h3 {

    font-family: var(--font-heading);

    font-size: 30px;

    text-transform: uppercase;

    margin-bottom: 13px;
}


.about-card p {

    color: #666;

    font-size: 14px;

    line-height: 1.85;

    margin: 0;
}


/* =====================================================
   MANUFACTURING SECTION
====================================================== */

.manufacturing-section {

    padding: 110px 0;
}


.manufacturing-image {

    position: relative;
}


.manufacturing-image img {

    width: 100%;

    height: 570px;

    object-fit: cover;
}


.image-caption {

    position: absolute;

    left: 25px;

    bottom: 25px;

    background: #111;

    color: #fff;

    padding: 18px 22px;

    border-left: 3px solid var(--primary);
}


.image-caption strong {

    display: block;

    font-family: var(--font-heading);

    font-size: 25px;

    text-transform: uppercase;
}


.image-caption small {

    color: #aaa;

    font-size: 11px;

    letter-spacing: 1px;
}


.manufacturing-content {

    padding-left: 40px;
}


.manufacturing-content h2 {

    font-family: var(--font-heading);

/*    font-size: 58px;*/

    line-height: .98;

    text-transform: uppercase;

    margin: 15px 0 25px;
}


.manufacturing-content h2 span {

    color: var(--primary);
}


.manufacturing-content > p {

    color: #666;

    font-size: 14px;

    line-height: 1.9;
}


.manufacturing-content .process-list {

    margin-top: 30px;
}


.manufacturing-content .process-item {

    display: flex;

    gap: 15px;

    padding: 15px 0;

    border-bottom: 1px solid #ddd;
}


.manufacturing-content .process-number {

    font-family: var(--font-heading);

    color: var(--primary);

    font-size: 25px;

    font-weight: 700;

    min-width: 35px;
}


.manufacturing-content .process-item h4 {

    font-family: var(--font-heading);

    font-size: 20px;

    text-transform: uppercase;

    margin: 0 0 5px;
}


.manufacturing-content .process-item p {

    color: #777;

    font-size: 13px;

    line-height: 1.7;

    margin: 0;
}


/* =====================================================
   VALUES
====================================================== */

.values-section {

    background: #111;

    padding: 110px 0;

    color: #fff;
}


.values-section .section-title {

    color: #fff;
}


.values-section .section-title span {

    color: var(--primary);
}


.value-card {

    height: 100%;

    padding: 35px 30px;

    border: 1px solid #2b2d2f;

    background: #17191b;

    transition: .3s ease;
}


.value-card:hover {

    border-color: var(--primary);

    transform: translateY(-5px);
}


.value-icon {

    color: var(--primary);

    font-size: 28px;

    margin-bottom: 22px;
}


.value-card h3 {

    font-family: var(--font-heading);

    font-size: 28px;

    text-transform: uppercase;

    margin-bottom: 12px;
}


.value-card p {

    color: #999;

    font-size: 13px;

    line-height: 1.8;

    margin: 0;
}


/* =====================================================
   VISION / MISSION
====================================================== */

.mission-section {

    padding: 110px 0;

    background: #f5f6f7;
}


.mission-box {

    padding: 50px 45px;

    height: 100%;

    background: #fff;

    border: 1px solid #ddd;

    position: relative;

    overflow: hidden;
}


.mission-box::after {

    content: "";

    position: absolute;

    right: -50px;

    bottom: -50px;

    width: 150px;

    height: 150px;

    border-radius: 50%;

    background: rgba(0,0,0,.035);
}


.mission-icon {

    width: 65px;

    height: 65px;

    display: flex;

    align-items: center;

    justify-content: center;

    background: #111;

    color: var(--primary);

    font-size: 27px;

    margin-bottom: 25px;
}


.mission-box h3 {

    font-family: var(--font-heading);

    font-size: 38px;

    text-transform: uppercase;

    margin-bottom: 15px;
}


.mission-box p {

    color: #666;

    font-size: 14px;

    line-height: 1.9;

    margin: 0;

    max-width: 550px;
}
.profile-banner .profile-label{
    display: flex;
    align-items: center;
    gap: 12px;
    color: var(--primary);
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 3px;
    text-transform: uppercase;
    margin-bottom: 20px;
}
.profile-banner .profile-label span {
    width: 42px;
    height: 2px;
    background: var(--primary);
}
.profile-banner  h1 {
    color: #fff;
    font-size: 60px;
    line-height: .9;
    text-transform: uppercase;
    font-weight: 700;
    margin-bottom: 25px;
    font-family: "Barlow Condensed", sans-serif;
}
.profile-banner h1 span {
    color: var(--primary);
}
/* =====================================================
   RESPONSIVE
====================================================== */

@media(max-width:991px) {

    .profile-banner h1 {

        font-size: 48px;
    }


    .profile-content,
    .manufacturing-content {

        padding-left: 0;

        margin-top: 40px;
    }


    .quality-points {

        grid-template-columns: repeat(2,1fr);
    }

}


@media(max-width:767px) {

    .profile-banner {

        min-height: 440px;
    }


    .profile-banner h1 {

        font-size: 40px;
    }


    .profile-intro,
    .about-section,
    .manufacturing-section,
    .values-section,
    .mission-section,
    .quality-section {

        padding: 75px 0;
    }


    .profile-image-wrap img {

        height: 380px;
    }


    .profile-content h2,
    .manufacturing-content h2 {

/*        font-size: 45px;*/
    }


    .quality-content h2 {

        font-size: 47px;
    }


    .quality-points {

        grid-template-columns: 1fr;
    }


    .profile-cta {

        padding: 70px 0;
    }


    .profile-cta h2 {

        font-size: 48px;
    }

}


/* =====================================================
   INTRO
====================================================== */

.calculator-intro {

    padding: 100px 0 60px;
}


.calculator-intro p {

    color: #666;

    font-size: 15px;

    line-height: 1.85;

    max-width: 760px;

    margin: 0 auto;
}


/* =====================================================
   CALCULATOR SECTION
====================================================== */

.calculator-section {

    padding: 60px 0 110px;

    background: #f5f6f7;
}


/* =====================================================
   PRODUCT SELECTOR
====================================================== */

.product-selector {

    display: grid;

    grid-template-columns: repeat(3, 1fr);

    gap: 20px;

    margin-bottom: 35px;
}


.product-tab {

    border: 1px solid #ddd;
    background: #fff;
    padding: 8px 12px;
    cursor: pointer;
    text-align: left;
    transition: .3s ease;
    position: relative;
    border-radius: 10px;
}


.product-tab:hover {

    border-color: var(--primary);

    transform: translateY(-4px);
}


.product-tab.active {

    background: #111;

    border-color: #111;
}


.product-tab-icon {

    width: 55px;

    height: 55px;

    display: flex;

    align-items: center;

    justify-content: center;

    background: var(--primary);

    color: #fff;

    font-size: 23px;

    margin-bottom: 18px;
}


.product-tab h3 {

    font-family: var(--font-heading);

    font-size: 28px;

    text-transform: uppercase;

    margin: 0 0 5px;

    color: #111;
}


.product-tab p {

    margin: 0;

    color: #777;

    font-size: 13px;
}


.product-tab.active h3 {

    color: #fff;
}


.product-tab.active p {

    color: #aaa;
}


.product-tab.active::after {

    content: "";

    position: absolute;

    right: 22px;

    top: 22px;

    width: 10px;

    height: 10px;

    background: var(--primary);

    border-radius: 50%;
}


/* =====================================================
   CALCULATOR BOX
====================================================== */

.calculator-box {

    background: #fff;

    border: 1px solid #ddd;

    box-shadow: 0 15px 45px rgba(0,0,0,.07);
}


.calculator-header {

    background: #111;

    padding: 18px 20px;

    display: flex;

    align-items: center;

    justify-content: space-between;

    gap: 25px;
}


.calculator-header h2 {

    color: #fff;

    font-family: var(--font-heading);

    font-size: 38px;

    text-transform: uppercase;

    margin: 0;
}


.calculator-header h2 span {

    color: var(--primary);
}


.calculator-header p {

    color: #aaa;

    margin: 6px 0 0;

    font-size: 13px;
}


.calculator-header-icon {

    width: 65px;

    height: 65px;

    min-width: 65px;

    display: flex;

    align-items: center;

    justify-content: center;

    background: var(--primary);

    color: #fff;

    font-size: 27px;
}


.calculator-body {

    padding: 45px;
}


/* =====================================================
   FORM
====================================================== */

.form-label-custom {

    font-size: 14px;

    font-weight: 700;

    letter-spacing: 1.2px;

    text-transform: uppercase;

    color: #333;

    margin-bottom: 9px;
}


.form-control-custom {

    width: 100%;

    height: 54px;

    border: 1px solid #d8d8d8;

    border-radius: 0;

    padding: 0 16px;

    font-family: Inter, sans-serif;

    font-size: 14px;

    outline: none;

    transition: .25s ease;
}


.form-control-custom:focus {

    border-color: var(--primary);

    box-shadow: 0 0 0 3px rgba(0,0,0,.04);
}


.input-group-custom {

    position: relative;
}


.input-unit {

    position: absolute;

    right: 1px;

    top: 1px;

    height: 52px;

    min-width: 58px;

    display: flex;

    align-items: center;

    justify-content: center;

    background: #f3f3f3;

    color: #666;

    font-size: 11px;

    font-weight: 700;

    text-transform: uppercase;
}


.calculator-button {

    height: 56px;

    border: 0;

    padding: 0 30px;

    background: var(--primary);

    color: #fff;

    font-size: 12px;

    font-weight: 800;

    letter-spacing: 1.3px;

    text-transform: uppercase;

    transition: .3s ease;
}


.calculator-button:hover {

    background: #111;

    color: #fff;
}


.reset-button {

    height: 56px;

    padding: 0 25px;

    background: #fff;

    color: #222;

    border: 1px solid #ccc;

    font-size: 12px;

    font-weight: 700;

    letter-spacing: 1px;

    text-transform: uppercase;

    transition: .3s ease;
}


.reset-button:hover {

    background: #111;

    color: #fff;

    border-color: #111;
}


/* =====================================================
   RESULT PANEL
====================================================== */

.result-panel {

    height: 100%;

    background: #0b0d0f;

    padding: 35px;

    display: flex;

    flex-direction: column;

    justify-content: center;
}


.result-label {

    color: var(--primary);

    font-size: 10px;

    font-weight: 800;

    letter-spacing: 2px;

    text-transform: uppercase;

    margin-bottom: 8px;
}


.result-title {

    font-family: var(--font-heading);

    font-size: 38px;

    color: #fff;

    text-transform: uppercase;

    margin-bottom: 3px;
}


.result-main {

    border-bottom: 1px solid rgba(255,255,255,.15);

    padding-bottom: 25px;

    margin-bottom: 25px;
}


.result-main small {

    color: #999;

    font-size: 11px;

    text-transform: uppercase;

    letter-spacing: 1px;
}


.result-main strong {

    display: block;

    color: #fff;

    font-family: var(--font-heading);

    font-size: 27px;

    line-height: 1;

    margin-top: 7px;
}


.result-main strong span {

    font-size: 21px;

    color: var(--primary);
}


.result-items {

    display: grid;

    grid-template-columns: repeat(2, 1fr);

    gap: 10px;
}


.result-item {

    padding: 16px;

    background: #151719;

    border: 1px solid #292c2f;
}


.result-item small {

    display: block;

    color: #888;

    font-size: 9px;

    text-transform: uppercase;

    letter-spacing: 1px;

    margin-bottom: 6px;
}


.result-item strong {

    color: #fff;

    font-size: 15px;
}

/* =====================================================
   FORMULA
====================================================== */

.formula-box {

    margin-top: 35px;

    padding: 25px;

    background: #f5f6f7;

    border-left: 3px solid var(--primary);
}

.formula-box small {

    display: block;

    color: #777;

    font-size: 10px;

    font-weight: 700;

    letter-spacing: 1.5px;

    text-transform: uppercase;

    margin-bottom: 8px;
}

.formula-box strong {

    font-family: var(--font-heading);

    font-size: 24px;

    color: #222;
}

/* =====================================================
   INFO SECTION
====================================================== */

.info-section {

    padding: 110px 0;
}

.info-card {

    height: 100%;

    padding: 40px 35px;

    border: 1px solid #ddd;

    background: #fff;

    transition: .3s ease;
}


.info-card:hover {

    border-color: var(--primary);

    transform: translateY(-6px);
}

.info-icon {

    width: 58px;

    height: 58px;

    display: flex;

    align-items: center;

    justify-content: center;

    background: #111;

    color: var(--primary);

    font-size: 24px;

    margin-bottom: 22px;
}

.info-card h3 {

    font-family: var(--font-heading);

    font-size: 29px;

    text-transform: uppercase;

    margin-bottom: 12px;
}

.info-card p {

    color: #666;

    font-size: 14px;

    line-height: 1.8;

    margin: 0;
}

/* =====================================================
   RESPONSIVE
====================================================== */

@media(max-width:991px) {

    .calculator-banner h1 {

        font-size: 68px;
    }


    .product-selector {

        grid-template-columns: 1fr;
    }


    .calculator-header {

        align-items: flex-start;
    }


    .calculator-header h2 {

        font-size: 32px;
    }


    .calculator-body {

        padding: 30px;
    }

}


@media(max-width:767px) {

    .calculator-banner {

        min-height: 470px;
    }


    .calculator-banner h1 {

        font-size: 52px;
    }


    .calculator-intro,
    .calculator-section,
    .info-section {

        padding: 70px 0;
    }


    .calculator-header {

        padding: 28px 25px;
    }


    .calculator-header-icon {

        display: none;
    }


    .calculator-body {

        padding: 25px 20px;
    }


    .result-panel {

        margin-top: 30px;

        padding: 30px 25px;
    }


    .result-main strong {

        font-size: 48px;
    }

}

/* =====================================================
   Infrastructure page css
====================================================== */

.infra-banner {
    min-height: 440px;
    position: relative;
    display: flex;
    align-items: center;

    /*background:
        linear-gradient(
            90deg,
            rgba(5,7,9,.92) 0%,
            rgba(5,7,9,.72) 48%,
            rgba(5,7,9,.35) 100%
        ),
        url('infrastructure-banner.jpg') center/cover no-repeat;*/
        background-size: cover;
        background-position: center;
}
.infra-banner::before{
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    top: 0;
    right: 0;
    background:linear-gradient(
            90deg,
            rgba(5,7,9,.92) 0%,
            rgba(5,7,9,.72) 48%,
            rgba(5,7,9,.35) 100%
        );
    z-index: 1;
}
.infra-banner::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 5px;
    background: var(--primary);
}

.banner-content {
    max-width: 850px;
    position: relative;
    z-index: 2;
}

.banner-label {
    display: flex;
    align-items: center;
    gap: 12px;

    color: var(--primary);

    font-size: 11px;
    font-weight: 800;
    letter-spacing: 3px;
    text-transform: uppercase;

    margin-bottom: 18px;
}

.banner-label span {
    width: 40px;
    height: 2px;
    background: var(--primary);
}

.banner-content h1 {
    font-family: var(--font-heading);

    font-size: 60px;
    line-height: .91;

    font-weight: 700;

    text-transform: uppercase;

    color: #fff;

    margin-bottom: 25px;
}

.banner-content h1 span {
    color: var(--primary);
}

.banner-content p {
    color: rgba(255,255,255,.78);

    font-size: 16px;
    line-height: 1.85;

    max-width: 680px;

    margin: 0;
}


/* =====================================================
   INTRO
====================================================== */

.infra-overview {
    padding: 110px 0;
}

.overview-image {
    position: relative;
}

.overview-image img {
    width: 100%;
    height: 580px;
    object-fit: cover;
}

.overview-number {
    position: absolute;

    left: -20px;
    bottom: 35px;

    width: 170px;
    height: 170px;

    background: var(--primary);

    display: flex;
    flex-direction: column;
    justify-content: center;

    padding: 25px;

    color: #fff;
}

.overview-number strong {
    font-family: var(--font-heading);

    font-size: 52px;
    line-height: 1;
}

.overview-number span {
    font-size: 11px;
    letter-spacing: 1.5px;
    text-transform: uppercase;

    margin-top: 8px;
}

.overview-content {
    padding-left: 35px;
}

.overview-content .lead {
    font-size: 20px;
    line-height: 1.7;

    font-weight: 500;

    color: #222;
}

.overview-content p {
    font-size: 15px;
    line-height: 1.85;

    color: #666;
}


/* =====================================================
   CAPABILITY SECTION
====================================================== */

.capability-section {
    padding: 110px 0;

    background: #0b0d0f;
}

.capability-card {
    height: 100%;

    padding: 42px 35px;

    background: #151719;

    border: 1px solid #272a2d;

    transition: .35s ease;
}

.capability-card:hover {
    border-color: var(--primary);
    transform: translateY(-7px);
}

.capability-icon {
    width: 62px;
    height: 62px;

    display: flex;
    align-items: center;
    justify-content: center;

    background: var(--primary);

    color: #fff;

    font-size: 25px;

    margin-bottom: 25px;
}

.capability-card h3 {
    color: #fff;

    font-family: var(--font-heading);

    font-size: 31px;

    text-transform: uppercase;

    margin-bottom: 13px;
}

.capability-card p {
    color: #9fa4a8;

    font-size: 14px;
    line-height: 1.85;

    margin: 0;
}


/* =====================================================
   FEATURE SPLIT
====================================================== */

.feature-section {
    padding: 110px 0;
}

.feature-image {
    overflow: hidden;
}

.feature-image img {
    width: 100%;
    /*height: 520px;*/

    object-fit: cover;

    transition: .5s ease;
}

.feature-image:hover img {
    transform: scale(1.04);
}

.feature-content {
    padding: 20px 0 20px 45px;
}

.feature-list {
    margin-top: 30px;
}

.feature-list-item {
    display: flex;
    gap: 18px;

    padding: 22px 0;

    border-bottom: 1px solid #ddd;
}

.feature-list-item i {
    color: var(--primary);

    font-size: 22px;

    margin-top: 2px;
}

.feature-list-item h4 {
    font-family: var(--font-heading);

    font-size: 24px;

    text-transform: uppercase;

    margin-bottom: 5px;
}

.feature-list-item p {
    color: #666;

    font-size: 14px;
    line-height: 1.7;

    margin: 0;
}


/* =====================================================
   GALLERY
====================================================== */

.gallery-section {
    padding: 110px 0;

    background: #f5f6f7;
}

.gallery-card {
    position: relative;

    overflow: hidden;

    background: #111;
}

.gallery-card img {
    width: 100%;

    height: 310px;

    object-fit: cover;

    transition: .55s ease;
}

.gallery-card:hover img {
    transform: scale(1.08);
}

.gallery-overlay {
    position: absolute;

    inset: 0;

    display: flex;
    align-items: flex-end;

    padding: 30px;

    background:
        linear-gradient(
            transparent 35%,
            rgba(0,0,0,.88)
        );

    opacity: .95;
}

.gallery-overlay-content {
    width: 100%;
}

.gallery-overlay small {
    color: var(--primary);

    font-size: 10px;
    font-weight: 700;

    letter-spacing: 2px;

    text-transform: uppercase;
}

.gallery-overlay h3 {
    color: #fff;

    font-family: var(--font-heading);

    font-size: 29px;

    text-transform: uppercase;

    margin: 5px 0 0;
}

.gallery-view {
    position: absolute;

    top: 20px;
    right: 20px;

    width: 42px;
    height: 42px;

    display: flex;
    align-items: center;
    justify-content: center;

    background: var(--primary);

    color: #fff;

    opacity: 0;

    transform: translateY(-10px);

    transition: .3s ease;
}

.gallery-card:hover .gallery-view {
    opacity: 1;
    transform: translateY(0);
}

/* =====================================================
   PROCESS
====================================================== */

.process-section {
    padding: 110px 0;
}

.process-card {
    position: relative;

    height: 100%;

    padding: 35px 30px;

    border: 1px solid #dedede;

    background: #fff;
}

.process-card::before {
    content: "";

    position: absolute;

    top: 0;
    left: 0;

    width: 100%;
    height: 3px;

    background: var(--primary);

    transform: scaleX(0);
    transform-origin: left;

    transition: .35s ease;
}

.process-card:hover::before {
    transform: scaleX(1);
}

.process-number {
    color: var(--primary);

    font-family: var(--font-heading);

    font-size: 50px;
    font-weight: 700;

    line-height: 1;

    margin-bottom: 20px;
}

.process-card h3 {
    font-family: var(--font-heading);

    font-size: 28px;

    text-transform: uppercase;

    margin-bottom: 10px;
}

.process-card p {
    color: #666;

    font-size: 14px;
    line-height: 1.8;

    margin: 0;
}

/* =====================================================
   HIGHLIGHTS
====================================================== */

.highlight-section {
    padding: 100px 0;

    background:
        linear-gradient(
            90deg,
            rgba(10,12,14,.95),
            rgba(10,12,14,.75)
        ),
        url('steel-yard.jpg') center/cover no-repeat;
}

.highlight-item {
    text-align: center;

    padding: 30px 20px;

    border-right: 1px solid rgba(255,255,255,.15);
}

.highlight-item:last-child {
    border-right: 0;
}

.highlight-item i {
    color: var(--primary);

    font-size: 38px;

    margin-bottom: 18px;
}

.highlight-item h3 {
    color: #fff;

    font-family: var(--font-heading);

    font-size: 29px;

    text-transform: uppercase;

    margin-bottom: 8px;
}

.highlight-item p {
    color: #aeb2b5;

    font-size: 13px;

    line-height: 1.7;

    margin: 0;
}


/* =====================================================
   RESPONSIVE
====================================================== */

@media(max-width:991px) {

    .banner-content h1 {
        font-size: 48px;
    }

    .overview-content {
        padding-left: 0;
        margin-top: 45px;
    }

    .feature-content {
        padding: 40px 0 0;
    }

    .infra-cta h2 {
        font-size: 52px;
    }

}


@media(max-width:767px) {

    .infra-banner {
        min-height: 440px;
    }

    .banner-content h1 {
        font-size: 40px;
    }

    .infra-overview,
    .capability-section,
    .feature-section,
    .gallery-section,
    .process-section {
        padding: 75px 0;
    }

    .overview-image img {
        height: 430px;
    }

    .overview-number {
        left: 15px;
    }

    .feature-image img {
        height: 400px;
    }

    .gallery-card img {
        height: 280px;
    }

    .highlight-section {
        padding: 70px 0;
    }

    .highlight-item {
        border-right: 0;
        border-bottom: 1px solid rgba(255,255,255,.15);
    }

    .infra-cta {
        padding: 70px 0;
    }

    .infra-cta h2 {
        font-size: 45px;
    }

}

/*---------------------------products css-------------------*/

/* =====================================================
   FLAT BARS PAGE
====================================================== */

.page-banner {
    position: relative;
    min-height: 500px;
    display: flex;
    align-items: center;
    overflow: hidden;
    align-items: center;
    background-size:cover;
    background-position:center;
}

.page-banner::after{
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    right: 0;
    left: 0;
    background:
        linear-gradient(
            90deg,
            rgba(5,7,9,.94) 0%,
            rgba(5,7,9,.80) 48%,
            rgba(5,7,9,.35) 100%
        );
        z-index: 1;
}
.page-banner::before {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 5px;
    background: var(--primary);
}

.banner-content {
    position: relative;
    z-index: 2;
    max-width: 850px;
}

.banner-tag {
    display: inline-flex;
    align-items: center;
    gap: 10px;

    color: var(--primary);

    font-size: 11px;
    font-weight: 800;
    letter-spacing: 3px;
    text-transform: uppercase;

    margin-bottom: 15px;
}

.banner-tag span {
    width: 35px;
    height: 2px;
    background: var(--primary);
    display: inline-block;
}

.banner-content h1 {
    font-family: var(--font-heading);
    color: #fff;

    font-size: 60px;
    line-height: .92;

    text-transform: uppercase;

    margin: 0 0 22px;
    font-weight: 700;
}

.banner-content h1 span {
    color: var(--primary);
}

.banner-content p {
    color: rgba(255, 255, 255, .78);

    font-size: 16px;
    line-height: 1.8;

    max-width: 680px;

    margin-bottom: 30px;
}

.banner-buttons {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

.breadcrumb-wrap {
    position: absolute;
    bottom: 28px;
    left: 0;
    width: 100%;
    z-index: 3;
}

.breadcrumb {
    margin: 0;
}

.breadcrumb-item {
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.breadcrumb-item a {
    color: rgba(255, 255, 255, .65);
    text-decoration: none;
}

.breadcrumb-item.active {
    color: var(--primary);
}

.breadcrumb-item + .breadcrumb-item::before {
    color: rgba(255, 255, 255, .4);
}


/* =====================================================
   PRODUCT INTRO
====================================================== */

.product-intro {
    padding: 110px 0;
}

.product-image {
    position: relative;
}

.product-image img {
    width: 100%;
    height: 560px;
    object-fit: cover;
}

.product-image-badge {
    position: absolute;
    left: 25px;
    bottom: 25px;

    background: var(--primary);
    color: #fff;

    padding: 25px 28px;
    max-width: 250px;
}

.product-image-badge i {
    font-size: 32px;
    display: block;
    margin-bottom: 12px;
}

.product-image-badge strong {
    display: block;

    font-family: var(--font-heading);
    font-size: 27px;
    line-height: 1;

    text-transform: uppercase;
}

.product-image-badge span {
    display: block;

    font-size: 11px;
    letter-spacing: 1.3px;
    text-transform: uppercase;

    margin-top: 8px;
    opacity: .85;
}

.product-content {
    padding-left: 30px;
}

.product-content .lead-text {
    font-size: 19px;
    line-height: 1.7;
    font-weight: 500;
}

.product-content p {
    line-height: 1.8;
}

.product-points {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px 25px;

    margin-top: 30px;
}

.product-point {
    display: flex;
    align-items: center;
    gap: 10px;

    font-size: 14px;
    font-weight: 600;
}

.product-point i {
    color: var(--primary);
    font-size: 18px;
}


/* =====================================================
   PRODUCT APPLICATIONS
====================================================== */

.applications-section {
    background: #0b0d0f;
    padding: 105px 0;
}

.application-card {
    height: 100%;

    padding: 38px 32px;

    background: #151719;
    border: 1px solid #25282b;

    transition: .3s ease;
}

.application-card:hover {
    transform: translateY(-6px);
    border-color: var(--primary);
}
.application-card:hover strong{
    color: var(--white);
}
.application-icon {
    width: 58px;
    height: 58px;

    display: flex;
    align-items: center;
    justify-content: center;

    background: var(--primary);
    color: #fff;

    font-size: 24px;

    margin-bottom: 25px;
}

.application-card h3 {
    color: #fff;

    font-family: var(--font-heading);
    font-size: 30px;

    text-transform: uppercase;

    margin-bottom: 12px;
}

.application-card p {
    color: var(--white);

    font-size: 14px;
    line-height: 1.8;

    margin-bottom: 20px;
}

.application-meta {
    border-top: 1px solid #292c2f;
    padding-top: 18px;

    color: #fff;

    font-size: 12px;
    line-height: 1.8;
}

.application-meta strong {
    color: var(--primary);
    text-transform: uppercase;
    letter-spacing: .5px;
}


/* =====================================================
   SIZE SECTION
====================================================== */

.size-section {
    padding: 105px 0;
}

.size-intro {
    max-width: 700px;
    margin: 0 auto 45px;
    text-align: center;
}

.size-table-wrap {
    overflow-x: auto;
    border: 1px solid #e1e1e1;
}

.size-table {
    margin: 0;
    min-width: 750px;
}

.size-table thead th {
    background: #111;
    color: #fff;

    font-family: var(--font-heading);
    font-size: 19px;

    text-transform: uppercase;
    letter-spacing: .5px;

    padding: 17px 20px;

    border: 0;
}

.size-table tbody td {
    padding: 15px 20px;

    font-size: 14px;

    vertical-align: middle;

    border-color: #e5e5e5;
}

.size-table tbody tr:hover td {
    background: #f8f8f8;
}

.size-note {
    margin-top: 18px;

    font-size: 13px;
    color: #666;

    text-align: center;
}


/* =====================================================
   SPECIFICATION SECTION
====================================================== */

.spec-section {
    background: #f5f6f7;
    padding: 105px 0;
}

.spec-box {
    background: #fff;
    border: 1px solid #e1e1e1;
}

.spec-row {
    display: grid;
    grid-template-columns: 35% 65%;

    border-bottom: 1px solid #e5e5e5;
}

.spec-row:last-child {
    border-bottom: 0;
}

.spec-label,
.spec-value {
    padding: 18px 22px;

    font-size: 14px;
}

.spec-label {
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .5px;

    background: #fafafa;
}

.spec-value {
    color: #555;
}


/* =====================================================
   WHY CHOOSE US
====================================================== */

.why-section {
    padding: 105px 0;
}

.why-card {
    height: 100%;

    padding: 32px 28px;

    border: 1px solid #e2e2e2;

    transition: .3s ease;
}

.why-card:hover {
    border-color: var(--primary);
    transform: translateY(-5px);
}

.why-number {
    font-family: var(--font-heading);

    color: var(--primary);

    font-size: 45px;
    font-weight: 700;

    line-height: 1;

    margin-bottom: 20px;
}

.why-card h3 {
    font-family: var(--font-heading);

    font-size: 27px;

    text-transform: uppercase;

    margin-bottom: 10px;
}

.why-card p {
    color: #666;

    font-size: 14px;
    line-height: 1.8;

    margin: 0;
}


/* =====================================================
   FAQ
====================================================== */

.faq-section {
    background: #fff;
    padding: 105px 0;
}

.faq-wrapper {
    max-width: 950px;
    margin: auto;
}

.faq-section .accordion-item {
    background: transparent;
/*    border: 1px solid #292c2f;*/
    margin-bottom: 12px;
}

.faq-section .accordion-button {
    background: #151719;
    color: #fff;

    font-family: var(--font-heading);
    font-size: 24px;

    text-transform: uppercase;

    padding: 22px 25px;

    box-shadow: none;
}

.faq-section .accordion-button:not(.collapsed) {
    background: var(--primary);
    color: #fff;
}

.faq-section .accordion-button::after {
    filter: brightness(0) invert(1);
}

.faq-section .accordion-body {
   
    color: #000;

    font-size: 14px;
    line-height: 1.8;

    padding: 22px 25px;
}


/* =====================================================
   CTA
====================================================== */

.flat-cta {
    padding: 90px 0;
}

.flat-cta-wrapper {
    background: var(--primary);

    padding: 60px;

    position: relative;
    overflow: hidden;
}

.flat-cta-wrapper::after {
    content: "FLAT";

    position: absolute;
    right: -20px;
    bottom: -50px;

    font-family: var(--font-heading);
    font-size: 180px;
    font-weight: 800;

    color: rgba(0, 0, 0, .08);
    line-height: 1;
}

.flat-cta h2 {
    color: #fff;

    font-family: var(--font-heading);
    font-size: 55px;
    line-height: 1;

    text-transform: uppercase;

    margin-bottom: 15px;
}

.flat-cta h2 span {
    color: #111;
}

.flat-cta p {
    color: rgba(255, 255, 255, .88);

    font-size: 15px;
    line-height: 1.8;

    max-width: 650px;

    margin: 0;
}


/* =====================================================
   RESPONSIVE
====================================================== */

@media (max-width: 991px) {

    .banner-content h1 {
        font-size: 48px;
    }

    .product-content {
        padding-left: 0;
        margin-top: 45px;
    }

    .quality-inner h2 {
        font-size: 52px;
    }

    .flat-cta h2 {
        font-size: 45px;
    }

}


@media (max-width: 767px) {

    .page-banner {
        min-height: 520px;
    }

    .banner-content h1 {
        font-size: 40px;
    }

    .banner-content p {
        font-size: 14px;
    }

    .product-intro,
    .applications-section,
    .size-section,
    .spec-section,
    .grade-section,
    .why-section {
        padding: 75px 0;
    }

    .product-image img {
        height: 400px;
    }

    .product-points {
        grid-template-columns: 1fr;
    }

    .quality-section,
    .faq-section {
        padding: 75px 0;
    }

    .quality-inner h2 {
        font-size: 45px;
    }

    .flat-cta-wrapper {
        padding: 40px 30px;
    }

    .flat-cta h2 {
        font-size: 40px;
    }

}


@media (max-width: 480px) {

    .banner-content h1 {
        font-size: 35px;
    }

    .product-image img {
        height: 350px;
    }

    .product-image-badge {
        left: 10px;
        right: 10px;
        bottom: 10px;
        max-width: none;
    }

    .spec-row {
        grid-template-columns: 1fr;
    }

    .spec-label {
        padding-bottom: 8px;
    }

    .spec-value {
        padding-top: 8px;
    }

    .quality-inner h2 {
        font-size: 38px;
    }

    .faq-section .accordion-button {
        font-size: 20px;
    }

}

/* =====================================================
   CTA
====================================================== */

.square-cta {
    padding: 90px 0;
}

.square-cta-wrapper {
    background: var(--primary);

    padding: 60px;

    position: relative;
    overflow: hidden;
}

.square-cta-wrapper::after {
    content: "SQUARE";

    position: absolute;
    right: -30px;
    bottom: -50px;

    font-family: var(--font-heading);
    font-size: 145px;
    font-weight: 800;

    color: rgba(0, 0, 0, .08);
    line-height: 1;
}

.square-cta h2 {
    color: #fff;

    font-family: var(--font-heading);
    font-size: 55px;
    line-height: 1;

    text-transform: uppercase;

    margin-bottom: 15px;
}

.square-cta h2 span {
    color: #111;
}

.square-cta p {
    color: rgba(255, 255, 255, .88);

    font-size: 15px;
    line-height: 1.8;

    max-width: 650px;

    margin: 0;
}


/* =====================================================
   RESPONSIVE
====================================================== */

@media (max-width: 991px) {

    .square-cta h2 {
        font-size: 45px;
    }

}


/*-----------grade css----------*/
/* =====================================================
   HERO
====================================================== */

.grade-hero {
    min-height: 500px;

    display: flex;

    align-items: center;

    position: relative;

    background:
        linear-gradient(
            90deg,
            rgba(4,5,6,.95),
            rgba(4,5,6,.78),
            rgba(4,5,6,.30)
        ),
        url("grade-banner.jpg")
        center/cover no-repeat;
}


.grade-hero::after {
    content: "";

    position: absolute;

    bottom: 0;

    left: 0;

    width: 100%;

    height: 5px;

    background: var(--primary);
}


.hero-content {
    max-width: 850px;
}


.hero-label {
    display: flex;

    align-items: center;

    gap: 12px;

    color: var(--primary);

    font-size: 11px;

    font-weight: 800;

    letter-spacing: 3px;

    text-transform: uppercase;

    margin-bottom: 20px;
}


.hero-label span {
    width: 42px;

    height: 2px;

    background: var(--primary);
}


.hero-content h1 {
    color: #fff;

    font-size: 86px;

    line-height: .9;

    text-transform: uppercase;

    font-weight: 700;

    margin-bottom: 25px;
}


.hero-content h1 span {
    color: var(--primary);
}


.hero-content p {
    color: rgba(255,255,255,.78);

    max-width: 690px;

    line-height: 1.85;

    font-size: 15px;

    margin: 0;
}


/* =====================================================
   SECTION HEADINGS
====================================================== */

.section-label {
    display: flex;

    align-items: center;

    gap: 10px;

    color: var(--primary);

    font-size: 11px;

    font-weight: 800;

    letter-spacing: 2px;

    text-transform: uppercase;

    margin-bottom: 13px;
}


.section-label span {
    width: 32px;

    height: 2px;

    background: var(--primary);
}


.section-title {
    font-size: 50px;

    line-height: .95;

    text-transform: uppercase;

    font-weight: 700;

    margin-bottom: 22px;
}


.section-title span {
    color: var(--primary);
}


.section-description {
    color: #666;

    line-height: 1.85;

    font-size: 14px;
}


/* =====================================================
   INTRO
====================================================== */

.grade-intro {
    padding: 100px 0;
}


.intro-box {
    background: var(--light);

    border-left: 5px solid var(--primary);

    padding: 40px;
}


.intro-box h3 {
    font-size: 34px;

    text-transform: uppercase;

    margin-bottom: 15px;
}


.intro-box p {
    color: #666;

    font-size: 14px;

    line-height: 1.9;

    margin: 0;
}


.technical-card {
    background: var(--dark);

    color: #fff;

    padding: 40px;

    height: 100%;
}


.technical-card i {
    color: var(--primary);

    font-size: 38px;

    margin-bottom: 20px;

    display: block;
}


.technical-card h3 {
    font-size: 32px;

    text-transform: uppercase;

    margin-bottom: 12px;
}


.technical-card p {
    color: #a9adb1;

    line-height: 1.8;

    font-size: 14px;

    margin: 0;
}


/* =====================================================
   TABLE SECTION
====================================================== */

.technical-section {
    padding: 100px 0;

    background: #f6f7f8;
}


.table-wrapper {
    background: #fff;

    border: 1px solid var(--border);

    overflow-x: auto;

    box-shadow:
        0 15px 40px rgba(0,0,0,.04);
}


.technical-table {
    width: 100%;

    margin: 0;

    border-collapse: collapse;

    min-width: 900px;
}


.technical-table thead th {
    background: var(--dark);

    color: #fff;

    font-family: var(--heading);

    font-size: 17px;

    font-weight: 600;

    text-transform: uppercase;

    letter-spacing: .5px;

    padding: 17px 15px;

    border-right: 1px solid #303235;

    white-space: nowrap;
}


.technical-table thead th:first-child {
    background: var(--primary);
}


.technical-table tbody td {
    padding: 14px 15px;

    font-size: 13px;

    color: #555;

    border-bottom: 1px solid #e8e8e8;

    border-right: 1px solid #eee;

    white-space: nowrap;
}


.technical-table tbody tr:hover {
    background: #fff6f6;
}


.technical-table tbody td:first-child {
    color: #111;

    font-weight: 700;
}


/* =====================================================
   GRADE CARDS
====================================================== */

.grade-section {
    padding: 100px 0;
}


.grade-card {
    border: 1px solid #ddd;

    background: #fff;

    height: 100%;

    transition: .3s ease;
}


.grade-card:hover {
    transform: translateY(-6px);

    border-color: var(--primary);

    box-shadow:
        0 15px 40px rgba(0,0,0,.08);
}


.grade-card-head {
    padding: 23px 25px;

    background: var(--dark);

    display: flex;

    align-items: center;

    justify-content: space-between;
}


.grade-card-head h3 {
    color: #fff;

    font-size: 28px;

    margin: 0;

    text-transform: uppercase;
}


.grade-card-head i {
    color: var(--primary);

    font-size: 25px;
}


.grade-card-body {
    padding: 25px;
}


.grade-card-body p {
    color: #666;

    font-size: 13px;

    line-height: 1.8;

    margin-bottom: 18px;
}


.composition-mini {
    width: 100%;
}


.composition-mini div {
    display: flex;

    justify-content: space-between;

    padding: 8px 0;

    border-bottom: 1px solid #eee;

    font-size: 12px;
}


.composition-mini strong {
    color: #222;
}


.composition-mini span {
    color: #666;
}


/* =====================================================
   SIZE SECTION
====================================================== */

.size-section {
    padding: 100px 0;

    background: var(--dark);
}


.size-section .section-title {
    color: #fff;
}


.size-section .section-description {
    color: #aaa;
}


.size-note {
    color: #aaa;

    font-size: 13px;

    line-height: 1.8;

    margin-top: 18px;
}


/* =====================================================
   MECHANICAL PROPERTIES
====================================================== */

.properties-section {
    padding: 100px 0;
}


.property-card {
    padding: 38px 25px;

    border: 1px solid #ddd;

    height: 100%;

    text-align: center;

    background: #fff;
}


.property-card i {
    width: 58px;

    height: 58px;

    display: inline-flex;

    align-items: center;

    justify-content: center;

    background: var(--primary);

    color: #fff;

    font-size: 22px;

    margin-bottom: 20px;
}


.property-card h3 {
    font-size: 22px;

    text-transform: uppercase;

    margin-bottom: 10px;
}


.property-value {
    color: var(--primary);

    font-family: var(--heading);

    font-size: 32px;

    font-weight: 700;
}


.property-unit {
    color: #888;

    font-size: 12px;
}


/* =====================================================
   TOLERANCES
====================================================== */

.tolerance-section {
    padding: 100px 0;

    background: #f6f7f8;
}


.tolerance-title {
    font-family: var(--heading);

    font-size: 31px;

    text-transform: uppercase;

    margin-bottom: 20px;
}

/*----------------quality page css ----------------*/

/* =====================================================
   POLICY INTRO
====================================================== */

.policy-intro {
    padding: 100px 0;
}

.policy-intro-image {
    position: relative;
}

.policy-intro-image img {
    width: 100%;
    height: 540px;
    object-fit: cover;
}

.policy-badge {
    position: absolute;
    right: -25px;
    bottom: 30px;
    background: var(--primary);
    color: #fff;
    padding: 28px 30px;
    max-width: 230px;
}

.policy-badge i {
    font-size: 34px;
    display: block;
    margin-bottom: 12px;
}

.policy-badge strong {
    font-family: var(--font-heading);
    font-size: 27px;
    line-height: 1;
    text-transform: uppercase;
    display: block;
}

.policy-badge span {
    display: block;
    font-size: 11px;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    margin-top: 8px;
    opacity: .85;
}

.policy-content {
    padding-left: 25px;
}

.policy-content .lead-text {
    font-size: 19px;
    line-height: 1.7;
    font-weight: 500;
}

.policy-content p {
    line-height: 1.8;
}


/* =====================================================
   POLICY COMMITMENTS
====================================================== */

.commitments-section {
    background: #0b0d0f;
    padding: 100px 0;
}

.commitment-card {
    height: 100%;
    padding: 38px 32px;
    background: #151719;
    border: 1px solid #25282b;
    transition: .3s ease;
}

.commitment-card:hover {
    transform: translateY(-5px);
    border-color: var(--primary);
}

.commitment-icon {
    width: 55px;
    height: 55px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--primary);
    color: #fff;
    font-size: 23px;
    margin-bottom: 25px;
}

.commitment-card h3 {
    color: #fff;
    font-family: var(--font-heading);
    font-size: 29px;
    text-transform: uppercase;
    margin-bottom: 12px;
}

.commitment-card p {
    color: #aeb2b5;
    font-size: 14px;
    line-height: 1.8;
    margin: 0;
}


/* =====================================================
   QUALITY PROCESS
====================================================== */

.quality-process {
    padding: 100px 0;
}

.quality-process .process-item {
    display: inline-block;
    position: relative;
    padding: 35px 30px;
    background: #f5f6f7;
    height: 100%;
    border-left: 3px solid transparent;
    transition: .3s ease;
}

.quality-process .process-item:hover {
    border-left-color: var(--primary);
    transform: translateY(-4px);
}

.quality-process .process-number {
    font-family: var(--font-heading);
    color: var(--primary);
    font-size: 48px;
    font-weight: 700;
    line-height: 1;
    margin-bottom: 20px;
}

.quality-process .process-item h3 {
    font-family: var(--font-heading);
    font-size: 28px;
    text-transform: uppercase;
    margin-bottom: 12px;
}

.quality-process .process-item p {
    color: #666;
    font-size: 14px;
    line-height: 1.8;
    margin: 0;
}


/* =====================================================
   QUALITY STATEMENT
====================================================== */

.quality-statement {
    padding: 90px 0;
    background:
        linear-gradient(rgba(215,25,32,.94), rgba(215,25,32,.94)),
        url('manu.jpg') center / cover;
}

.quality-statement-inner {
    max-width: 900px;
    margin: auto;
    text-align: center;
}

.quality-statement .section-tag {
    justify-content: center;
    color: #fff;
}

.quality-statement h2 {
    color: #fff;
    font-family: var(--font-heading);
    font-size: 55px;
    line-height: 1;
    text-transform: uppercase;
    margin: 20px 0;
}

.quality-statement h2 span {
    color: #111;
}

.quality-statement p {
    color: rgba(255,255,255,.9);
    font-size: 16px;
    line-height: 1.8;
    max-width: 720px;
    margin: auto;
}


/* =====================================================
   POLICY HIGHLIGHTS
====================================================== */

.highlights-section {
    padding: 100px 0;
}

.highlight-box {
    display: flex;
    align-items: flex-start;
    gap: 18px;
    padding: 28px 0;
    border-bottom: 1px solid #ddd;
}

.highlight-box:last-child {
    border-bottom: 0;
}

.highlight-icon {
    min-width: 45px;
    width: 45px;
    height: 45px;
    background: #111;
    color: var(--primary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
}

.highlight-box h4 {
    font-family: var(--font-heading);
    font-size: 25px;
    text-transform: uppercase;
    margin: 0 0 6px;
}

.highlight-box p {
    color: #666;
    font-size: 14px;
    line-height: 1.7;
    margin: 0;
}


/* =====================================================
   RESPONSIVE
====================================================== */

@media (max-width: 991px) {

    

    .policy-content {
        padding-left: 0;
        margin-top: 50px;
    }

    .policy-badge {
        right: 20px;
    }

    .quality-statement h2 {
        font-size: 52px;
    }
}

@media (max-width: 767px) {

    .page-banner {
        min-height: 500px;
    }

    .banner-content p {
        font-size: 14px;
    }

    .policy-intro,
    .commitments-section,
    .quality-process,
    .highlights-section {
        padding: 70px 0;
    }

    .policy-intro-image img {
        height: 400px;
    }

    .policy-badge {
        right: 10px;
        bottom: 20px;
        padding: 22px;
    }

    .quality-statement {
        padding: 70px 0;
    }

    .quality-statement h2 {
        font-size: 45px;
    }
}

@media (max-width: 480px) {

    .policy-intro-image img {
        height: 350px;
    }

    .policy-badge {
        position: relative;
        right: auto;
        bottom: auto;
        max-width: 100%;
        margin-top: 15px;
    }

    .quality-statement h2 {
        font-size: 39px;
    }
}

/*-----------Home page responsiveness css--------------*/

/* =========================================================
   RESPONSIVE
========================================================= */

@media (max-width: 1199px) {

    .nav-link {
        padding-left: 9px !important;
        padding-right: 9px !important;
    }

    .hero-content h1 {
        font-size: 75px;
    }

}


@media (max-width: 991px) {

    .topbar-left,
    .topbar-right {
        justify-content: center;
    }

    .topbar-left {
        margin-bottom: 5px;
    }

    .main-navbar {
        min-height: 70px;
    }

    .navbar-nav {
        padding: 20px 0;
    }

    .nav-link {
        padding: 10px 0 !important;
    }

    .nav-link::after {
        display: none;
    }

    .navbar .btn-primary-custom {
        margin-top: 10px;
    }

    .hero-section,
    .min-vh-hero {
        min-height: 620px;
    }

    .hero-content h1 {
        font-size: 68px;
    }

    .section-padding {
        padding: 80px 0;
    }

    .about-image-wrapper {
        margin-bottom: 20px;
    }

    .cta-wrapper {
        padding: 55px 35px;
    }

}


@media (max-width: 767px) {
    .section-padding, .section-padding {
        padding: 40px 0;
    }
    .application-card h3{
        font-size: 20px;
        margin-bottom: 4px;
    }
        .profile-content h2, .manufacturing-content h2 {
        font-size: 45px;
    }
    .topbar {
        display: none;
    }
    .application-card{
        padding: 10px 10px;
    }
    .logo-mark {
        width: 42px;
        height: 42px;
    }

    .logo-text {
        font-size: 21px;
    }

    .hero-section,
    .min-vh-hero {
        min-height: 620px;
    }

    .hero-content h1 {
        font-size: 58px;
    }

    .hero-description {
        font-size: 14px;
    }

    .hero-features {
        gap: 12px;
        margin-top: 35px;
        flex-direction: row;
    }

    .hero-scroll {
        display: none;
    }

    .stat-box {
        padding: 22px 10px;
        border-bottom: 1px solid rgba(255,255,255,.15);
    }

    .stat-number {
        font-size: 34px;
    }

    .stat-label {
        font-size: 8px;
    }

    

    .section-title {
        font-size: 40px;
    }

    .about-image img {
        height: 430px;
    }

    .experience-card {
        left: 10px;
    }

    .about-points {
        grid-template-columns: 1fr;
    }

    .product-image img {
        height: 250px;
    }

    .infra-image img {
        height: 400px;
    }

    .infra-list {
        grid-template-columns: 1fr;
    }

    .certificate-grid {
        grid-template-columns: 1fr;
    }

    .certificate-card:last-child {
        grid-column: auto;
    }

    .cta-wrapper {
        padding: 45px 25px;
    }

    .cta-wrapper h2 {
        font-size: 46px;
    }

    .cta-wrapper .btn {
        margin-top: 25px;
    }

    .contact-form-wrapper {
        padding: 25px;
    }

    .footer-bottom {
        flex-direction: column;
    }

}


@media (max-width: 575px) {
    .product-content .lead-text{font-size: 16px;}
    .product-content{margin-top: 0;}
    .product-intro, .applications-section, .size-section, .spec-section, .grade-section, .why-section, .flat-cta, .quality-section, .faq-section, .infra-overview, .capability-section, .feature-section, .gallery-section, .process-section, .company-stats, .profile-intro, .about-section, .manufacturing-section, .values-section, .mission-section, .quality-section{padding: 40px 0;}
    .profile-content h2, .manufacturing-content h2 {
        font-size: 40px;
    }
    .cta-wrapper h2 {
        font-size: 40px;
    }
    .hero-content h1 {
        font-size: 50px;
    }

    .hero-buttons {
        flex-direction: column;
        align-items: flex-start;
    }

    .hero-buttons .btn {
        width: 100%;
    }

    .section-title {
        font-size: 35px;
    }

    .experience-card {
        max-width: 205px;
        padding: 18px;
    }

    .experience-card strong {
        font-size: 42px;
    }

    

    .grade-item {
        padding: 17px 8px;
        font-size: 18px;
    }

}
