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

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

html {
    scroll-behavior: smooth;
}

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

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: .3s;
}

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

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

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

@media (max-width: 768px) {

    .top-bar {

        height: auto;

        min-height: 80px;

    }

    .top-bar-container {

        height: auto;

        min-height: 80px;

        display: flex;

        flex-direction: column;

        justify-content: center;

        align-items: center;

        gap: 8px;

        padding: 8px 0;

    }

    .top-left {

        display: flex;

        align-items: center;

        justify-content: center;

        flex-wrap: wrap;

        gap: 6px 20px;

        width: 100%;

    }

    .top-left a {

        font-size: 13px;

        white-space: nowrap;

    }

    .top-right {

        display: flex;

        align-items: center;

        justify-content: center;

        flex-wrap: wrap;

        gap: 6px 22px;

        width: 100%;

    }

    .top-right a {

        font-size: 13px;

        white-space: nowrap;

    }

}


/*=========================================================
  SMALL MOBILE TOP BAR
=========================================================*/

@media (max-width: 480px) {

    .top-bar-container {

        padding: 9px 0;

        gap: 7px;

    }

    .top-left {

        gap: 5px 14px;

    }

    .top-left a {

        font-size: 12px;

    }

    .top-right {

        gap: 5px 16px;

    }

    .top-right a {

        font-size: 12px;

    }

}

/*=========================================================
  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: .3s;

}

.header .navbar > ul > li > a:hover{

    color:#ff6b00;

}
.navbar ul li a i {

    font-size: 11px;
    margin-left: 6px;

    transition: 0.3s;

}

.dropdown {
    position: relative;
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background: #fff;
    min-width: 260px;
    display: none;
    border-radius: 8px;
    box-shadow: 0 10px 25px rgba(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:#222 !important;

    background:#ffffff;

}

.dropdown-menu li a:hover{

    background:#ff6b00 !important;

    color:#ffffff !important;

}

/*==================================================
  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;
}


/*=========================================================
  BUTTON
=========================================================*/
.contact-btn {

    padding: 14px 22px;

    border: 1px solid #d7d7d7;

    color: #0B1F33;

    border-radius: 5px;

    font-size: 15px;

    font-weight: 600;

    transition: .25s ease;

}

.contact-btn:hover {

    background: #0B1F33;

    color: #ffffff;

}

.quote-btn {

    background: #ff6b00;

    color: #ffffff;

    padding: 18px 32px;

    border-radius: 5px;

    font-size: 17px;

    font-weight: 600;

    transition: .25s ease;

}

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

.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 {
        width: 100%;
    }

    .header-container {

        position: relative;

        width: 100%;

        min-height: 80px;

        height: auto;

        display: flex;

        align-items: center;

        justify-content: space-between;

        gap: 0;

        padding-top: 15px;

        padding-bottom: 15px;

        flex-wrap: wrap;

    }


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

    .logo {

        flex: 0 0 auto;

        order: 1;

        display: flex;

        align-items: center;

    }

    .logo img {

        width: 170px;

        height: auto;

        display: block;

    }


    /*==================================================
      HEADER RIGHT
      CONTACT + GET A QUOTE + SEARCH HIDDEN
    ==================================================*/

    .header-right {

        display: none;

    }


    /*==================================================
      HAMBURGER
    ==================================================*/

    .menu-toggle {

        display: flex;

        align-items: center;

        justify-content: center;

        order: 2;

        width: 45px;

        height: 45px;

        padding: 0;

        margin-left: auto;

        background: none;

        border: none;

        font-size: 25px;

        color: #111111;

        cursor: pointer;

        flex-shrink: 0;

    }


    .menu-toggle i {

        pointer-events: none;

    }


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

 .navbar {
    display: none;
    order: 3;
    position: absolute;
    top: 78px;
    left: 0;
    width: 100%;
    background: #ffffff;
    margin-left: 0;
    z-index: 9999;
    box-shadow: 0 10px 25px rgba(0, 0, 0, .12);

    max-height: calc(100vh - 78px);
    overflow-y: auto;

 }


    /* OPEN MENU */

    .navbar.active {

        display: block;

        width: 100%;

    }


    /*==================================================
      MAIN MENU
    ==================================================*/

    .header .navbar > ul {

        display: flex;

        flex-direction: column;

        align-items: stretch;

        width: 100%;

        gap: 0;

        margin: 0;

        padding: 10px 0 0 0;

    }


    .header .navbar > ul > li {

        width: 100%;

        margin: 0;

        padding: 0;

        border-bottom: 1px solid #ececec;

    }


    .header .navbar > ul > li:last-child {

        border-bottom: none;

    }


    /*==================================================
      MAIN MENU LINKS
    ==================================================*/

    .header .navbar > ul > li > a {

        display: flex;

        align-items: center;

        justify-content: space-between;

        width: 100%;

        min-height: 52px;

        padding: 14px 5px;

        font-size: 16px;

        line-height: 1.4;

        color: #111111;

    }


    .header .navbar > ul > li > a:hover {

        color: #ff6b00;

    }


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

    .dropdown {

        position: relative;

    }


    .dropdown-menu {

        position: static;

        display: none;

        width: 100%;

        min-width: 0;

        margin: 0;

        padding: 0 0 5px 15px;

        background: #ffffff;

        box-shadow: none;

        border-radius: 0;

    }


    /* Disable desktop hover dropdown behaviour on mobile */

    .dropdown:hover .dropdown-menu {

        display: none;

    }


    /* Open dropdown only when .active is added */

    .dropdown.active .dropdown-menu {

        display: block;

    }


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

    .dropdown-menu li {

        width: 100%;

        margin: 0;

        padding: 0;

    }


    .dropdown-menu li a {

        display: flex;

        align-items: center;

        width: 100%;

        min-height: 45px;

        padding: 11px 15px;

        font-size: 15px;

        line-height: 1.4;

        color: #222222 !important;

        background: #ffffff;

        border-bottom: 1px solid #f1f1f1;

    }


    .dropdown-menu li:last-child a {

        border-bottom: none;

    }


    .dropdown-menu li a:hover {

        background: #ff6b00 !important;

        color: #ffffff !important;

    }


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

    .navbar ul li a i {

        font-size: 10px;

        margin-left: 8px;

        transition: transform 0.3s ease;

    }


    .dropdown.active > a i {

        transform: rotate(180deg);

    }

    /* 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;

}  

}


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

@media (max-width: 480px) {

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

    .header-container {

        min-height: 72px;

        padding-top: 12px;

        padding-bottom: 12px;

    }


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

    .logo img {

        width: 145px;

    }


    /*==================================================
      HAMBURGER
    ==================================================*/

    .menu-toggle {

        width: 42px;

        height: 42px;

        font-size: 23px;

    }


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

    .header .navbar > ul {

        padding-top: 8px;

    }


    .header .navbar > ul > li > a {

        min-height: 48px;

        padding: 13px 3px;

        font-size: 15px;

    }


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

    .dropdown-menu {

        padding-left: 12px;

    }


    .dropdown-menu li a {

        min-height: 42px;

        padding: 10px 12px;

        font-size: 14px;

    }

           @media (max-width: 480px) {

    .dimensions-dropdown-menu li a {

        padding: 10px 16px !important;

        font-size: 14px !important;

    }
}

}

/*==================================================*
* FLAT FACE SOCKET WELD FLANGE - PRODUCT HERO
*==================================================*/

.product-hero {

    background: #17232f;

    padding: 90px 0;

    overflow: hidden;

}


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

.product-hero-container {

    display: flex;

    align-items: center;

    justify-content: space-between;

    gap: 90px;

}


/*==================================================*
* HERO CONTENT - LEFT
*==================================================*/

.product-hero-content {

    flex: 1;

    min-width: 0;

}


/*==================================================*
* HERO TOP TEXT
*==================================================*/

.hero-top-text {

    display: inline-flex;

    align-items: center;

    gap: 12px;

    color: #F59A23;

    font-size: 14px;

    font-weight: 700;

    letter-spacing: 3px;

    text-transform: uppercase;

    white-space: nowrap;

}

.hero-top-text i {

    color: #F59A23;

    font-size: 16px;

}


/*==================================================*
* BREADCRUMB
*==================================================*/

.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;

}


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

.product-hero h1 {

    font-size: 68px;

    color: #ffffff;

    line-height: 1.1;

    margin: 25px 0;

    font-weight: 700;

}


/*==================================================*
* HERO DESCRIPTION
*==================================================*/

.product-hero p {

    color: #d9d9d9;

    font-size: 20px;

    line-height: 1.9;

    max-width: 700px;

    margin-bottom: 0;

}


/*==================================================*
* HERO CERTIFICATIONS
*==================================================*/

.hero-certifications {

    display: grid;

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

    gap: 15px;

    margin: 35px 0;

    max-width: 650px;

}

.hero-certifications span {

    color: #ffffff;

    font-size: 17px;

    font-weight: 500;

    display: flex;

    align-items: center;

}

.hero-certifications i {

    color: #ef7f1a;

    margin-right: 10px;

    font-size: 17px;

}



/*==================================================
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;

}


/*==================================================*
* HERO IMAGE - RIGHT
*==================================================*/

.product-hero-image {

    flex: 1;

    display: flex;

    justify-content: flex-end;

    align-items: center;

    min-width: 0;

}

.product-hero-image img {

    width: 110%;

    max-width: 950px;

    height: auto;

    object-fit: contain;

    transform: translateY(-35px);

    display: block;

}


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

.hero-buttons {

    display: flex;

    gap: 22px;

    align-items: center;

}


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

.quote-btn {

    display: inline-flex;

    align-items: center;

    justify-content: center;

    padding: 18px 34px;

    background: #ff6b00;

    color: #ffffff;

    border: 1px solid #ff6b00;

    border-radius: 6px;

    font-size: 17px;

    font-weight: 600;

    text-decoration: none;

    transition: .35s;

}

.quote-btn:hover {

    background: #ef7f1a;

    border-color: #ef7f1a;

    color: #ffffff;

}


/*==================================================*
* DOWNLOAD CATALOGUE BUTTON
*==================================================*/

.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;

    background: transparent;

    border-radius: 6px;

    font-size: 17px;

    font-weight: 600;

    text-decoration: none;

    transition: .35s;

}

.catalogue-btn:hover {

    background: #ffffff;

    color: #17232f;

}

/*==================================================*
* MOBILE PRODUCT HERO OVERRIDE
*==================================================*/

@media (max-width: 768px) {

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

    .product-hero {

        padding: 55px 0 60px;

        overflow: hidden;

    }


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

    .product-hero-container {

        display: flex;

        flex-direction: column;

        align-items: stretch;

        justify-content: flex-start;

        gap: 40px;

    }


    /*==================================================
      HERO CONTENT
    ==================================================*/

    .product-hero-content {

        width: 100%;

        flex: none;

    }


    /*==================================================
      TOP TEXT
    ==================================================*/

    .hero-top-text {

        display: flex;

        align-items: flex-start;

        gap: 9px;

        width: 100%;

        white-space: normal;

        font-size: 11px;

        line-height: 1.5;

        letter-spacing: 1.5px;

    }


    .hero-top-text i {

        flex-shrink: 0;

        font-size: 14px;

        margin-top: 2px;

    }


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

    .product-hero h1 {

        font-size: 40px;

        line-height: 1.15;

        margin: 18px 0 20px;

    }


    /*==================================================
      DESCRIPTION
    ==================================================*/

    .product-hero p {

        max-width: 100%;

        font-size: 16px;

        line-height: 1.75;

        margin: 0;

    }


    /*==================================================
      CERTIFICATIONS
    ==================================================*/

    .hero-certifications {

        display: grid;

        grid-template-columns: 1fr;

        width: 100%;

        max-width: 100%;

        gap: 12px;

        margin: 28px 0;

    }


    .hero-certifications span {

        font-size: 15px;

        line-height: 1.5;

    }


    .hero-certifications i {

        flex-shrink: 0;

        margin-right: 9px;

        font-size: 15px;

    }


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

    .standard-badges {

        display: flex;

        flex-wrap: wrap;

        gap: 9px;

        margin-bottom: 30px;

    }


    .standard-badges span {

        padding: 8px 13px;

        font-size: 12px;

    }


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

    .hero-buttons {

        display: flex;

        flex-direction: column;

        align-items: stretch;

        width: 100%;

        gap: 12px;

    }


    .quote-btn,
    .catalogue-btn {

        width: 100%;

        min-height: 54px;

        padding: 15px 20px;

        font-size: 15px;

        box-sizing: border-box;

    }


    /*==================================================
      HERO IMAGE
    ==================================================*/

    .product-hero-image {

        width: 100%;

        flex: none;

        display: flex;

        justify-content: center;

        align-items: center;

        order: 2;

    }


    .product-hero-image img {

        width: 100%;

        max-width: 500px;

        height: auto;

        object-fit: contain;

        transform: none;

        display: block;

    }

}


/*==================================================*
* SMALL MOBILE PRODUCT HERO OVERRIDE
*==================================================*/

@media (max-width: 480px) {

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

    .product-hero {

        padding: 42px 0 48px;

    }


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

    .product-hero-container {

        gap: 32px;

    }


    /*==================================================
      TOP TEXT
    ==================================================*/

    .hero-top-text {

        gap: 8px;

        font-size: 9.5px;

        letter-spacing: 1.1px;

        line-height: 1.45;

    }


    .hero-top-text i {

        font-size: 12px;

    }


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

    .product-hero h1 {

        font-size: 32px;

        line-height: 1.15;

        margin: 16px 0 18px;

    }


    /*==================================================
      DESCRIPTION
    ==================================================*/

    .product-hero p {

        font-size: 15px;

        line-height: 1.7;

    }


    /*==================================================
      CERTIFICATIONS
    ==================================================*/

    .hero-certifications {

        gap: 10px;

        margin: 23px 0;

    }


    .hero-certifications span {

        font-size: 14px;

    }


    .hero-certifications i {

        font-size: 14px;

        margin-right: 8px;

    }


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

    .standard-badges {

        gap: 7px;

        margin-bottom: 25px;

    }


    .standard-badges span {

        padding: 7px 11px;

        font-size: 11px;

    }


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

    .hero-buttons {

        gap: 10px;

    }


    .quote-btn,
    .catalogue-btn {

        min-height: 50px;

        padding: 14px 16px;

        font-size: 14px;

    }


    /*==================================================
      HERO IMAGE
    ==================================================*/

    .product-hero-image img {

        width: 100%;

        max-width: 360px;

    }

}

/*==================================================
WHAT IS FLAT FACE SOCKET WELD FLANGE
==================================================*/


.what-is-section {


    padding: 100px 0;
    background: #ffffff;


}


.what-is-content .section-number {


    color: #ff6b00;


}


.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;


}

/*==================================================*
* MOBILE — WHAT IS FLAT FACE SOCKET WELD FLANGE
*==================================================*/

@media (max-width: 768px) {

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

    .what-is-section {

        padding: 60px 0;

        background: #ffffff;

    }


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

    .what-is-container {

        display: flex;

        flex-direction: column;

        align-items: stretch;

        gap: 40px;

    }


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

    .what-is-image {

        width: 100%;

        order: 1;

    }


    .what-is-image img {

        display: block;

        width: 100%;

        max-width: 100%;

        height: auto;

        border-radius: 8px;

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

    }


    /*==================================================
      CONTENT
    ==================================================*/

    .what-is-content {

        width: 100%;

        order: 2;

    }


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

    .what-is-content .section-number {

        display: block;

        font-size: 11px;

        line-height: 1.5;

        letter-spacing: 1.2px;

        color: #ff6b00;

    }


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

    .what-is-content h2 {

        font-size: 34px;

        line-height: 1.2;

        margin: 15px 0 22px;

        color: #0f2942;

    }


    /*==================================================
      PARAGRAPHS
    ==================================================*/

    .what-is-content p {

        font-size: 16px;

        line-height: 1.75;

        color: #555;

        margin-bottom: 20px;

    }


    .what-is-content p:last-child {

        margin-bottom: 0;

    }


    /*==================================================
      STRONG TEXT
    ==================================================*/

    .what-is-content strong {

        color: #0f2942;

        font-weight: 700;

    }

}


/*==================================================*
* SMALL MOBILE — WHAT IS FLAT FACE SOCKET WELD FLANGE
*==================================================*/

@media (max-width: 480px) {

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

    .what-is-section {

        padding: 45px 0;

    }


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

    .what-is-container {

        gap: 30px;

    }


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

    .what-is-image img {

        border-radius: 7px;

        box-shadow: 0 12px 28px rgba(0, 0, 0, .09);

    }


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

    .what-is-content .section-number {

        font-size: 9.5px;

        letter-spacing: .9px;

        line-height: 1.45;

    }


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

    .what-is-content h2 {

        font-size: 29px;

        line-height: 1.18;

        margin: 13px 0 18px;

    }


    /*==================================================
      PARAGRAPHS
    ==================================================*/

    .what-is-content p {

        font-size: 15px;

        line-height: 1.7;

        margin-bottom: 18px;

    }

}

/*==================================================
WHY CHOOSE FLAT FACE THREADED FLANGE
==================================================*/


.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;


}

/*==================================================
WHY CHOOSE - FEATURE SIZE & ICON
==================================================*/

.industry-features {

    margin-top: 35px;

    display: grid;

    gap: 24px;

}


.industry-features .feature-item {

    display: flex;

    gap: 20px;

    align-items: flex-start;

}


.industry-features .feature-item i {

    width: 60px !important;

    height: 60px !important;

    min-width: 60px;

    min-height: 60px;

    background: #ef7f1a !important;

    color: #ffffff !important;

    border-radius: 50%;

    display: flex !important;

    justify-content: center;

    align-items: center;

    font-size: 23px;

    flex-shrink: 0;

}


.industry-features .feature-item h4 {

    font-size: 22px;

    color: #0f2942;

    margin-bottom: 8px;

    line-height: 1.35;

}


.industry-features .feature-item p {

    margin: 0;

    font-size: 17px;

    color: #666;

    line-height: 1.75;

}

/*==================================================*
* MOBILE — WHY CHOOSE FLAT FACE SOCKET WELD FLANGE
*==================================================*/

@media (max-width: 768px) {

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

    .industry-standard {

        padding: 60px 0;

        background: #ffffff;

    }


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

    .industry-standard-container {

        display: flex;

        flex-direction: column;

        align-items: stretch;

        gap: 45px;

    }


    /*==================================================
      LEFT IMAGE + FEATURES
    ==================================================*/

    .industry-image {

        width: 100%;

        order: 1;

    }


    .industry-image > img {

        display: block;

        width: 100%;

        max-width: 100%;

        height: auto;

        border-radius: 8px;

    }


    /*==================================================
      FEATURES
    ==================================================*/

    .industry-features {

        width: 100%;

        margin-top: 30px;

        display: grid;

        gap: 22px;

    }


    /*==================================================
      FEATURE ITEM
    ==================================================*/

    .industry-features .feature-item {

        display: flex;

        align-items: flex-start;

        gap: 15px;

        width: 100%;

    }


    /*==================================================
      FEATURE ICON
    ==================================================*/

    .industry-features .feature-item i {

        width: 50px !important;

        height: 50px !important;

        min-width: 50px;

        min-height: 50px;

        flex-shrink: 0;

        font-size: 19px;

    }


    /*==================================================
      FEATURE CONTENT
    ==================================================*/

    .industry-features .feature-item h4 {

        font-size: 18px;

        line-height: 1.35;

        margin: 0 0 6px;

        color: #0f2942;

    }


    .industry-features .feature-item p {

        margin: 0;

        font-size: 15px;

        line-height: 1.65;

        color: #666;

    }


    /*==================================================
      RIGHT CONTENT
    ==================================================*/

    .industry-content {

        width: 100%;

        order: 2;

    }


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

    .industry-content .section-number {

        display: block;

        font-size: 11px;

        line-height: 1.5;

        letter-spacing: 1.2px;

        color: #ff6b00;

    }


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

    .industry-content h2 {

        font-size: 34px;

        line-height: 1.2;

        margin: 15px 0 22px;

        color: #0f2942;

    }


    /*==================================================
      DESCRIPTION
    ==================================================*/

    .industry-content p {

        font-size: 16px;

        line-height: 1.75;

        color: #555;

        margin-bottom: 20px;

    }


    /*==================================================
      STRONG TEXT
    ==================================================*/

    .industry-content strong {

        color: #0f2942;

        font-weight: 600;

    }

}


/*==================================================*
* SMALL MOBILE — WHY CHOOSE FLAT FACE SOCKET WELD
*==================================================*/

@media (max-width: 480px) {

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

    .industry-standard {

        padding: 45px 0;

    }


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

    .industry-standard-container {

        gap: 32px;

    }


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

    .industry-image > img {

        border-radius: 7px;

    }


    /*==================================================
      FEATURES
    ==================================================*/

    .industry-features {

        margin-top: 24px;

        gap: 19px;

    }


    /*==================================================
      FEATURE ITEM
    ==================================================*/

    .industry-features .feature-item {

        gap: 12px;

    }


    /*==================================================
      FEATURE ICON
    ==================================================*/

    .industry-features .feature-item i {

        width: 44px !important;

        height: 44px !important;

        min-width: 44px;

        min-height: 44px;

        font-size: 17px;

    }


    /*==================================================
      FEATURE CONTENT
    ==================================================*/

    .industry-features .feature-item h4 {

        font-size: 16px;

        line-height: 1.3;

        margin-bottom: 5px;

    }


    .industry-features .feature-item p {

        font-size: 14px;

        line-height: 1.6;

    }


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

    .industry-content .section-number {

        font-size: 9.5px;

        letter-spacing: .9px;

        line-height: 1.45;

    }


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

    .industry-content h2 {

        font-size: 29px;

        line-height: 1.18;

        margin: 13px 0 18px;

    }


    /*==================================================
      DESCRIPTION
    ==================================================*/

    .industry-content p {

        font-size: 15px;

        line-height: 1.7;

        margin-bottom: 18px;

    }

}

/*==================================================
DESIGN & CONSTRUCTION OF FLAT FACE SOCKET WeLD FLANGE
==================================================*/

.design-construction {

    padding: 100px 0 20px;

    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 h3 {

    font-size: 28px;

    color: #0f2942;

    margin: 30px 0 20px;

    line-height: 1.3;

}


.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;

    padding-left: 0;

    list-style: none;

}


.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;

}


/*==================================================
SECTION NUMBER - ORANGE ACCENT
==================================================*/

.industry-content .section-number,
.design-content .section-number {

    color: #ff6b00 !important;

}

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

@media (max-width: 768px) {

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

    .design-construction {

        padding: 60px 0 45px;

        background: #f8f9fb;

    }


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

    .design-container {

        display: flex;

        flex-direction: column;

        align-items: stretch;

        gap: 40px;

    }


    /*==================================================
      CONTENT
    ==================================================*/

    .design-content {

        width: 100%;

        order: 1;

    }


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

    .design-content .section-number {

        display: block;

        font-size: 11px;

        line-height: 1.5;

        letter-spacing: 1.2px;

        color: #ff6b00 !important;

    }


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

    .design-content h2 {

        font-size: 34px;

        line-height: 1.2;

        margin: 15px 0 22px;

        color: #0f2942;

    }


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

    .design-content h3 {

        font-size: 23px;

        line-height: 1.3;

        margin: 27px 0 17px;

        color: #0f2942;

    }


    /*==================================================
      PARAGRAPHS
    ==================================================*/

    .design-content p {

        font-size: 16px;

        line-height: 1.75;

        color: #555;

        margin-bottom: 20px;

    }


    .design-content p:last-child {

        margin-bottom: 0;

    }


    /*==================================================
      STRONG TEXT
    ==================================================*/

    .design-content strong {

        color: #0f2942;

        font-weight: 600;

    }


    /*==================================================
      DESIGN LIST
    ==================================================*/

    .design-list {

        margin: 23px 0 25px;

        padding-left: 0;

        list-style: none;

    }


    .design-list li {

        position: relative;

        padding-left: 34px;

        margin-bottom: 15px;

        font-size: 15px;

        line-height: 1.7;

        color: #333;

    }


    .design-list li:last-child {

        margin-bottom: 0;

    }


    /*==================================================
      CHECK ICON
    ==================================================*/

    .design-list li::before {

        content: "✓";

        position: absolute;

        left: 0;

        top: 2px;

        width: 23px;

        height: 23px;

        border-radius: 50%;

        background: #ef7f1a;

        color: #ffffff;

        display: flex;

        justify-content: center;

        align-items: center;

        font-size: 12px;

        font-weight: 700;

    }


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

    .design-image {

        width: 100%;

        display: flex;

        justify-content: center;

        align-items: center;

        order: 2;

    }


    .design-image img {

        display: block;

        width: 100%;

        max-width: 100%;

        height: auto;

        border-radius: 8px;

    }

}


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

@media (max-width: 480px) {

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

    .design-construction {

        padding: 45px 0 35px;

    }


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

    .design-container {

        gap: 30px;

    }


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

    .design-content .section-number {

        font-size: 9.5px;

        letter-spacing: .9px;

        line-height: 1.45;

    }


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

    .design-content h2 {

        font-size: 29px;

        line-height: 1.18;

        margin: 13px 0 18px;

    }


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

    .design-content h3 {

        font-size: 21px;

        line-height: 1.3;

        margin: 24px 0 15px;

    }


    /*==================================================
      PARAGRAPHS
    ==================================================*/

    .design-content p {

        font-size: 15px;

        line-height: 1.7;

        margin-bottom: 18px;

    }


    /*==================================================
      DESIGN LIST
    ==================================================*/

    .design-list {

        margin: 20px 0 22px;

    }


    .design-list li {

        padding-left: 31px;

        margin-bottom: 13px;

        font-size: 14px;

        line-height: 1.65;

    }


    /*==================================================
      CHECK ICON
    ==================================================*/

    .design-list li::before {

        top: 2px;

        width: 21px;

        height: 21px;

        font-size: 11px;

    }


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

    .design-image img {

        width: 100%;

        max-width: 100%;

        border-radius: 7px;

    }

}

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

.advantages-section {

    padding: 0 0 100px;

    margin-top: 120px;

    background: #ffffff;

    transform: none !important;

}

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

.advantages-content .section-number {

    color: #ff6b00 !important;

}



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

.advantages-container {

    display: grid;

    grid-template-columns: 1fr 1fr;

    gap: 70px;

    align-items: start;

    padding-top: 0;

    margin-top: 0;

}


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

.advantages-image {

    grid-column: 2;

    grid-row: 1;

    align-self: start;

    text-align: center;

    padding-top: 0;

}


.advantages-image img {

    width: 100%;

    max-width: 900px;

    border-radius: 10px;

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

}


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

.advantages-content {

    grid-column: 1;

    grid-row: 1;

    margin-top: 0;

}


.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
==================================================*/

.advantages-list {

    display: grid;

    grid-template-columns: 1fr;

    gap: 10px;

}


.advantages-list > div {

    display: grid;

    grid-template-columns: 28px 1fr;

    column-gap: 14px;

    align-items: start;

}


.advantages-list > div i {

    grid-column: 1;

    grid-row: 1 / span 2;

    color: #ef7f1a;

    font-size: 22px;

    margin-top: 3px;

}


.advantages-list > div > strong {

    grid-column: 2;

    display: block;

    font-size: 19px;

    line-height: 1.4;

    color: #0f2942;

}

/*==================================================
ADVANTAGES LIST PARAGRAPH SPACING
==================================================*/

.advantages-list > div p {

    margin-bottom: 0;

}

/*==================================================*
* MOBILE — ADVANTAGES OF FLAT FACE SOCKET WELD FLANGE
*==================================================*/

@media (max-width: 768px) {

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

    .advantages-section {

        padding: 55px 0 60px;

        margin-top: 50px;

        background: #ffffff;

        transform: none !important;

    }


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

    .advantages-container {

        display: flex;

        flex-direction: column;

        align-items: stretch;

        gap: 40px;

        padding-top: 0;

        margin-top: 0;

    }


    /*==================================================
      CONTENT
    ==================================================*/

    .advantages-content {

        width: 100%;

        order: 1;

        grid-column: auto;

        grid-row: auto;

        margin-top: 0;

    }


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

    .advantages-content .section-number {

        display: block;

        font-size: 11px;

        line-height: 1.5;

        letter-spacing: 1.2px;

        color: #ff6b00 !important;

    }


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

    .advantages-content h2 {

        font-size: 34px;

        line-height: 1.2;

        margin: 15px 0 22px;

        color: #0f2942;

    }


    /*==================================================
      INTRODUCTION
    ==================================================*/

    .advantages-content > p {

        font-size: 16px;

        line-height: 1.75;

        color: #555;

        margin-bottom: 28px;

    }


    /*==================================================
      STRONG TEXT
    ==================================================*/

    .advantages-content strong {

        color: #0f2942;

        font-weight: 600;

    }


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

    .advantages-list {

        display: grid;

        grid-template-columns: 1fr;

        gap: 18px;

        width: 100%;

    }


    /*==================================================
      ADVANTAGE ITEM
    ==================================================*/

    .advantages-list > div {

        display: grid;

        grid-template-columns: 25px 1fr;

        column-gap: 12px;

        align-items: start;

        width: 100%;

    }


    /*==================================================
      CHECK ICON
    ==================================================*/

    .advantages-list > div i {

        grid-column: 1;

        grid-row: 1 / span 2;

        color: #ef7f1a;

        font-size: 19px;

        margin-top: 3px;

    }


    /*==================================================
      ADVANTAGE TITLE
    ==================================================*/

    .advantages-list > div > strong {

        grid-column: 2;

        display: block;

        font-size: 17px;

        line-height: 1.4;

        color: #0f2942;

    }


    /*==================================================
      ADVANTAGE DESCRIPTION
    ==================================================*/

    .advantages-list > div p {

        grid-column: 2;

        font-size: 15px;

        line-height: 1.65;

        color: #666;

        margin: 5px 0 0;

    }


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

    .advantages-image {

        width: 100%;

        order: 2;

        grid-column: auto;

        grid-row: auto;

        align-self: center;

        text-align: center;

        padding-top: 0;

    }


    .advantages-image img {

        display: block;

        width: 100%;

        max-width: 100%;

        height: auto;

        border-radius: 8px;

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

    }

}


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

@media (max-width: 480px) {

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

    .advantages-section {

        padding: 42px 0 48px;

        margin-top: 35px;

    }


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

    .advantages-container {

        gap: 30px;

    }


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

    .advantages-content .section-number {

        font-size: 9.5px;

        letter-spacing: .9px;

        line-height: 1.45;

    }


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

    .advantages-content h2 {

        font-size: 29px;

        line-height: 1.18;

        margin: 13px 0 18px;

    }


    /*==================================================
      INTRODUCTION
    ==================================================*/

    .advantages-content > p {

        font-size: 15px;

        line-height: 1.7;

        margin-bottom: 23px;

    }


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

    .advantages-list {

        gap: 15px;

    }


    /*==================================================
      ADVANTAGE ITEM
    ==================================================*/

    .advantages-list > div {

        grid-template-columns: 22px 1fr;

        column-gap: 10px;

    }


    /*==================================================
      CHECK ICON
    ==================================================*/

    .advantages-list > div i {

        font-size: 17px;

        margin-top: 2px;

    }


    /*==================================================
      ADVANTAGE TITLE
    ==================================================*/

    .advantages-list > div > strong {

        font-size: 15px;

        line-height: 1.35;

    }


    /*==================================================
      ADVANTAGE DESCRIPTION
    ==================================================*/

    .advantages-list > div p {

        font-size: 14px;

        line-height: 1.6;

        margin-top: 4px;

    }


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

    .advantages-image img {

        border-radius: 7px;

        box-shadow: 0 12px 28px rgba(0, 0, 0, .09);

    }

}

/*==================================================
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;

    } 

 .materials-section::before {

    content: "";

    position: absolute;

    inset: 0;

    background:
        radial-gradient(
            circle at left bottom,
            rgba(255, 255, 255, .08),
            transparent 45%
        ),
        linear-gradient(
            rgba(255, 255, 255, .09) 1px,
            transparent 1px
        ),
        linear-gradient(
            90deg,
            rgba(255, 255, 255, .09) 1px,
            transparent 1px
        );

    background-size:
        auto,
        45px 45px,
        45px 45px;

    opacity: .75;

    pointer-events: none;

}

    .materials-section .container {

        position: relative;

        z-index: 2;

    }

    .materials-section .section-number {

        color: #ff6b00;
        display: block;
        width: 100%;
        text-align: center;

    }

    .materials-section h2 {

        color: #ffffff;

        font-size: 58px;

        line-height: 1.15;

        text-align: center;

        margin-bottom: 25px;

    }

    .materials-section .container {

        position: relative;

        z-index: 2;

    }

    .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;

    }

    .materials-grid {

        display: grid;

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

        gap: 30px;

    }

    .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 {

        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-info {

        flex: 1;

    }

    .material-info h3 {

        font-size: 24px;

        color: #0f2942;

        margin-bottom: 10px;

    }

    .material-info p {

        font-size: 17px;

        line-height: 1.7;

        color: #666;

    }

    .material-info strong {

        color: #ff6b00;

    }

    .material-arrow {

        width: 48px;

        height: 48px;

        border-radius: 50%;

        background: #f4f6fa;

        display: flex;

        justify-content: center;

        align-items: center;

        transition: .35s;

    }

    .material-arrow i {

        color: #0f2942;

        font-size: 18px;

        transition: .35s;

    }

    .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);

    }

    @media(max-width:1100px) {

        .materials-grid {

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

        }

    }

    /*==================================================*
* MOBILE — MATERIALS WE OFFER
*==================================================*/

@media (max-width: 768px) {

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

    .materials-section {

        padding: 65px 0;

        background-position: center center;

    }


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

    .materials-section .section-number {

        display: block;

        width: 100%;

        text-align: center;

        font-size: 11px;

        line-height: 1.5;

        letter-spacing: 1.2px;

    }


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

    .materials-section h2 {

        font-size: 38px;

        line-height: 1.18;

        text-align: center;

        margin: 16px 0 22px;

    }


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

    .materials-subtitle {

        width: 100%;

        max-width: 100%;

        margin: 0 auto 40px;

        padding: 0 5px;

        box-sizing: border-box;

        text-align: center;

        font-size: 16px;

        line-height: 1.75;

    }


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

    .materials-grid {

        display: grid;

        grid-template-columns: 1fr;

        gap: 18px;

        width: 100%;

    }


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

    .material-card {

        display: flex;

        align-items: center;

        gap: 15px;

        width: 100%;

        box-sizing: border-box;

        padding: 20px 18px;

        border-radius: 14px;

        border-top: 3px solid #ff6b00;

    }


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

    .material-icon {

        width: 54px;

        height: 54px;

        min-width: 54px;

        border-radius: 12px;

        flex-shrink: 0;

    }


    .material-icon i {

        font-size: 22px;

    }


    /*==================================================
      MATERIAL INFO
    ==================================================*/

    .material-info {

        min-width: 0;

        flex: 1;

    }


    .material-info h3 {

        font-size: 18px;

        line-height: 1.3;

        margin: 0 0 6px;

        color: #0f2942;

    }


    .material-info p {

        font-size: 14px;

        line-height: 1.55;

        color: #666;

        margin: 0;

    }


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

    .material-arrow {

        width: 38px;

        height: 38px;

        min-width: 38px;

        flex-shrink: 0;

    }


    .material-arrow i {

        font-size: 15px;

    }


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

    .material-card:hover {

        transform: none;

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

    }

}


/*==================================================*
* SMALL MOBILE — MATERIALS WE OFFER
*==================================================*/

@media (max-width: 480px) {

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

    .materials-section {

        padding: 48px 0;

        background-position: center center;

    }


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

    .materials-section .section-number {

        font-size: 9.5px;

        letter-spacing: .9px;

        line-height: 1.45;

    }


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

    .materials-section h2 {

        font-size: 29px;

        line-height: 1.18;

        margin: 13px 0 18px;

    }


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

    .materials-subtitle {

        margin-bottom: 30px;

        padding: 0;

        font-size: 14px;

        line-height: 1.7;

    }


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

    .materials-grid {

        gap: 14px;

    }


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

    .material-card {

        gap: 11px;

        padding: 16px 13px;

        border-radius: 12px;

        border-top-width: 3px;

    }


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

    .material-icon {

        width: 46px;

        height: 46px;

        min-width: 46px;

        border-radius: 10px;

    }


    .material-icon i {

        font-size: 19px;

    }


    /*==================================================
      MATERIAL INFO
    ==================================================*/

    .material-info h3 {

        font-size: 15px;

        line-height: 1.3;

        margin-bottom: 5px;

    }


    .material-info p {

        font-size: 12px;

        line-height: 1.5;

    }


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

    .material-arrow {

        width: 32px;

        height: 32px;

        min-width: 32px;

    }


    .material-arrow i {

        font-size: 13px;

    }

}


    /*==================================================
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;

    text-align: center;

}

.spec-left h3 {

    font-size: 30px;

    color: #0F2942;

    margin: 40px 0 22px;

    text-align: center;

}

.technical-specs h2 {

    font-size: 60px;

    line-height: 1.15;

    color: #0f2942;

    margin: 20px 0 70px;

    text-align: 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;

    justify-content: center;

    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;
}

/*==================================================
FORMING METHODS
==================================================*/

.forming-section {

    margin: 80px auto 0;

    max-width: 1000px;

}

.forming-title {

    text-align: center;

    font-size: 28px;

    color: #0F2942;

    margin: 0 0 30px;

}

.forming-grid {

    display: grid;

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

    gap: 22px;

}

.forming-card {

    padding: 26px 28px;

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

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

    border-top: 4px solid #ff6b00;

    border-radius: 16px;

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

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

}

.forming-card:hover {

    transform: translateY(-6px);

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

}

.forming-card h4 {

    font-size: 20px;

    color: #0F2942;

    margin: 0 0 10px;

}

.forming-card p {

    font-size: 15.5px;

    color: #5b6673;

    line-height: 1.6;

    margin: 0;
    
}

.forming-card h4 a {

    color: inherit;

    text-decoration: none;

    transition: color .25s ease;

}

.forming-card h4 a:hover {

    color: #ff6b00;

}

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

@media (max-width: 768px) {

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

    .technical-specs {

        padding: 65px 0;

        background-position: center center;

    }


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

    .technical-specs .section-number {

        font-size: 11px;

        letter-spacing: 1.5px;

        line-height: 1.5;

        margin-bottom: 14px;

        padding: 0 10px;

        box-sizing: border-box;

    }


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

    .technical-specs h2 {

        font-size: 38px;

        line-height: 1.2;

        margin: 15px 0 45px;

        padding: 0 5px;

        box-sizing: border-box;

    }


    /*==================================================
      SPEC LAYOUT
    ==================================================*/

    .spec-layout {

        width: 100%;

        max-width: 100%;

        margin: 0 auto;

    }


    /*==================================================
      LEFT SPEC CONTENT
    ==================================================*/

    .spec-left {

        width: 100%;

        max-width: 100%;

        margin: 0 auto;

        text-align: center;

    }


    .spec-left h3 {

        font-size: 24px;

        line-height: 1.3;

        margin: 30px 0 18px;

    }


    /*==================================================
      DIMENSIONAL STANDARDS
    ==================================================*/

    .standard-list {

        display: grid;

        grid-template-columns: 1fr;

        gap: 12px;

        width: 100%;

        margin: 20px 0 38px;

    }


    .standard-list a {

        width: 100%;

        min-width: 0;

        min-height: 52px;

        padding: 0 16px;

        box-sizing: border-box;

        font-size: 14px;

        border-radius: 9px;

    }


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

    .pressure-title {

        font-size: 24px;

        line-height: 1.3;

        margin: 35px 0 18px;

    }


    /*==================================================
      PRESSURE TABLE
    ==================================================*/

    .pressure-spec-panel {

        width: 100%;

        overflow: hidden;

        border-radius: 12px;

    }


    .pressure-spec-row {

        grid-template-columns: 1fr 1fr;

        min-height: 62px;

        padding: 0 15px;

        font-size: 14px;

    }


    .pressure-head {

        min-height: 66px;

        border-radius: 12px 12px 0 0;

        font-size: 14px;

    }


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

        text-align: left;

    }


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

    .pressure-spec-row strong {

        text-align: right;

        justify-self: end;

    }


    /*==================================================
      FORMING METHODS
    ==================================================*/

    .forming-section {

        width: 100%;

        max-width: 100%;

        margin: 55px auto 0;

    }


    .forming-title {

        font-size: 24px;

        line-height: 1.3;

        margin: 0 0 20px;

    }


    .forming-grid {

        grid-template-columns: 1fr;

        gap: 16px;

        width: 100%;

    }


    .forming-card {

        width: 100%;

        padding: 21px 19px;

        box-sizing: border-box;

        border-radius: 13px;

    }


    .forming-card h4 {

        font-size: 18px;

        line-height: 1.35;

        margin-bottom: 9px;

    }


    .forming-card p {

        font-size: 14px;

        line-height: 1.7;

    }


    /*==================================================
      DIMENSION BUTTON
    ==================================================*/

    .dimension-btn {

        width: 100%;

        max-width: 100%;

        min-height: 56px;

        box-sizing: border-box;

        margin: 40px auto 0;

        padding: 15px 18px;

        gap: 10px;

        text-align: center;

        font-size: 14px;

        line-height: 1.45;

        border-radius: 10px;

    }


    .dimension-btn i {

        font-size: 15px;

        flex-shrink: 0;

    }


    /*==================================================
      DISABLE DESKTOP HOVER MOVEMENT ON TOUCH
    ==================================================*/

    .standard-list a:hover,

    .forming-card:hover,

    .dimension-btn:hover {

        transform: none;

    }

}


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

@media (max-width: 480px) {

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

    .technical-specs {

        padding: 48px 0;

    }


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

    .technical-specs .section-number {

        font-size: 9.5px;

        letter-spacing: .9px;

        line-height: 1.45;

        margin-bottom: 12px;

    }


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

    .technical-specs h2 {

        font-size: 29px;

        line-height: 1.18;

        margin: 12px 0 32px;

        padding: 0;

    }


    /*==================================================
      SPEC HEADINGS
    ==================================================*/

    .spec-left h3,

    .pressure-title,

    .forming-title {

        font-size: 21px;

        line-height: 1.3;

    }


    .spec-left h3 {

        margin: 25px 0 15px;

    }


    /*==================================================
      STANDARD LIST
    ==================================================*/

    .standard-list {

        gap: 10px;

        margin: 17px 0 30px;

    }


    .standard-list a {

        min-height: 48px;

        padding: 0 13px;

        font-size: 13px;

        border-radius: 8px;

    }


    /*==================================================
      PRESSURE TITLE
    ==================================================*/

    .pressure-title {

        margin: 28px 0 15px;

    }


    /*==================================================
      PRESSURE TABLE
    ==================================================*/

    .pressure-spec-panel {

        border-radius: 9px;

    }


    .pressure-spec-row {

        min-height: 54px;

        padding: 0 11px;

        font-size: 12px;

        line-height: 1.35;

    }


    .pressure-head {

        min-height: 58px;

        font-size: 12px;

    }


    /*==================================================
      FORMING SECTION
    ==================================================*/

    .forming-section {

        margin-top: 42px;

    }


    .forming-title {

        margin-bottom: 16px;

    }


    .forming-grid {

        gap: 12px;

    }


    .forming-card {

        padding: 17px 14px;

        border-radius: 11px;

    }


    .forming-card h4 {

        font-size: 16px;

        margin-bottom: 7px;

    }


    .forming-card p {

        font-size: 12.5px;

        line-height: 1.65;

    }


    /*==================================================
      DIMENSION BUTTON
    ==================================================*/

    .dimension-btn {

        min-height: 52px;

        margin-top: 30px;

        padding: 13px 12px;

        gap: 7px;

        font-size: 12.5px;

        line-height: 1.4;

        border-radius: 9px;

    }


    .dimension-btn i {

        font-size: 13px;

    }

}

/* ==============================
   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;

}

/* ==============================
   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;
}

/*==================================================*
* MOBILE — TESTING & CERTIFICATIONS
*==================================================*/

@media (max-width: 768px) {

    /*==================================================
      QA SECTION
    ==================================================*/

    .qa-section {

        margin-top: 25px;

        padding: 45px 15px;

        background-size: 18px 18px;

    }


    /*==================================================
      QA CARD
    ==================================================*/

    .qa-card {

        width: 100%;

        max-width: 100%;

        box-sizing: border-box;

        padding: 26px 22px;

        border-radius: 12px;

    }


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

    .qa-card h2 {

        font-size: 25px;

        line-height: 1.3;

        margin-bottom: 14px;

    }


    /*==================================================
      QA DESCRIPTION
    ==================================================*/

    .qa-card p {

        font-size: 15px;

        line-height: 1.7;

        margin-bottom: 18px;

    }


    /*==================================================
      QA LIST
    ==================================================*/

    .qa-card ul {

        margin: 0;

        padding: 0;

    }


    .qa-card ul li {

        font-size: 15px;

        line-height: 1.6;

        margin-bottom: 10px;

        padding-left: 0;

    }


    /*==================================================
      QA LINK
    ==================================================*/

    .qa-card a {

        display: inline-block;

        margin-top: 15px;

        padding: 11px 17px;

        font-size: 14px;

        line-height: 1.4;

        border-radius: 6px;

    }


    /*==================================================
      CTA SECTION
    ==================================================*/

    .cta-section {

        padding: 55px 15px;

    }


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

    .cta-section h2 {

        font-size: 34px;

        line-height: 1.2;

        margin-bottom: 14px;

    }


    /*==================================================
      CTA DESCRIPTION
    ==================================================*/

    .cta-section p {

        font-size: 17px;

        line-height: 1.6;

        margin-bottom: 28px;

    }


    /*==================================================
      CTA BUTTON GROUP
    ==================================================*/

    .cta-btn-group {

        display: flex;

        flex-direction: column;

        align-items: stretch;

        gap: 12px;

        width: 100%;

        max-width: 420px;

        margin: 0 auto;

    }


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

    .cta-btn-primary,

    .cta-btn-secondary {

        width: 100%;

        min-height: 52px;

        box-sizing: border-box;

        justify-content: center;

        padding: 13px 18px;

        font-size: 15px;

        border-radius: 7px;

    }


    .cta-btn-primary {

        border: 2px solid #0a2540;

    }


    .cta-btn-secondary {

        border: 2px solid #0a2540;

    }

}


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

@media (max-width: 480px) {

    /*==================================================
      QA SECTION
    ==================================================*/

    .qa-section {

        margin-top: 20px;

        padding: 35px 12px;

        background-size: 16px 16px;

    }


    /*==================================================
      QA CARD
    ==================================================*/

    .qa-card {

        padding: 22px 17px;

        border-radius: 10px;

    }


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

    .qa-card h2 {

        font-size: 22px;

        line-height: 1.3;

        margin-bottom: 12px;

    }


    /*==================================================
      QA DESCRIPTION
    ==================================================*/

    .qa-card p {

        font-size: 13.5px;

        line-height: 1.65;

        margin-bottom: 16px;

    }


    /*==================================================
      QA LIST
    ==================================================*/

    .qa-card ul li {

        font-size: 13.5px;

        line-height: 1.55;

        margin-bottom: 9px;

    }


    /*==================================================
      QA LINK
    ==================================================*/

    .qa-card a {

        width: 100%;

        box-sizing: border-box;

        text-align: center;

        padding: 10px 12px;

        margin-top: 12px;

        font-size: 13px;

    }


    /*==================================================
      CTA SECTION
    ==================================================*/

    .cta-section {

        padding: 45px 12px;

    }


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

    .cta-section h2 {

        font-size: 28px;

        line-height: 1.2;

        margin-bottom: 12px;

    }


    /*==================================================
      CTA DESCRIPTION
    ==================================================*/

    .cta-section p {

        font-size: 14px;

        line-height: 1.6;

        margin-bottom: 23px;

    }


    /*==================================================
      CTA BUTTON GROUP
    ==================================================*/

    .cta-btn-group {

        gap: 10px;

        max-width: 100%;

    }


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

    .cta-btn-primary,

    .cta-btn-secondary {

        min-height: 48px;

        padding: 11px 13px;

        font-size: 13px;

        gap: 8px;

        border-radius: 6px;

    }


    .cta-btn-primary i,

    .cta-btn-secondary i {

        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;

}

/*==================================================
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);

}

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

@media (max-width: 768px) {

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

    .footer {

        padding: 55px 0 20px;

    }


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

    .footer-grid {

        grid-template-columns: 1fr;

        gap: 38px;

    }


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

    .footer-column {

        width: 100%;

    }


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

    .footer-column h4 {

        font-size: 13px;

        letter-spacing: 1.8px;

        margin-bottom: 17px;

    }


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

    .footer-column ul {

        margin: 0;

        padding: 0;

    }


    .footer-column ul li {

        margin-bottom: 11px;

    }


    .footer-column ul li a {

        font-size: 14px;

        line-height: 1.5;

    }


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

    .footer-contact p {

        gap: 10px;

        margin-bottom: 14px;

        font-size: 14px;

        line-height: 1.65;

    }


    .footer-contact i {

        min-width: 17px;

        margin-top: 4px;

    }


    .footer-contact a {

        font-size: 14px;

    }


    /*==================================================
      SOCIAL ICONS
    ==================================================*/

    .footer-social {

        display: flex;

        flex-wrap: wrap;

        gap: 10px;

        margin: 22px 0;

    }


    .footer-social a {

        width: 42px;

        height: 42px;

        border-width: 1.5px;

        border-radius: 7px;

    }


    .footer-social a i {

        font-size: 16px;

    }


    /*==================================================
      LIVE DATE & TIME
    ==================================================*/

    #liveDateTime {

        font-size: 14px;

        line-height: 1.5;

        margin-top: 15px;

        word-break: normal;

    }


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

    .footer-bottom {

        margin-top: 40px;

        padding-top: 20px;

        display: flex;

        flex-direction: column;

        align-items: center;

        justify-content: center;

        gap: 16px;

        text-align: center;

    }


    .footer-bottom p {

        font-size: 13px;

        line-height: 1.5;

        margin: 0;

    }


    .footer-bottom div {

        display: flex;

        flex-wrap: wrap;

        justify-content: center;

        gap: 10px 18px;

    }


    .footer-bottom a {

        font-size: 13px;

    }


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

    .whatsapp-float {

        right: 18px;

        bottom: 18px;

        width: 56px;

        height: 56px;

    }


    .whatsapp-float i {

        font-size: 29px;

    }


    /*==================================================
      DISABLE DESKTOP HOVER MOVEMENT ON TOUCH
    ==================================================*/

    .footer-social a:hover {

        transform: none;

    }


}


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

@media (max-width: 480px) {

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

    .footer {

        padding: 45px 0 18px;

    }


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

    .footer-grid {

        grid-template-columns: 1fr;

        gap: 32px;

    }


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

    .footer-column h4 {

        font-size: 11px;

        letter-spacing: 1.5px;

        margin-bottom: 14px;

    }


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

    .footer-column ul li {

        margin-bottom: 9px;

    }


    .footer-column ul li a {

        font-size: 13px;

    }


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

    .footer-contact p {

        gap: 8px;

        margin-bottom: 12px;

        font-size: 13px;

        line-height: 1.6;

    }


    .footer-contact a {

        font-size: 13px;

    }


    .footer-contact i {

        min-width: 16px;

        font-size: 13px;

    }


    /*==================================================
      SOCIAL
    ==================================================*/

    .footer-social {

        gap: 8px;

        margin: 18px 0;

    }


    .footer-social a {

        width: 38px;

        height: 38px;

        border-radius: 6px;

    }


    .footer-social a i {

        font-size: 14px;

    }


    /*==================================================
      LIVE DATE TIME
    ==================================================*/

    #liveDateTime {

        font-size: 12px;

        line-height: 1.5;

        margin-top: 12px;

    }


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

    .footer-bottom {

        margin-top: 32px;

        padding-top: 18px;

        gap: 13px;

    }


    .footer-bottom p {

        font-size: 11.5px;

    }


    .footer-bottom div {

        gap: 8px 14px;

    }


    .footer-bottom a {

        font-size: 11.5px;

    }


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

    .whatsapp-float {

        right: 14px;

        bottom: 14px;

        width: 50px;

        height: 50px;

    }


    .whatsapp-float i {

        font-size: 26px;

    }

}
