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

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

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

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

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

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

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

}

/*==================================================*
* RAISED FACE SLIP ON 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 span {

    padding: 10px 18px;

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

    color: #ffffff;

    border-radius: 5px;

    font-size: 14px;

    font-weight: 500;

    transition: .3s;

}

.standard-badges span:hover {

    background: #ef7f1a;

    border-color: #ef7f1a;

    color: #ffffff;

}


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

}


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

@media (max-width: 1100px) {

    .product-hero {

        padding: 75px 0;

    }

    .product-hero-container {

        gap: 50px;

    }

    .product-hero h1 {

        font-size: 54px;

    }

    .product-hero p {

        font-size: 18px;

        line-height: 1.8;

    }

    .product-hero-image img {

        width: 105%;

    }

}


/*==================================================*
* TABLET / SMALL LAPTOP
*==================================================*/

@media (max-width: 900px) {

    .product-hero-container {

        flex-direction: column;

        align-items: stretch;

        gap: 50px;

    }

    .product-hero-content {

        width: 100%;

    }

    .product-hero h1 {

        font-size: 52px;

    }

    .product-hero p {

        max-width: 100%;

    }

    .product-hero-image {

        width: 100%;

        justify-content: center;

    }

    .product-hero-image img {

        width: 80%;

        max-width: 650px;

        transform: translateY(0);

    }

}


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

@media (max-width: 600px) {

    .product-hero {

        padding: 60px 0;

    }

    .product-hero-container {

        gap: 40px;

    }

    .hero-top-text {

        font-size: 11px;

        letter-spacing: 2px;

        white-space: normal;

    }

    .hero-top-text i {

        font-size: 14px;

    }

    .product-hero h1 {

        font-size: 40px;

        line-height: 1.12;

        margin: 20px 0;

    }

    .product-hero p {

        font-size: 16px;

        line-height: 1.75;

    }

    .hero-certifications {

        grid-template-columns: 1fr;

        gap: 14px;

        margin: 30px 0;

    }

    .hero-certifications span {

        font-size: 15px;

    }

    .standard-badges {

        gap: 10px;

        margin-bottom: 30px;

    }

    .standard-badges span {

        padding: 8px 14px;

        font-size: 13px;

    }

    .hero-buttons {

        flex-direction: column;

        align-items: stretch;

        gap: 14px;

    }

    .quote-btn,
    .catalogue-btn {

        width: 100%;

        padding: 16px 24px;

    }

    .product-hero-image img {

        width: 100%;

        max-width: 500px;

    }

}


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

@media (max-width: 400px) {

    .product-hero {

        padding: 50px 0;

    }

    .product-hero h1 {

        font-size: 34px;

    }

    .product-hero p {

        font-size: 15px;

    }

    .hero-top-text {

        font-size: 10px;

        letter-spacing: 1.5px;

    }

}

/*==================================================
WHAT IS RAISED FACE BLIND 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;

}

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

.industry-standard {

    padding: 90px 0;
    background: #ffffff;

}

.industry-standard-container {

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

}

.industry-image img {

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

}

.industry-content h2 {

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

}

.industry-content p {

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

}

.industry-content strong {

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

}

.industry-features {

    margin-top: 35px;

    display: grid;

    gap: 18px;

}

.feature-item {

    display: flex;

    gap: 18px;

    align-items: flex-start;

}

.feature-item i {

    width: 52px;
    height: 52px;

    background: #ef7f1a;

    color: #fff;

    border-radius: 50%;

    display: flex;

    justify-content: center;

    align-items: center;

    font-size: 20px;

    flex-shrink: 0;

}

.feature-item h4 {

    font-size: 20px;

    color: #0f2942;

    margin-bottom: 6px;

}

.feature-item p {

    margin: 0;

    font-size: 16px;

    color: #666;

    line-height: 1.7;

}
