/*=========================================================
FERROBEND
GLOBAL STYLES
=========================================================*/

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Poppins', sans-serif;
    background: #ffffff;
    color: #222222;
}

img {
    max-width: 100%;
    display: block;
}

a {
    text-decoration: none;
}

ul {
    list-style: none;
}


/*=========================================================
CONTAINER
=========================================================*/

.container {
    width: 92%;
    max-width: 1380px;
    margin: auto;
}


/*=========================================================
TOP BAR
=========================================================*/

.top-bar {
    background: #232323;
    height: 42px;
}

.top-bar-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 42px;
}

.top-left,
.top-right {
    display: flex;
    align-items: center;
    gap: 28px;
}

.top-left a,
.top-right a {
    color: #ffffff;
    font-size: 14px;
    transition: 0.3s;
}

.top-left a:hover,
.top-right a:hover {
    color: #ff6b00;
}

.top-right i {
    color: #ff6b00;
    margin-right: 7px;
}


/*=========================================================
HEADER
=========================================================*/

.header {
    background: #ffffff;
    border-bottom: 1px solid #ececec;

    position: sticky;
    top: 0;
    z-index: 1000;
}

.header-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    height: 95px;
}


/*=========================================================
LOGO
=========================================================*/

.logo {
    flex: 0 0 200px;
}

.logo img {
    width: 200px;
}


/*=========================================================
NAVIGATION
=========================================================*/

.navbar {
    flex: 1 1 auto;
    display: flex;
    justify-content: center;
    margin-left: 20px;
}

.header .navbar > ul {
    display: flex;
    align-items: center;
    gap: 32px;
}

.header .navbar > ul > li {
    white-space: nowrap;
}

.header .navbar > ul > li > a {
    display: flex;
    align-items: center;
    gap: 8px;

    font-size: 17px;
    font-weight: 400;

    color: #111111;

    transition: 0.3s;
}

.header .navbar > ul > li > a:hover {
    color: #ff6b00;
}

.navbar ul li a i {
    font-size: 11px;
    margin-left: 6px;
    transition: 0.3s;
}


/*=========================================================
DROPDOWN
=========================================================*/

.dropdown {
    position: relative;
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;

    background: #ffffff;
    min-width: 260px;

    display: none;

    border-radius: 8px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);

    padding: 10px 0;
    z-index: 9999;
}

.dropdown:hover .dropdown-menu {
    display: block;
}

.dropdown-menu li {
    width: 100%;
}

.dropdown-menu li a {
    display: block;

    padding: 12px 20px;

    color: #222222 !important;
    background: #ffffff;
}

/*==================================================
  DIMENSIONS MEGA DROPDOWN
==================================================*/

.navbar {
    position: relative;
}

.nav-menu > li.dropdown:has(.dimensions-dropdown-menu) {
    position: static;
}

.nav-menu > li.dropdown > .dimensions-dropdown-menu {

    display: none;

    position: absolute;

    top: calc(100% + 20px);
    left: 50%;

    transform: translateX(-50%);

    width: 900px;
    min-width: 900px;

    grid-template-columns: repeat(3, 1fr);

    gap: 8px 30px;

    padding: 20px;

    margin: 0;

    background: #ffffff;

    border-radius: 12px;

    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.12);

    z-index: 9999;

    box-sizing: border-box;
}

.nav-menu > li.dropdown:hover > .dimensions-dropdown-menu {
    display: grid;
}

.nav-menu > li.dropdown > .dimensions-dropdown-menu li a {

    display: block;

    padding: 12px 20px;

    color: #222222;

    white-space: nowrap;
}

.nav-menu > li.dropdown > .dimensions-dropdown-menu li a:hover {
    background: #ff6b00 !important;
    color: #ffffff !important;
}

.dimensions-dropdown-menu::before {
    content: "";
    position: absolute;
    top: -20px;
    left: 0;
    width: 100%;
    height: 20px;
    background: transparent;
}


@media (hover: hover) and (pointer: fine) {
    .dropdown-menu li a:hover {
        background: #ff6b00 !important;
        color: #ffffff !important;
    }
}


/*=========================================================
HEADER RIGHT
=========================================================*/

.header-right {
    display: flex;
    align-items: center;
    gap: 14px;
    flex-shrink: 0;
}


/*=========================================================
CONTACT BUTTON
=========================================================*/

.contact-btn {
    padding: 14px 22px;

    border: 1px solid #d7d7d7;

    color: #0B1F33;

    border-radius: 5px;

    font-size: 15px;

    font-weight: 600;

    transition: 0.25s ease;
}

.contact-btn:hover {
    background: #0B1F33;
    color: #ffffff;
}


/*=========================================================
QUOTE BUTTON
=========================================================*/

.quote-btn {
    background: #ff6b00;

    color: #ffffff;

    padding: 18px 32px;

    border-radius: 5px;

    font-size: 17px;

    font-weight: 600;

    transition: 0.25s ease;
}

.quote-btn:hover {
    background: #e85f00;
}


/*=========================================================
SEARCH BUTTON
=========================================================*/

.search-btn {
    width: 48px;
    height: 48px;

    border: 1px solid #d9d9d9;

    border-radius: 50%;

    display: flex;
    justify-content: center;
    align-items: center;

    color: #111111;

    font-size: 22px;

    transition: 0.25s;
}

.search-btn:hover {
    border-color: #ff6b00;
    color: #ff6b00;
}

/*==================================================*
*MENU TOGGLE — DESKTOP (hidden)*
*==================================================*/

.menu-toggle {

    display: none;

    background: none;

    border: none;

    font-size: 26px;

    color: #111111;

    cursor: pointer;

}


/*==================================================*
*MOBILE HEADER OVERRIDE
*==================================================*/

@media (max-width: 768px) {

    /* HEADER */

    .header-container {

        position: relative;

        height: 95px;

        display: flex;

        align-items: center;

    }


    /* LOGO */

    .logo {

        flex: 0 0 auto;

    }

    .logo img {

        width: 200px;

    }


    /*==================================================*
    *MOBILE HEADER RIGHT
    *==================================================*/

    .header-right {

        display: flex !important;

        align-items: center;

        gap: 12px;

        margin-left: auto;

        order: 1;

        flex-shrink: 0;

    }


    /* CONTACT HIDE ONLY ON MOBILE */

    .header-right .contact-btn {

        display: none !important;

    }


    /* QUOTE HIDE ONLY ON MOBILE */

    .header-right .quote-btn {

        display: none !important;

    }


    /*==================================================*
    *SEARCH — VISIBLE ON MOBILE
    *==================================================*/

    .header-right .search-btn {

        display: flex !important;

        width: 42px;

        height: 42px;

        align-items: center;

        justify-content: center;

        flex-shrink: 0;

        visibility: visible !important;

        opacity: 1 !important;

    }

    @media (max-width: 768px) {

    .header-right .search-btn {
        display: none !important;
    }

}

    /*==================================================*
    *MENU TOGGLE
    *==================================================*/

    .menu-toggle {

        display: block;

        order: 2;

        margin-left: 8px;

        flex-shrink: 0;

    }


    /*==================================================*
    *NAVIGATION
    *==================================================*/

    .navbar {

        display: none;

        position: absolute;

        top: 100%;

        left: 0;

        width: 100%;

        background: #ffffff;

        z-index: 999;

        max-height: calc(100vh - 95px);

        overflow-y: auto;

        box-shadow: 0 14px 28px rgba(0, 0, 0, 0.15);

    }


    .navbar.active {

        display: block;

    }


    .header .navbar > ul {

        flex-direction: column;

        align-items: flex-start;

        gap: 0;

    }


    .header .navbar > ul > li {

        width: 100%;

        border-bottom: 1px solid #ececec;

    }


    .header .navbar > ul > li > a {

        width: 100%;

        padding: 14px 5px;

        justify-content: space-between;

    }


    /*==================================================*
    *MOBILE DROPDOWN
    *==================================================*/

    .dropdown-menu {

        position: static;

        box-shadow: none;

        display: none;

        width: 100%;

        padding-left: 15px;

    }


    .dropdown.active .dropdown-menu {

        display: block;

    }

}

/* DIMENSIONS MEGA DROPDOWN — MOBILE */

.dropdown.active > .dimensions-dropdown-menu {

    display: block !important;

    position: static !important;

    grid-template-columns: 1fr !important;

    width: 100% !important;
    min-width: 0 !important;

    transform: none !important;
    left: auto !important;

    padding: 10px 0 !important;

    box-shadow: none !important;

    gap: 0 !important;

}

.nav-menu > li.dropdown > .dimensions-dropdown-menu li a {

    padding: 12px 20px !important;

    white-space: normal !important;

}

@media (max-width: 480px) {

    .dimensions-dropdown-menu li a {

        padding: 10px 16px !important;

        font-size: 14px !important;

    }

}


/*=========================================================
HERO SECTION
=========================================================*/

.hero {

    background: #17232f;
    padding: 90px 0 80px;
    position: relative;
    overflow: hidden;

}

.hero-container {

    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 80px;

}

/*==========================
LEFT
==========================*/

.hero-content {

    flex: 1;

}

.hero-top-text {

    display: inline-flex;
    align-items: center;
    gap: 10px;

    color: #f2a545;

    font-size: 15px;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;

    margin-bottom: 30px;

}

.hero-top-text i {

    font-size: 18px;

}

.hero-content h1 {

    color: #ffffff;

    font-size: 62px;
    font-weight: 700;
    line-height: 1.08;

    margin-bottom: 35px;

}

.hero-content h1 span {

    color: #f2a545;

}

.hero-content p {

    color: #d5dce2;

    font-size: 19px;

    line-height: 1.8;

    max-width: 700px;

    margin-bottom: 45px;

}

/*==========================
BUTTONS
==========================*/

.hero-buttons {

    display: flex;
    gap: 22px;

}

.catalogue-btn {

    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;

    padding: 18px 34px;

    border: 1px solid rgba(255, 255, 255, .25);

    color: #ffffff;

    border-radius: 6px;

    font-size: 17px;
    font-weight: 600;

    transition: .35s;

}

.catalogue-btn:hover {

    background: #ffffff;
    color: #17232f;

}

/*==========================
RIGHT IMAGE
==========================*/

.hero-image {

    flex: 1;
    display: flex;
    justify-content: flex-end;

}

.hero-image img {

    width: 100%;
    max-width: 620px;

}

/*=========================================================
TRUST BAR
=========================================================*/

.trust-bar {

    background: #101820;

    display: grid;

    grid-template-columns: repeat(4, 1fr);

}

.trust-box {

    border-right: 1px solid rgba(255, 255, 255, .08);

}

.trust-box:last-child {

    border-right: none;

}

.trust-box a {

    padding: 36px 20px;

    display: flex;

    flex-direction: column;

    align-items: center;

    text-align: center;

    transition: .35s;

}

.trust-box a:hover {

    background: #1f2a36;

}

.trust-box i {

    font-size: 42px;

    color: #f2a545;

    margin-bottom: 20px;

}

.trust-box h4 {

    color: #f2a545;

    font-size: 24px;

    margin-bottom: 12px;

    font-weight: 600;

}

.trust-box p {

    color: #ffffff;

    font-size: 18px;

}

/*=========================================================
  FLANGE RANGE
=========================================================*/

.flange-range {

    padding: 90px 0;
    background: #ffffff;

}

.section-number {

    display: block;
    color: #E97B12;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 3px;
    text-transform: uppercase;
    margin-bottom: 18px;

}

.flange-range h2 {

    font-size: 48px;
    font-weight: 700;
    color: #0f2235;
    margin-bottom: 22px;
    line-height: 1.15;

}

.flange-range .container{

    max-width: 1280px;

    margin: 0 auto;

}

.section-description {

    max-width: 850px;
    font-size: 19px;
    line-height: 1.9;
    color: #666;
    margin-bottom: 35px;

}

/*=========================
 Standards
=========================*/

.standard-links {

    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    margin-bottom: 55px;

}

.standard-links a {

    padding: 12px 22px;
    border: 1px solid #dddddd;
    border-radius: 4px;
    color: #0f2235;
    font-size: 15px;
    font-weight: 500;
    transition: .3s;

}

.standard-links a:hover {

    background: #ff6b00;
    color: #ffffff;
    border-color: #ff6b00;

}

/*=========================
 Grid
=========================*/

.flange-grid {

    display: grid;

    grid-template-columns: repeat(3, 1fr);

    gap: 38px;

}

/*=========================
 Card
=========================*/

.flange-card {

    background: #ffffff;

    border: 1px solid #ececec;

    border-radius: 10px;

    transition: .35s ease;

}

.flange-card:hover {

    transform: translateY(-8px);

    box-shadow: 0 12px 35px rgba(0, 0, 0, .08);

}

/*=========================
 Image
=========================*/

.flange-card img {

    width: 100%;

    height: 320px;

    object-fit: contain;

    background: #ffffff;

    padding: 15px;

}

/*=========================
 Content
=========================*/

.card-content {

    padding: 22px;

}

.card-content h3 {

    font-size: 22px;

    color: #0f2235;

    margin-bottom: 12px;

}

.card-content a {

    color: #ff6b00;

    font-weight: 600;

    display: inline-flex;

    align-items: center;

    gap: 8px;

}

.card-content a:hover {

    letter-spacing: .5px;

}

/*==================================================
MATERIALS
==================================================*/

.materials-section {

    padding: 120px 0;

    background:
        linear-gradient(rgba(15, 41, 66, .82),
            rgba(15, 41, 66, .90)),

        url("../Images/weld-neck-flange/materials-bg.jpg");

    background-size: cover;

    background-position: center;

    background-repeat: no-repeat;

}

.materials-section h2 {

    color: #ffffff;

    font-size: 62px;

    line-height: 1.15;

    max-width: 650px;

    margin-bottom: 25px;

}

.materials-section p {

    max-width: 700px;
    font-size: 18px;
    line-height: 1.8;
    color: #d5dbe2;

}

.materials-grid {

    display: grid;

    grid-template-columns: repeat(3, 1fr);

    gap: 35px;

    margin-top: 50px;

}

.material-card {

    display: block;

    text-decoration: none;

    border: 1px solid #e5e5e5;

    border-radius: 10px;

    overflow: hidden;

    transition: .35s;

    background: #fff;

}

.material-card:hover {

    transform: translateY(-8px);

    box-shadow: 0 18px 35px rgba(0, 0, 0, .08);

}

.material-card img {

    width: 100%;

    height: 260px;

    object-fit: cover;

}

.material-content {

    padding: 24px;

}

.material-content h3 {

    color: #0f2942;

    font-size: 16px;

    font-weight: 600;

    margin-bottom: 6px;

    line-height: 1.3;

}

.material-content .material-sub {

    font-size: 14px;

    color: #4b5563;

    font-weight: 600;

    margin-bottom: 14px;

    line-height: 1.3;

}

.material-content span {

    color: #ef7f1a;

    font-weight: 600;

    font-size: 16px;

}

.material-content i {

    margin-left: 8px;

    transition: .3s;

}

.material-card:hover i {

    margin-left: 14px;

}

/*==================================================
INDUSTRIES
==================================================*/

.industries-section {

    padding: 70px 0 40px;
    background: #f7f8fa;

}

.industries-grid {

    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 22px;
    margin-top: 45px;

}

.industry-box {

    display: flex;
    align-items: center;
    gap: 16px;

    padding: 22px;

    border: 1px solid #e8e8e8;

    text-decoration: none;

    color: #0f2942;

    transition: .35s;

    background: #fff;

}

.industry-box:hover {

    transform: translateY(-6px);

    box-shadow: 0 15px 35px rgba(0, 0, 0, .08);

    border-color: #ef7f1a;

}

.industry-box i {

    font-size: 28px;

    color: #ef7f1a;

    width: 38px;
    text-align: center;

}

.industry-box span {

    font-size: 17px;

    font-weight: 600;

    line-height: 1.5;

}

/*==================================================
GLOBAL EXPORT
==================================================*/

.export-section {

    padding: 70px 0 90px;

    background: #ffffff;

}

.export-container {

    display: grid;

    grid-template-columns: 1.1fr 1fr;

    gap: 70px;

    align-items: center;

}

.export-map img {

    width: 100%;

    max-width: 720px;

    margin: auto;

}

.export-content h2 {

    font-size: 46px;

    color: #0f2942;

    margin: 18px 0;

    line-height: 1.2;

}

.export-content .section-description {

    font-size: 18px;

    line-height: 1.8;

    color: #555;

    max-width: 560px;

}

.export-regions {

    display: grid;

    grid-template-columns: repeat(2, 1fr);

    gap: 18px;

    margin-top: 35px;

}

.export-regions div {

    display: flex;

    align-items: center;

    gap: 14px;

    font-size: 18px;

    font-weight: 600;

    color: #0f2942;

}

.export-regions i {

    color: #ef7f1a;

    font-size: 26px;

}

.export-counter {

    margin-top: 40px;

}

.export-counter h3 {

    font-size: 54px;

    color: #ef7f1a;

    margin-bottom: 5px;

}

.export-counter p {

    font-size: 18px;

    font-weight: 600;

    color: #555;

}

/*==================================================
WHY CHOOSE FERROBEND
==================================================*/

.why-section {

    padding: 90px 0;

    background: #15202B;

}

.why-container {

    display: grid;

    grid-template-columns: 1fr 1.2fr;

    gap: 70px;

    align-items: center;

}

.why-left h2 {

    font-size: 50px;

    color: #ffffff;

    margin: 18px 0;

    line-height: 1.2;

}

.why-left .section-description {

    color: #c9d2da;

    font-size: 18px;

    line-height: 1.9;

    max-width: 520px;

}

.why-btn {

    display: inline-block;

    margin-top: 35px;

    background: #ef7f1a;

    color: #fff;

    padding: 16px 34px;

    border-radius: 5px;

    font-weight: 600;

    transition: .3s;

}

.why-btn:hover {

    background: #ff9838;

}

.why-grid {

    display: grid;

    grid-template-columns: repeat(3, 1fr);

    gap: 22px;

}

.why-card {

    background: #ffffff;

    padding: 28px;

    text-decoration: none;

    border-radius: 6px;

    transition: .35s;

    border: 1px solid transparent;

    min-height: 205px;

    display: flex;

    flex-direction: column;

    justify-content: flex-start;

}

.why-card:hover{

    transform:translateY(-10px);

    border-color:#ef7f1a;

    box-shadow:0 25px 45px rgba(0,0,0,.15);

}

.why-card i{

    font-size:38px;

    color:#ef7f1a;

    margin-bottom:22px;

}

.why-card h3 {

    color: #0f2942;

    font-size: 20px;

    margin-bottom: 10px;

    line-height: 1.4;

}

.why-card p {

    color: #666;

    font-size: 15px;

    line-height: 1.7;

}

/*==================================================
CALL TO ACTION
==================================================*/

.cta-section {

    background: #c87c2c;

    padding: 90px 0;

    text-align: center;

}

.cta-section h2 {

    color: #ffffff;

    font-size: 54px;

    font-weight: 700;

    margin-bottom: 22px;

}

.cta-section p {

    color: #ffffff;

    font-size: 22px;

    line-height: 1.8;

    margin-bottom: 40px;

    opacity: .95;

}

.cta-btn {

    display: inline-block;

    background: #15202B;

    color: #ffffff;

    padding: 18px 42px;

    border-radius: 5px;

    font-size: 18px;

    font-weight: 600;

    transition: .3s;

}

.cta-btn i {

    margin-right: 10px;

}

.cta-btn:hover {

    background: #0f1720;

    transform: translateY(-3px);

}

/*==================================================
FOOTER
==================================================*/

.footer {

    background: #17232f;

    padding: 80px 0 25px;

    color: #fff;

}

.footer-grid {

    display: grid;

    grid-template-columns: repeat(5, 1fr);

    gap: 45px;

}

.footer-column h4 {

    color: #ef7f1a;

    font-size: 14px;

    letter-spacing: 2px;

    margin-bottom: 25px;

}

.footer-column ul li {

    margin-bottom: 14px;

}

.footer-column ul li a {

    color: #cfcfcf;

    font-size: 15px;

    transition: .3s;

}

.footer-column ul li a:hover {

    color: #ef7f1a;

}

.footer-contact p {

    display: flex;

    gap: 12px;

    margin-bottom: 18px;

    color: #d9d9d9;

    line-height: 1.7;

}

.footer-contact i {

    color: #ef7f1a;

    margin-top: 4px;

}

.footer-contact a {

    color: #d9d9d9;

}

.footer-social {

    display: flex;

    gap: 14px;

    margin: 25px 0;

}

.footer-social a {

    width: 50px;

    height: 50px;

    border: 2px solid #ef7f1a;

    display: flex;

    justify-content: center;

    align-items: center;

    border-radius: 8px;

    color: #ef7f1a;

    transition: .35s;

}

.footer-social a:hover {

    background: #ef7f1a;

    color: #ffffff;

    transform: translateY(-4px);

}

#liveDateTime {

    font-size: 17px;

    margin-top: 18px;

    color: #ffffff;

    line-height: 1.4;

}

.footer-bottom {

    margin-top: 60px;

    padding-top: 25px;

    border-top: 1px solid rgba(255, 255, 255, .1);

    display: flex;

    justify-content: space-between;

    align-items: center;

}

.footer-bottom p {

    color: #cfcfcf;

}

.footer-bottom div {

    display: flex;

    gap: 25px;

}

.footer-bottom a {

    color: #cfcfcf;

}

.footer-bottom a:hover {

    color: #ef7f1a;

}

/*==================================================
PRODUCT HERO
==================================================*/

.product-hero {

    background: #17232f;
    padding: 90px 0;
    overflow: hidden;

}

.product-hero-container {

    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 90px;

}

.product-hero-content {

    flex: 1;

}

.breadcrumb {

    display: flex;
    align-items: center;
    gap: 12px;

    margin-bottom: 28px;

    font-size: 15px;

}

.breadcrumb a {

    color: #ffffff;

}

.breadcrumb span {

    color: #ef7f1a;

}

.breadcrumb i {

    color: #888;

    font-size: 12px;

}

.product-hero h1 {

    font-size: 68px;

    color: #ffffff;

    line-height: 1.1;

    margin: 25px 0;

}

.product-hero p {

    color: #d9d9d9;

    font-size: 20px;

    line-height: 1.9;

    max-width: 700px;

}

.hero-certifications {

    display: grid;

    grid-template-columns: repeat(2, 1fr);

    gap: 15px;

    margin: 35px 0;

}

.hero-certifications span {

    color: #ffffff;

    font-size: 17px;

    font-weight: 500;

}

.hero-certifications i {

    color: #ef7f1a;

    margin-right: 10px;

}

/*==================================================
STANDARD BADGES
==================================================*/

.standard-badges {

    display: flex;

    flex-wrap: wrap;

    gap: 14px;

    margin-bottom: 40px;

}

.standard-badges a {

    display: inline-block;

    padding: 10px 18px;

    border: 1px solid rgba(255, 255, 255, .25);

    color: #ffffff !important;

    background: transparent;

    border-radius: 5px;

    font-size: 14px;

    font-weight: 400;

    line-height: normal;

    text-decoration: none !important;

    transition: .3s;

}

.standard-badges a:hover {

    background: #ef7f1a;

    border-color: #ef7f1a;

    color: #ffffff !important;

    text-decoration: none !important;

}
.product-hero-image {
    flex: 1;
    display: flex;
    justify-content: flex-end;
    align-items: center;
}

.product-hero-image img {
    width: 100%;
    max-width: 850px;
    height: auto;
    object-fit: contain;
}

.product-hero-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 90px;
}

/*==================================================
HERO ACTION BUTTONS
==================================================*/

.hero-actions {

    display: flex;

    align-items: center;

    gap: 16px;

    margin-top: 0;

}


.hero-actions a {

    display: inline-flex;

    align-items: center;

    justify-content: center;

    padding: 16px 26px;

    border-radius: 5px;

    font-size: 16px;

    font-weight: 600;

    text-decoration: none;

    transition: 0.3s ease;

}


/* REQUEST A QUOTE */

.hero-actions .quote-btn {

    background: #ef7f1a;

    color: #ffffff;

    border: 1px solid #ef7f1a;

}


.hero-actions .quote-btn:hover {

    background: #d96808;

    border-color: #d96808;

}


/* DOWNLOAD CATALOGUE */

.hero-actions .catalogue-btn {

    background: transparent;

    color: #ffffff;

    border: 1px solid rgba(255, 255, 255, 0.35);

}


.hero-actions .catalogue-btn:hover {

    background: #ffffff;

    color: #17232f;

    border-color: #ffffff;

}

/*=========================================================*
*PRODUCT HERO — MOBILE RESPONSIVE*
*=========================================================*/

@media (max-width: 768px) {

    .product-hero {
        padding: 60px 0 50px;
    }

    .product-hero-container {
        flex-direction: column;
        gap: 45px;
        align-items: stretch;
    }

    .product-hero-content {
        width: 100%;
    }

    .product-hero h1 {
        font-size: 40px;
        line-height: 1.15;
        margin: 20px 0;
    }

    .product-hero p {
        font-size: 16px;
        line-height: 1.75;
        max-width: 100%;
    }

    .hero-certifications {
        grid-template-columns: 1fr;
        gap: 14px;
        margin: 28px 0;
    }

    .hero-certifications span {
        font-size: 15px;
        line-height: 1.5;
    }

    .standard-badges {
        gap: 10px;
        margin-bottom: 30px;
    }

    .standard-badges span {
        padding: 8px 14px;
        font-size: 13px;
    }

    .hero-buttons {
        flex-direction: column;
        gap: 14px;
        width: 100%;
    }

    .hero-buttons a {
        width: 100%;
        justify-content: center;
        text-align: center;
    }

    .product-hero-image {
        width: 100%;
        justify-content: center;
    }

    .product-hero-image img {
        width: 100%;
        max-width: 520px;
    }

}

/*=========================================================*
*PRODUCT HERO — SMALL MOBILE*
*=========================================================*/

@media (max-width: 480px) {

    .product-hero {
        padding: 45px 0 40px;
    }

    .product-hero h1 {
        font-size: 34px;
    }

    .product-hero p {
        font-size: 15px;
        line-height: 1.7;
    }

    .hero-certifications span {
        font-size: 14px;
    }

    .standard-badges span {
        padding: 7px 12px;
        font-size: 12px;
    }

    .product-hero-image img {
        max-width: 100%;
    }

}

/*==================================================
WHAT IS WELD NECK FLANGE
==================================================*/

.what-is-section {

    padding: 100px 0;
    background: #ffffff;

}

.what-is-container {

    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 70px;
    align-items: center;

}

.what-is-image img {

    width: 100%;
    border-radius: 10px;

    box-shadow: 0 20px 45px rgba(0, 0, 0, .10);

}

.what-is-content h2 {

    font-size: 46px;
    color: #0f2942;
    margin: 18px 0 30px;

}

.what-is-content p {

    font-size: 18px;
    line-height: 1.9;
    color: #555;
    margin-bottom: 25px;

}

.what-is-content strong {

    color: #0f2942;
    font-weight: 700;

}

/*=========================================================*
*WHAT IS WELD NECK FLANGE — MOBILE RESPONSIVE*
*=========================================================*/

@media (max-width: 768px) {

    .what-is-section {
        padding: 60px 0;
    }

    .what-is-container {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .what-is-image {
        width: 100%;
    }

    .what-is-image img {
        width: 100%;
        border-radius: 8px;
    }

    .what-is-content {
        width: 100%;
    }

    .what-is-content h2 {
        font-size: 36px;
        line-height: 1.2;
        margin: 15px 0 25px;
    }

    .what-is-content p {
        font-size: 16px;
        line-height: 1.75;
        margin-bottom: 20px;
    }

}


/*=========================================================*
*WHAT IS WELD NECK FLANGE — SMALL MOBILE*
*=========================================================*/

@media (max-width: 480px) {

    .what-is-section {
        padding: 45px 0;
    }

    .what-is-container {
        gap: 30px;
    }

    .what-is-content h2 {
        font-size: 31px;
    }

    .what-is-content p {
        font-size: 15px;
        line-height: 1.7;
    }

}

/*==================================================
WHY INDUSTRY STANDARD
==================================================*/

.industry-standard {

    padding: 90px 0;
    background: #ffffff;

}

.industry-standard-container {

    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 70px;
    align-items: center;

}

.industry-image img {

    width: 100%;
    border-radius: 8px;

}

.industry-content h2 {

    font-size: 46px;
    color: #0f2942;
    margin: 20px 0 30px;
    line-height: 1.25;

}

.industry-content p {

    font-size: 18px;
    line-height: 1.9;
    color: #555;
    margin-bottom: 22px;

}

.industry-content strong {

    color: #0f2942;
    font-weight: 600;

}

.industry-features {

    margin-top: 35px;

    display: grid;

    gap: 18px;

}

.feature-item {

    display: flex;

    gap: 18px;

    align-items: flex-start;

}

.feature-item i {

    width: 52px;
    height: 52px;

    background: #ef7f1a;

    color: #fff;

    border-radius: 50%;

    display: flex;

    justify-content: center;

    align-items: center;

    font-size: 20px;

    flex-shrink: 0;

}

.feature-item h4 {

    font-size: 20px;

    color: #0f2942;

    margin-bottom: 6px;

}

.feature-item p {

    margin: 0;

    font-size: 16px;

    color: #666;

    line-height: 1.7;

}

/*=========================================================*
*WHY INDUSTRY STANDARD — MOBILE RESPONSIVE*
*=========================================================*/

@media (max-width: 768px) {

    .industry-standard {
        padding: 60px 0;
    }

    .industry-standard-container {
        grid-template-columns: 1fr;
        gap: 45px;
    }

    .industry-image {
        width: 100%;
    }

    .industry-image img {
        width: 100%;
        border-radius: 8px;
    }

    .industry-features {
        margin-top: 30px;
        gap: 18px;
    }

    .feature-item {
        gap: 14px;
    }

    .feature-item i {
        width: 46px;
        height: 46px;
        font-size: 18px;
    }

    .feature-item h4 {
        font-size: 17px;
        line-height: 1.4;
        margin-bottom: 5px;
    }

    .feature-item p {
        font-size: 14px;
        line-height: 1.6;
    }

    .industry-content {
        width: 100%;
    }

    .industry-content h2 {
        font-size: 35px;
        line-height: 1.2;
        margin: 15px 0 25px;
    }

    .industry-content p {
        font-size: 16px;
        line-height: 1.75;
        margin-bottom: 20px;
    }

}


/*=========================================================*
*WHY INDUSTRY STANDARD — SMALL MOBILE*
*=========================================================*/

@media (max-width: 480px) {

    .industry-standard {
        padding: 45px 0;
    }

    .industry-standard-container {
        gap: 35px;
    }

    .industry-content h2 {
        font-size: 30px;
    }

    .industry-content p {
        font-size: 15px;
        line-height: 1.7;
    }

    .feature-item {
        gap: 12px;
    }

    .feature-item i {
        width: 42px;
        height: 42px;
        font-size: 16px;
    }

    .feature-item h4 {
        font-size: 16px;
    }

    .feature-item p {
        font-size: 13px;
    }

}

/*==================================================
DESIGN & CONSTRUCTION
==================================================*/

.design-construction {

    padding: 100px 0;

    background: #f8f9fb;

}

.design-container {

    display: grid;

    grid-template-columns: 1fr 1fr;

    gap: 80px;

    align-items: center;

}

.design-content h2 {

    font-size: 46px;

    color: #0f2942;

    margin: 20px 0 30px;

    line-height: 1.2;

}

.design-content p {

    font-size: 18px;

    line-height: 1.9;

    color: #555;

    margin-bottom: 22px;

}

.design-content strong {

    color: #0f2942;

    font-weight: 600;

}

.design-list {

    margin-top: 30px;

}

.design-list li {

    position: relative;

    padding-left: 38px;

    margin-bottom: 18px;

    font-size: 18px;

    color: #333;

    line-height: 1.7;

}

.design-list li::before {

    content: "✓";

    position: absolute;

    left: 0;

    top: 0;

    width: 24px;

    height: 24px;

    border-radius: 50%;

    background: #ef7f1a;

    color: #fff;

    display: flex;

    justify-content: center;

    align-items: center;

    font-size: 14px;

    font-weight: 700;

}

.design-image {

    display: flex;
    justify-content: center;
    align-items: center;

}

.design-image img {

    width: 100%;
    max-width: 1500px;
    border-radius: 10px;

}

/*=========================================================*
*DESIGN & CONSTRUCTION — MOBILE RESPONSIVE*
*=========================================================*/

@media (max-width: 768px) {

    .design-construction {
        padding: 60px 0;
    }

    .design-container {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .design-content {
        width: 100%;
    }

    .design-content h2 {
        font-size: 35px;
        line-height: 1.2;
        margin: 15px 0 25px;
    }

    .design-content p {
        font-size: 16px;
        line-height: 1.75;
        margin-bottom: 20px;
    }

    .design-list {
        margin-top: 25px;
        padding-left: 0;
    }

    .design-list li {
        padding-left: 34px;
        margin-bottom: 15px;
        font-size: 16px;
        line-height: 1.65;
    }

    .design-list li::before {
        width: 23px;
        height: 23px;
        font-size: 13px;
    }

    .design-image {
        width: 100%;
    }

    .design-image img {
        width: 100%;
        max-width: 100%;
        border-radius: 8px;
    }

}


/*=========================================================*
*DESIGN & CONSTRUCTION — SMALL MOBILE*
*=========================================================*/

@media (max-width: 480px) {

    .design-construction {
        padding: 45px 0;
    }

    .design-container {
        gap: 30px;
    }

    .design-content h2 {
        font-size: 30px;
    }

    .design-content p {
        font-size: 15px;
        line-height: 1.7;
    }

    .design-list li {
        padding-left: 32px;
        font-size: 15px;
    }

    .design-list li::before {
        width: 21px;
        height: 21px;
        font-size: 12px;
    }

}

/*==================================================
ADVANTAGES
==================================================*/

.advantages-section {

    padding: 100px 0;
    background: #ffffff;

}

.advantages-container {

    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 70px;
    align-items: center;

}

.advantages-content h2 {

    font-size: 46px;
    color: #0f2942;
    margin: 18px 0 28px;
    line-height: 1.2;

}

.advantages-content p {

    font-size: 18px;
    line-height: 1.9;
    color: #555;
    margin-bottom: 35px;

}

.advantages-content strong {

    color: #0f2942;
    font-weight: 600;

}

.advantages-list {

    display: grid;
    grid-template-columns: 1fr;
    gap: 18px;

}

.advantages-list div {

    display: flex;
    align-items: flex-start;
    gap: 14px;

    font-size: 18px;
    color: #333;
    line-height: 1.6;

}

.advantages-list i {

    color: #ef7f1a;
    font-size: 22px;
    margin-top: 2px;

}

.advantages-image {

    text-align: center;

}

.advantages-image img {

    width: 100%;
    max-width: 900px;
    border-radius: 10px;
    box-shadow: 0 20px 45px rgba(0, 0, 0, .12);

}

/*=========================================================*
*ADVANTAGES — MOBILE RESPONSIVE*
*=========================================================*/

@media (max-width: 768px) {

    .advantages-section {
        padding: 60px 0;
    }

    .advantages-container {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .advantages-content {
        width: 100%;
    }

    .advantages-content h2 {
        font-size: 35px;
        line-height: 1.2;
        margin: 15px 0 25px;
    }

    .advantages-content p {
        font-size: 16px;
        line-height: 1.75;
        margin-bottom: 28px;
    }

    .advantages-list {
        gap: 15px;
    }

    .advantages-list div {
        gap: 12px;
        font-size: 16px;
        line-height: 1.6;
    }

    .advantages-list i {
        font-size: 20px;
        margin-top: 2px;
        flex-shrink: 0;
    }

    .advantages-image {
        width: 100%;
    }

    .advantages-image img {
        width: 100%;
        max-width: 100%;
        border-radius: 8px;
    }

}


/*=========================================================*
*ADVANTAGES — SMALL MOBILE*
*=========================================================*/

@media (max-width: 480px) {

    .advantages-section {
        padding: 45px 0;
    }

    .advantages-container {
        gap: 30px;
    }

    .advantages-content h2 {
        font-size: 30px;
    }

    .advantages-content p {
        font-size: 15px;
        line-height: 1.7;
    }

    .advantages-list {
        gap: 13px;
    }

    .advantages-list div {
        font-size: 15px;
    }

    .advantages-list i {
        font-size: 18px;
    }

}

/*==================================================
TECHNICAL SPECIFICATIONS
==================================================*/

.technical-specs {

    position: relative;
    overflow: hidden;

    padding: 100px 0;

    background:
        linear-gradient(rgba(255, 255, 255, .18),
            rgba(255, 255, 255, .25)),
        url("../images/weld-neck-flange/weld-neck-spec-bg.jpg");

    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;

}

.technical-specs .container {

    position: relative;

    z-index: 2;

}

.spec-layout {

    max-width: 1200px;

    margin: 0 auto;

}

.spec-left {

    width: 100%;

    max-width: 1000px;

    margin: 0 auto;

}

.spec-left h3 {

    font-size: 30px;

    color: #0F2942;

    margin: 40px 0 22px;

}

.technical-specs h2 {

    font-size: 60px;

    line-height: 1.15;

    color: #0f2942;

    margin: 20px 0 70px;

    text-align: center;

}


.dimension-btn-wrapper {

    display: flex;

    justify-content: center;

}

.dimension-btn:hover {

    background: #ff6b00;

    border-color: #ff6b00;

    color: #fff;

    transform: translateY(-6px);

    box-shadow: 0 22px 45px rgba(255, 107, 0, .28);

}

.dimension-btn i {

    transition: .35s;

    font-size: 18px;

}

.dimension-btn:hover i {

    transform: translateX(8px);

}

.section-number {

    display: block;

    text-align: center;

    color: #ff6b00;

    font-size: 14px;

    letter-spacing: 5px;

    font-weight: 700;

    margin-bottom: 18px;

    text-transform: uppercase;

}


/*========================================
NEW TECHNICAL LAYOUT
========================================*/

.standard-list {

    display: flex;

    flex-wrap: wrap;

    gap: 14px;

    margin: 25px 0 45px;

}

.standard-list a {

    display: flex;

    align-items: center;

    justify-content: center;

    min-width: 170px;

    min-height: 58px;

    padding: 0 22px;

    background: rgba(255,255,255,.92);

    border: 1.5px solid #0F2942;

    border-radius: 10px;

    text-decoration: none;

    font-size: 15px;

    font-weight: 700;

    color: #0F2942;

    transition: all .3s ease;

}

.standard-list a:hover {

    background: #ff6b00;

    border-color: #ff6b00;

    color: #ffffff;

    transform: translateY(-4px);

    box-shadow: 0 10px 25px rgba(255,107,0,.22);

}

/*==================================================*
*PRESSURE RATINGS*
*==================================================*/

.pressure-spec-row {

    display: grid;

    grid-template-columns: 1fr 1fr;

    align-items: center;

    width: 100%;

    min-height: 70px;

    padding: 0 28px;

    box-sizing: border-box;

    background: rgba(255, 255, 255, .92);

    border-bottom: 1px solid rgba(15, 41, 66, .12);

    color: #0F2942;

    font-size: 17px;

    font-weight: 600;
}


/* HEADER */

.pressure-head {

    min-height: 78px;

    background: #0F2942;

    color: #ffffff;

    border-radius: 14px 14px 0 0;

    border-bottom: none;

    font-weight: 700;
}


/* LEFT COLUMN */

.pressure-spec-row span:first-child {

    text-align: left;
}


/* RIGHT COLUMN */

.pressure-spec-row span:last-child,
.pressure-spec-row strong {

    text-align: right;

    justify-self: end;
}


/* LAST ROW */

.pressure-spec-row:last-child {

    border-radius: 0 0 14px 14px;

    border-bottom: none;
}


/* PRESSURE TABLE WRAPPER */

.pressure-spec-row {

    border-left: 1.5px solid #0F2942;

    border-right: 1.5px solid #0F2942;
}

.pressure-head {

    border-top: 1.5px solid #0F2942;
}


.spec-bottom {

    display: flex !important;

    flex-direction: row !important;

    flex-wrap: nowrap !important;

    justify-content: center;

    align-items: stretch;

    gap: 28px;

    width: 100%;

    max-width: 760px;

    margin: 50px auto 0;

}

.dimension-btn {

    display: flex;

    align-items: center;

    justify-content: center;

    gap: 14px;

    width: fit-content;

    margin: 65px auto 0;

    padding: 20px 38px;

    background: #0F2942;

    color: #ffffff;

    text-decoration: none;

    font-size: 17px;

    font-weight: 700;

    border-radius: 12px;

    border: 2px solid #0F2942;

    box-shadow:
        0 12px 30px rgba(15,41,66,.18);

    transition: all .35s ease;

}

/*==================================================
SPECIFICATION CARDS
==================================================*/

.spec-card {

    flex: 0 0 340px;

    width: 340px;

    min-height: 170px;

    padding: 28px 30px;

    box-sizing: border-box;

    display: flex;

    flex-direction: column;

    justify-content: space-between;

    background: linear-gradient(
        135deg,
        #ffffff,
        #f7f9fc
    );

    border: 1px solid rgba(15, 41, 66, .10);

    border-top: 4px solid #ff6b00;

    border-radius: 16px;

    text-decoration: none;

    box-shadow:
        0 12px 30px rgba(15, 41, 66, .10);

    transition:
        transform .3s ease,
        box-shadow .3s ease;

}

.spec-card:hover {

    transform: translateY(-8px);

    box-shadow: 0 20px 45px rgba(15, 41, 66, .15);

}

.spec-card h3 {

    font-size: 26px;

    color: #0F2942;

    margin: 0 0 14px;

}

.spec-card p {

    font-size: 18px;

    color: #5b6673;

    line-height: 1.7;

    margin: 0 0 25px;

}

.flange-options {

    display: flex;

    align-items: center;

    flex-wrap: wrap;

    gap: 8px;

    margin: 0 0 22px;

}

.flange-options a {

    color: #0F2942;

    font-size: 19px;

    font-weight: 700;

    text-decoration: none;

    transition: color .25s ease;

}

.flange-options a:hover {

    color: #ff6b00;

}

.flange-options span {

    color: #ff6b00;

    font-weight: 700;

}
.spec-card span {

    display: flex;

    align-items: center;

    gap: 10px;

    color: #ff6b00;

    font-weight: 700;

    font-size: 17px;

}

.spec-card:hover span {

    letter-spacing: .5px;

}

.spec-card i {

    transition: .35s;

}

.spec-card:hover i {

    transform: translateX(8px);

}

.spec-card-link {

    display: inline-flex;

    align-items: center;

    gap: 8px;

    width: fit-content;

    padding: 10px 18px;

    background: #ff6b00;

    color: #ffffff;

    border-radius: 6px;

    text-decoration: none;

    font-size: 14px;

    font-weight: 700;

    transition: all .3s ease;

}

.spec-card-link:hover {

    background: #e85f00;

    transform: translateY(-3px);

}

.spec-card-link i {

    transition: transform .3s ease;

}

.spec-card-link:hover i {

    transform: translateX(5px);

}

/* PRESSURE RATINGS TITLE */

.pressure-title {
    text-align: center;
    font-size: 30px;
    color: #0F2942;
    margin: 45px 0 22px;
}

/*==================================================*
*TECHNICAL SPECIFICATIONS — MOBILE*
*==================================================*/

@media (max-width: 768px) {

    /* SECTION */

    .technical-specs {

        padding: 70px 0;

        background-position: center center;

    }


    /* SECTION NUMBER */

    .technical-specs .section-number {

        font-size: 11px;

        letter-spacing: 3px;

        margin-bottom: 14px;

    }


    /* MAIN HEADING */

    .technical-specs h2 {

        font-size: 38px;

        line-height: 1.2;

        margin: 15px 0 45px;

        padding: 0 15px;

    }


    /* MAIN LAYOUT */

    .spec-layout {

        width: 100%;

        max-width: 100%;

    }


    /* LEFT CONTENT */

    .spec-left {

        width: 100%;

        max-width: 100%;

    }


    /* SUB HEADINGS */

    .spec-left h3,
    .pressure-title {

        font-size: 25px;

        line-height: 1.3;

        margin: 30px 0 18px;

    }


    /* DIMENSIONAL STANDARDS */

    .standard-list {

        display: grid;

        grid-template-columns: repeat(2, 1fr);

        gap: 12px;

        margin: 20px 0 35px;

    }


    .standard-list a {

        min-width: 0;

        min-height: 54px;

        padding: 10px 12px;

        font-size: 13px;

        text-align: center;

    }


    /* PRESSURE TABLE */

    .pressure-spec-row {

        grid-template-columns: 1fr 1fr;

        min-height: 62px;

        padding: 12px 16px;

        font-size: 13px;

        gap: 10px;

    }


    .pressure-head {

        min-height: 65px;

        font-size: 13px;

    }


    .pressure-spec-row span:last-child,
    .pressure-spec-row strong {

        text-align: right;

        justify-self: end;

    }


    /* SPECIFICATION CARDS */

    .spec-bottom {

        display: grid !important;

        grid-template-columns: 1fr;

        gap: 20px;

        width: 100%;

        max-width: 100%;

        margin: 35px auto 0;

    }


    .spec-card {

        width: 100%;

        min-height: 170px;

        padding: 25px;

    }


    .spec-card h3 {

        font-size: 23px;

    }


    .spec-card p {

        font-size: 16px;

    }


    .flange-options {

        gap: 6px;

    }


    .flange-options a {

        font-size: 17px;

    }


    .spec-card-link {

        font-size: 13px;

        padding: 9px 15px;

    }


    /* DIMENSION BUTTON */

    .dimension-btn {

        width: calc(100% - 30px);

        max-width: 420px;

        margin: 40px auto 0;

        padding: 16px 20px;

        font-size: 14px;

        line-height: 1.5;

        text-align: center;

    }


    .dimension-btn i {

        font-size: 15px;

    }

}


/*==================================================*
*TECHNICAL SPECIFICATIONS — SMALL MOBILE*
*==================================================*/

@media (max-width: 480px) {

    .technical-specs {

        padding: 60px 0;

    }


    .technical-specs h2 {

        font-size: 32px;

        margin-bottom: 35px;

    }


    .standard-list {

        grid-template-columns: 1fr 1fr;

        gap: 10px;

    }


    .standard-list a {

        min-height: 50px;

        font-size: 12px;

        padding: 8px 6px;

    }


    .spec-left h3,
    .pressure-title {

        font-size: 23px;

    }


    .pressure-spec-row {

        font-size: 12px;

        padding: 11px 12px;

    }


    .pressure-head {

        font-size: 12px;

    }


    .spec-card {

        padding: 22px;

        min-height: 160px;

    }


    .spec-card h3 {

        font-size: 21px;

    }


    .spec-card p {

        font-size: 15px;

    }


    .flange-options a {

        font-size: 16px;

    }


    .dimension-btn {

        width: calc(100% - 24px);

        padding: 15px 16px;

        font-size: 13px;

    }

}

/*==================================================*
*MATERIALS WE OFFER*
*==================================================*/

.materials-section {

    position: relative;

    padding: 120px 0;

    overflow: hidden;

    background:
        linear-gradient(
            rgba(15, 41, 66, .28),
            rgba(15, 41, 66, .42)
        ),
        url("../images/weld-neck-flange/materials-bg.jpg");

    background-size: cover;

    background-position: right center;

    background-repeat: no-repeat;

}


/*==================================================*
*BACKGROUND GRID + GLOW
*==================================================*/

.materials-section::before {

    content: "";

    position: absolute;

    inset: 0;

    background-image:

        linear-gradient(
            rgba(255, 255, 255, .09) 1px,
            transparent 1px
        ),

        linear-gradient(
            90deg,
            rgba(255, 255, 255, .09) 1px,
            transparent 1px
        );

    background-size: 45px 45px;

    opacity: .75;

    pointer-events: none;

}


.materials-section::after {

    content: "";

    position: absolute;

    inset: 0;

    background:
        radial-gradient(
            circle at left bottom,
            rgba(255, 255, 255, .08),
            transparent 45%
        );

    pointer-events: none;

}


/*==================================================*
*CONTAINER
*==================================================*/

.materials-section .container {

    position: relative;

    z-index: 2;

}


/*==================================================*
*SECTION NUMBER
*==================================================*/

.materials-section .section-number {

    color: #ff6b00;

}


/*==================================================*
*HEADING
*==================================================*/

.materials-section h2 {

    color: #ffffff;

    font-size: 58px;

    line-height: 1.15;

    text-align: center;

    margin-bottom: 25px;

}


/*==================================================*
*SUBTITLE
*==================================================*/

.materials-subtitle {

    max-width: 720px;

    margin: 30px auto 70px;

    text-align: center;

    font-size: 20px;

    line-height: 1.9;

    color: rgba(255, 255, 255, .88);

    font-weight: 400;

}


.materials-subtitle strong {

    color: #ffffff;

    font-weight: 700;

}


/*==================================================*
*MATERIAL GRID
*==================================================*/

.materials-grid {

    display: grid;

    grid-template-columns: repeat(3, 1fr);

    gap: 30px;

}


/*==================================================*
*MATERIAL CARD
*==================================================*/

.material-card {

    display: flex;

    align-items: center;

    gap: 22px;

    background: #ffffff;

    padding: 28px;

    border-radius: 18px;

    border-top: 4px solid #ff6b00;

    text-decoration: none;

    box-shadow: 0 18px 45px rgba(0, 0, 0, .18);

    transition: .35s;

}


/*==================================================*
*MATERIAL ICON
*==================================================*/

.material-icon {

    width: 70px;

    height: 70px;

    border-radius: 16px;

    background: #eef5ff;

    display: flex;

    justify-content: center;

    align-items: center;

    flex-shrink: 0;

}


.material-icon i {

    font-size: 28px;

    color: #1d4f91;

}


/*==================================================*
*MATERIAL INFORMATION
*==================================================*/

.material-info {

    flex: 1;

}


.material-info h3 {

    font-size: 24px;

    color: #0f2942;

    margin-bottom: 10px;

    line-height: 1.3;

}


.material-info p {

    font-size: 17px;

    line-height: 1.7;

    color: #666;

}


.material-info strong {

    color: #ff6b00;

}


/*==================================================*
*ARROW
*==================================================*/

.material-arrow {

    width: 48px;

    height: 48px;

    border-radius: 50%;

    background: #f4f6fa;

    display: flex;

    justify-content: center;

    align-items: center;

    flex-shrink: 0;

    transition: .35s;

}


.material-arrow i {

    color: #0f2942;

    font-size: 18px;

    transition: .35s;

}


/*==================================================*
*CARD HOVER
*==================================================*/

.material-card:hover {

    transform: translateY(-8px);

    box-shadow: 0 30px 60px rgba(0, 0, 0, .28);

}


.material-card:hover .material-arrow {

    background: #ff6b00;

}


.material-card:hover .material-arrow i {

    color: #ffffff;

    transform: translateX(5px);

}


/*==================================================*
*TABLET
*==================================================*/

@media (max-width: 1100px) {

    .materials-grid {

        grid-template-columns: repeat(2, 1fr);

    }

}


/*==================================================*
*MOBILE
*==================================================*/

@media (max-width: 768px) {

    .materials-grid {

        grid-template-columns: 1fr;

    }

    .materials-section h2 {

        font-size: 38px;

    }

}
   
/* ==============================
   TESTING & CERTIFICATION
============================== */

.qa-section {
    margin-top: 40px;
    padding: 60px 20px;                 
    background-color: #fafbfc;      
    background-image: radial-gradient(circle, #94a0ac 2px, transparent 2px);  
    background-size: 20px 20px;       
}

.qa-card {

    background-color: #0a2540;

    color: #ffffff;

    padding: 30px;

    border-radius: 12px;

    max-width: 850px;

    margin: auto;

    box-shadow: 0 8px 20px rgba(0,0,0,0.15);

}


.qa-card h2 {

    color: #ffffff;

    font-size: 28px;

    margin-bottom: 15px;

}


.qa-card p {

    font-size: 17px;

    line-height: 1.6;

    margin-bottom: 20px;

}


.qa-card ul {

    list-style: none;

    padding: 0;

}


.qa-card ul li {

    font-size: 17px;

    margin-bottom: 10px;

}


.qa-card ul li::before {

    content: "✓ ";

    font-weight: bold;

}


.qa-card a {

    display: inline-block;

    margin-top: 20px;

    color: #ffffff;

    border: 1px solid #ffffff;

    padding: 12px 22px;

    border-radius: 6px;

    text-decoration: none;

    font-weight: 600;

}


.qa-card a:hover {

    background: #ffffff;

    color: #0a2540;

}

/*==================================================*
*TESTING & CERTIFICATION — MOBILE*
*==================================================*/

@media (max-width: 768px) {

    .qa-section {

        margin-top: 30px;

        padding: 55px 15px;

        background-size: 18px 18px;

    }


    .qa-card {

        padding: 28px 22px;

        border-radius: 10px;

        max-width: 100%;

    }


    .qa-card h2 {

        font-size: 25px;

        line-height: 1.3;

        margin-bottom: 14px;

    }


    .qa-card p {

        font-size: 16px;

        line-height: 1.7;

        margin-bottom: 22px;

    }


    .qa-card ul {

        margin: 0;

    }


    .qa-card ul li {

        font-size: 15px;

        line-height: 1.6;

        margin-bottom: 13px;

        padding-left: 2px;

    }


    .qa-card a {

        margin-top: 18px;

        padding: 11px 17px;

        font-size: 14px;

        line-height: 1.5;

    }

}


/*==================================================*
*TESTING & CERTIFICATION — SMALL MOBILE*
*==================================================*/

@media (max-width: 480px) {

    .qa-section {

        padding: 45px 12px;

    }


    .qa-card {

        padding: 24px 18px;

    }


    .qa-card h2 {

        font-size: 23px;

    }


    .qa-card p {

        font-size: 15px;

        line-height: 1.7;

    }


    .qa-card ul li {

        font-size: 14px;

        line-height: 1.6;

    }


    .qa-card a {

        display: block;

        width: 100%;

        box-sizing: border-box;

        text-align: center;

        font-size: 13px;

    }

}

/* ==============================
   CALL TO ACTION
============================== */

.cta-section {
    background-color: #d4822f;   
    padding: 70px 20px;
    text-align: center;
}

.cta-section h2 {
    color: #ffffff;
    font-size: 42px;
    font-weight: 800;
    margin-bottom: 15px;
}

.cta-section p {
    color: #ffffff;
    font-size: 20px;
    margin-bottom: 30px;
    opacity: 0.95;
}

.cta-btn-group {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
}

.cta-btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background-color: #0a2540;
    color: #ffffff;
    padding: 14px 28px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 700;
    font-size: 17px;
}

.cta-btn-primary:hover {
    background-color:#ffffff;
    color: #d4822f;
}

.cta-btn-secondary {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background-color: #0a2540;
    color: #ffffff;
    padding: 14px 28px;
    border-radius: 8px;
    border: 2px solid #0a2540;
    text-decoration: none;
    font-weight: 700;
    font-size: 17px;
}

.cta-btn-secondary:hover {
    background-color: #ffffff;
    color: #d4822f;
}

/*==================================================*
*CALL TO ACTION — MOBILE*
*==================================================*/

@media (max-width: 768px) {

    .cta-section {

        padding: 60px 15px;

    }


    .cta-section h2 {

        font-size: 34px;

        line-height: 1.25;

        margin-bottom: 15px;

    }


    .cta-section p {

        font-size: 17px;

        line-height: 1.6;

        margin-bottom: 28px;

    }


    .cta-btn-group {

        flex-direction: column;

        align-items: center;

        gap: 12px;

    }


    .cta-btn {

        width: 100%;

        max-width: 360px;

        box-sizing: border-box;

        justify-content: center;

        text-align: center;

        padding: 14px 20px;

        font-size: 15px;

    }

}


/*==================================================*
*CALL TO ACTION — SMALL MOBILE*
*==================================================*/

@media (max-width: 480px) {

    .cta-section {

        padding: 50px 12px;

    }


    .cta-section h2 {

        font-size: 29px;

        line-height: 1.25;

    }


    .cta-section p {

        font-size: 15px;

    }


    .cta-btn {

        max-width: 100%;

        padding: 13px 18px;

        font-size: 14px;

    }

}

/*==================================================
FOOTER
==================================================*/

.footer {

    background: #17232f;

    padding: 80px 0 25px;

    color: #fff;

}

.footer-grid {

    display: grid;

    grid-template-columns: repeat(5, 1fr);

    gap: 45px;

}

.footer-column h4 {

    color: #ef7f1a;

    font-size: 14px;

    letter-spacing: 2px;

    margin-bottom: 25px;

}

.footer-column ul li {

    margin-bottom: 14px;

}

.footer-column ul li a {

    color: #cfcfcf;

    font-size: 15px;

    transition: .3s;

}

.footer-column ul li a:hover {

    color: #ef7f1a;

}

.footer-contact p {

    display: flex;

    gap: 12px;

    margin-bottom: 18px;

    color: #d9d9d9;

    line-height: 1.7;

}

.footer-contact i {

    color: #ef7f1a;

    margin-top: 4px;

}

.footer-contact a {

    color: #d9d9d9;

}

.footer-social {

    display: flex;

    gap: 14px;

    margin: 25px 0;

}

.footer-social a {

    width: 50px;

    height: 50px;

    border: 2px solid #ef7f1a;

    display: flex;

    justify-content: center;

    align-items: center;

    border-radius: 8px;

    color: #ef7f1a;

    transition: .35s;

}

.footer-social a:hover {

    background: #ef7f1a;

    color: #ffffff;

    transform: translateY(-4px);

}

#liveDateTime {

    font-size: 17px;

    margin-top: 18px;

    color: #ffffff;

    line-height: 1.4;

}



.footer-bottom {

    margin-top: 60px;

    padding-top: 25px;

    border-top: 1px solid rgba(255, 255, 255, .1);

    display: flex;

    justify-content: space-between;

    align-items: center;

}

.footer-bottom p {

    color: #cfcfcf;

}

.footer-bottom div {

    display: flex;

    gap: 25px;

}

.footer-bottom a {

    color: #cfcfcf;

}

.footer-bottom a:hover {

    color: #ef7f1a;

}

/*==================================================*
*FOOTER — MOBILE*
*==================================================*/

@media (max-width: 900px) {

    .footer {

        padding: 65px 20px 25px;

    }


    .footer-grid {

        grid-template-columns: repeat(2, 1fr);

        gap: 45px 30px;

    }


    .footer-contact {

        grid-column: 1 / -1;

    }

}


/*==================================================*
*FOOTER — SMALL MOBILE*
*==================================================*/

@media (max-width: 600px) {

    .footer {

        padding: 55px 18px 22px;

    }


    .footer-grid {

        grid-template-columns: 1fr;

        gap: 38px;

    }


    .footer-column h4 {

        font-size: 13px;

        letter-spacing: 1.8px;

        margin-bottom: 20px;

    }


    .footer-column ul li {

        margin-bottom: 11px;

    }


    .footer-column ul li a {

        font-size: 14px;

    }


    .footer-contact {

        grid-column: auto;

    }


    .footer-contact p {

        font-size: 14px;

        line-height: 1.6;

        gap: 10px;

        margin-bottom: 16px;

    }


    .footer-contact i {

        flex-shrink: 0;

    }


    .footer-social {

        gap: 10px;

        margin: 22px 0;

        flex-wrap: wrap;

    }


    .footer-social a {

        width: 44px;

        height: 44px;

        border-width: 1.5px;

    }


    #liveDateTime {

        font-size: 14px;

        line-height: 1.5;

        margin-top: 15px;

    }


    .footer-bottom {

        margin-top: 40px;

        padding-top: 22px;

        display: flex;

        flex-direction: column;

        align-items: flex-start;

        gap: 18px;

    }


    .footer-bottom p {

        font-size: 13px;

        line-height: 1.6;

        margin: 0;

    }


    .footer-bottom div {

        display: flex;

        flex-wrap: wrap;

        gap: 10px 18px;

    }


    .footer-bottom a {

        font-size: 13px;

    }

}

/* ===========================
FIX MATERIAL CARDS
=========================== */

.material-card{
    display:block !important;
}

.material-content{
    display:block !important;
    position:relative !important;
    opacity:1 !important;
    visibility:visible !important;
    z-index:2 !important;
    padding:24px !important;
}

.material-content h3{
    display:block !important;
    color:#0F2942 !important;
    font-size:16px !important;
    font-weight:600 !important;
    margin-bottom:16px !important;
}

.material-content span{
    display:inline-flex !important;
    align-items:center;
    color:#ef7f1a !important;
    font-size:16px !important;
    font-weight:600 !important;
}

.material-content i{
    color:#ef7f1a !important;
}

/*==================================================
FLOATING WHATSAPP
==================================================*/

.whatsapp-float{

    position:fixed;

    right:30px;

    bottom:30px;

    width:65px;

    height:65px;

    border-radius:50%;

    background:#25D366;

    display:flex;

    align-items:center;

    justify-content:center;

    text-decoration:none;

    box-shadow:0 12px 30px rgba(37,211,102,.35);

    z-index:9999;

    transition:.35s ease;

}

.whatsapp-float i{

    color:#ffffff;

    font-size:34px;

}

.whatsapp-float:hover{

    transform:translateY(-6px) scale(1.08);

    box-shadow:0 18px 38px rgba(37,211,102,.45);

}

/*=========================================================
  TOP BAR — MOBILE RESPONSIVE
=========================================================*/

@media (max-width: 768px) {

    .top-bar {
        height: auto;
        padding: 8px 0;
    }

    .top-bar-container {
        height: auto;
        flex-direction: column;
        justify-content: center;
        gap: 6px;
        text-align: center;
    }

    .top-left,
    .top-right {
        width: 100%;
        justify-content: center;
        flex-wrap: wrap;
        gap: 6px 14px;
    }

    .top-left a,
    .top-right a {
        font-size: 11px;
        line-height: 1.4;
    }

    .top-right i {
        margin-right: 4px;
    }

}

/*=========================================================
  HEADER — MOBILE RESPONSIVE
=========================================================*/

.menu-toggle {
    display: none;
}


@media (max-width: 768px) {

    /* LOGO */

    .logo {
        flex: 0 0 auto;
    }

    .logo img {
        width: 145px;
    }


    /* HIDE DESKTOP NAVIGATION */

    .navbar {
        display: none;
    }


    /* HIDE DESKTOP RIGHT BUTTONS */

    .header-right {
        display: none;
    }


    /* MOBILE MENU BUTTON */

    .menu-toggle {
        display: flex;

        align-items: center;
        justify-content: center;

        width: 44px;
        height: 44px;

        margin-left: auto;

        border: 1px solid #d9d9d9;
        border-radius: 6px;

        background: #ffffff;
        color: #111111;

        font-size: 20px;

        cursor: pointer;

        transition: 0.25s ease;
    }


    @media (hover: hover) and (pointer: fine) {
        .menu-toggle:hover {
            border-color: #ff6b00;
            color: #ff6b00;
        }
    }

}

/*=========================================================*
*HERO SECTION — MOBILE RESPONSIVE*
*=========================================================*/

@media (max-width: 768px) {

    .hero {
        padding: 60px 0 50px;
    }

    .hero-container {
        flex-direction: column;
        gap: 45px;
        text-align: center;
    }

    .hero-content {
        width: 100%;
    }

    .hero-top-text {
        justify-content: center;
        font-size: 12px;
        letter-spacing: 1.5px;
        margin-bottom: 22px;
    }

    .hero-top-text i {
        font-size: 16px;
    }

    .hero-content h1 {
        font-size: 42px;
        line-height: 1.15;
        margin-bottom: 25px;
    }

    .hero-content p {
        font-size: 16px;
        line-height: 1.7;
        margin: 0 auto 35px;
        max-width: 100%;
    }

    .hero-buttons {
        flex-direction: column;
        align-items: center;
        gap: 14px;
    }

    .hero-buttons .quote-btn,
    .hero-buttons .catalogue-btn {
        width: 100%;
        max-width: 320px;
        box-sizing: border-box;
    }

    .hero-image {
        width: 100%;
        justify-content: center;
    }

    .hero-image img {
        width: 100%;
        max-width: 420px;
    }

}

/*=========================================================*
*TRUST BAR — MOBILE RESPONSIVE*
*=========================================================*/

@media (max-width: 768px) {

    .trust-bar {
        grid-template-columns: repeat(2, 1fr);
    }

    .trust-box {
        border-right: 1px solid rgba(255, 255, 255, .08);
        border-bottom: 1px solid rgba(255, 255, 255, .08);
    }

    .trust-box:nth-child(2) {
        border-right: none;
    }

    .trust-box:nth-child(3) {
        border-bottom: none;
    }

    .trust-box:nth-child(4) {
        border-right: none;
        border-bottom: none;
    }

    .trust-box a {
        padding: 28px 15px;
    }

    .trust-box i {
        font-size: 32px;
        margin-bottom: 14px;
    }

    .trust-box h4 {
        font-size: 18px;
        margin-bottom: 8px;
    }

    .trust-box p {
        font-size: 14px;
    }

}

/*=========================================================*
*FLANGE RANGE — MOBILE RESPONSIVE*
*=========================================================*/

@media (max-width: 768px) {

    .flange-range {
        padding: 60px 0;
    }

    .flange-range .container {
        width: 92%;
    }

    .flange-range h2 {
        font-size: 36px;
        line-height: 1.2;
        margin-bottom: 18px;
    }

    .section-number {
        font-size: 12px;
        letter-spacing: 2px;
        margin-bottom: 14px;
    }

    .section-description {
        font-size: 16px;
        line-height: 1.7;
        margin-bottom: 30px;
    }

    .standard-links {
        gap: 10px;
        margin-bottom: 40px;
    }

    .standard-links a {
        padding: 10px 16px;
        font-size: 14px;
    }

    .flange-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }

    .flange-card img {
        height: 260px;
        padding: 15px;
    }

    .card-content {
        padding: 20px;
    }

    .card-content h3 {
        font-size: 21px;
        margin-bottom: 10px;
    }

}

/*==================================================*
*MATERIALS — MOBILE RESPONSIVE*
*==================================================*/

@media (max-width: 768px) {

    .materials-section {

        padding: 70px 0;

        background-position: center;

    }

    .materials-section .container {

        width: 92%;

    }

    .materials-section h2 {

        font-size: 38px;

        line-height: 1.2;

        max-width: 100%;

        margin-bottom: 20px;

    }

    .materials-section p {

        max-width: 100%;

        font-size: 16px;

        line-height: 1.7;

    }

    .materials-grid {

        grid-template-columns: 1fr;

        gap: 25px;

        margin-top: 40px;

    }

    .material-card {

        border-radius: 10px;

    }

    .material-card img {

        height: 240px;

        object-fit: cover;

    }

    .material-content {

        padding: 20px;

    }

    .material-content h3 {

        font-size: 18px;

        line-height: 1.4;

        margin-bottom: 12px;

    }

    .material-content span {

        font-size: 15px;

    }

}

/*==================================================*
*INDUSTRIES — MOBILE RESPONSIVE*
*==================================================*/

@media (max-width: 768px) {

    .industries-section {

        padding: 60px 0 35px;

    }

    .industries-section .container {

        width: 92%;

    }

    .industries-section h2 {

        font-size: 38px;

        line-height: 1.2;

        margin-bottom: 20px;

    }

    .industries-section .section-description {

        max-width: 100%;

        font-size: 16px;

        line-height: 1.7;

    }

    .industries-grid {

        grid-template-columns: 1fr;

        gap: 15px;

        margin-top: 35px;

    }

    .industry-box {

        gap: 14px;

        padding: 18px;

    }

    .industry-box i {

        font-size: 24px;

        width: 34px;

        flex-shrink: 0;

    }

    .industry-box span {

        font-size: 16px;

        line-height: 1.4;

    }

}

/*==================================================*
*GLOBAL EXPORT — MOBILE RESPONSIVE*
*==================================================*/

@media (max-width: 768px) {

    .export-section {

        padding: 60px 0 70px;

    }

    .export-container {

        grid-template-columns: 1fr;

        gap: 45px;

    }

    .export-map {

        order: 1;

    }

    .export-content {

        order: 2;

    }

    .export-map img {

        width: 100%;

        max-width: 100%;

        margin: 0 auto;

    }

    .export-content h2 {

        font-size: 36px;

        line-height: 1.2;

        margin: 16px 0 20px;

    }

    .export-content .section-description {

        font-size: 16px;

        line-height: 1.7;

        max-width: 100%;

    }

    .export-regions {

        grid-template-columns: 1fr;

        gap: 15px;

        margin-top: 30px;

    }

    .export-regions div {

        gap: 12px;

        font-size: 16px;

    }

    .export-regions i {

        font-size: 23px;

        width: 28px;

        text-align: center;

        flex-shrink: 0;

    }

    .export-counter {

        margin-top: 32px;

    }

    .export-counter h3 {

        font-size: 46px;

    }

    .export-counter p {

        font-size: 16px;

    }

}

/*==================================================*
*WHY CHOOSE FERROBEND — MOBILE RESPONSIVE*
*==================================================*/

@media (max-width: 768px) {

    .why-section {

        padding: 65px 0;

    }

    .why-container {

        grid-template-columns: 1fr;

        gap: 40px;

    }

    .why-left h2 {

        font-size: 36px;

        line-height: 1.2;

        margin: 16px 0 20px;

    }

    .why-left .section-description {

        max-width: 100%;

        font-size: 16px;

        line-height: 1.7;

    }

    .why-btn {

        margin-top: 28px;

        padding: 14px 28px;

    }

    .why-grid {

        grid-template-columns: 1fr;

        gap: 16px;

    }

    .why-card {

        padding: 24px;

        min-height: auto;

    }

    .why-card i {

        font-size: 32px;

        margin-bottom: 18px;

    }

    .why-card h3 {

        font-size: 19px;

        line-height: 1.35;

    }

    .why-card p {

        font-size: 15px;

        line-height: 1.6;

    }

}

/*==================================================*
*CALL TO ACTION — MOBILE RESPONSIVE*
*==================================================*/

@media (max-width: 768px) {

    .cta-section {

        padding: 65px 20px;

    }

    .cta-section h2 {

        font-size: 34px;

        line-height: 1.25;

        margin-bottom: 18px;

    }

    .cta-section p {

        font-size: 17px;

        line-height: 1.7;

        margin-bottom: 30px;

    }

    .cta-btn {

        padding: 15px 28px;

        font-size: 16px;

    }

}

/*==================================================*
*FOOTER — MOBILE RESPONSIVE*
*==================================================*/

@media (max-width: 768px) {

    .footer {

        padding: 60px 0 25px;

    }

    .footer-grid {

        grid-template-columns: 1fr;

        gap: 40px;

    }

    .footer-column h4 {

        font-size: 14px;

        margin-bottom: 20px;

    }

    .footer-column ul li {

        margin-bottom: 12px;

    }

    .footer-column ul li a {

        font-size: 15px;

    }

    .footer-contact p {

        font-size: 15px;

        line-height: 1.6;

        margin-bottom: 16px;

    }

    .footer-social {

        flex-wrap: wrap;

        gap: 10px;

        margin: 25px 0;

    }

    .footer-social a {

        width: 44px;

        height: 44px;

        border-width: 1px;

    }

    #liveDateTime {

        font-size: 15px;

        line-height: 1.5;

    }

    .footer-bottom {

        margin-top: 45px;

        padding-top: 20px;

        flex-direction: column;

        align-items: flex-start;

        gap: 20px;

    }

    .footer-bottom p {

        font-size: 14px;

    }

    .footer-bottom div {

        display: flex;

        flex-direction: column;

        gap: 10px;

    }

    .footer-bottom a {

        font-size: 14px;

    }

}

/*==================================================*
*FLOATING WHATSAPP — MOBILE RESPONSIVE*
*==================================================*/

@media (max-width: 768px) {

    .whatsapp-float {

        right: 18px;

        bottom: 18px;

        width: 58px;

        height: 58px;

    }

    .whatsapp-float i {

        font-size: 30px;

    }

}