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

}

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

.product-hero {

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

}

.product-hero-container {

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

}

.product-hero-content {

    flex: 1;

}

.breadcrumb {

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

    margin-bottom: 28px;

    font-size: 15px;

}

.breadcrumb a {

    color: #ffffff;

}

.breadcrumb span {

    color: #ef7f1a;

}

.breadcrumb i {

    color: #888;

    font-size: 12px;

}

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

}

.hero-top-text i{

    color:#F59A23;

    font-size:16px;

}

.product-hero h1 {

    font-size: 68px;

    color: #ffffff;

    line-height: 1.1;

    margin: 25px 0;

}

.product-hero p {

    color: #d9d9d9;

    font-size: 20px;

    line-height: 1.9;

    max-width: 700px;

}

.hero-certifications {

    display: grid;

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

    gap: 15px;

    margin: 35px 0;

}

.hero-certifications span {

    color: #ffffff;

    font-size: 17px;

    font-weight: 500;

}

.hero-certifications i {

    color: #ef7f1a;

    margin-right: 10px;

}

.standard-badges {

    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;

    transition: .3s;

}

.standard-badges span:hover {

    background: #ef7f1a;

    border-color: #ef7f1a;

}

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

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

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

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

.hero-buttons {

    display: flex;
    gap: 22px;

}

.catalogue-btn {

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

    padding: 18px 34px;

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

    color: #ffffff;

    border-radius: 6px;

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

    transition: .35s;

}

.catalogue-btn:hover {

    background: #ffffff;
    color: #17232f;

}

/*==================================================
WHAT IS SLIP ON FLANGE
==================================================*/

.what-is-section {

    padding: 100px 0;
    background: #ffffff;

}

.what-is-container {

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

}

.what-is-image img {

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

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

}

.what-is-content{

    display:flex;

    flex-direction:column;

    justify-content:center;

}

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

.why-slip-on{

    padding:120px 0;

    background:#fff;

}

.why-slip-container{

    display:grid;

    grid-template-columns:1fr 1fr;

    gap:70px;

    align-items:center;

}

.why-slip-left img{

    width:100%;

    border-radius:10px;

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

}

.why-slip-features{

    margin-top:35px;

}

.feature-item{

    display:flex;

    gap:18px;

    margin-bottom:24px;

}

.feature-item i{

    width:42px;

    height:42px;

    background:#ef7f1a;

    color:#fff;

    border-radius:50%;

    display:flex;

    align-items:center;

    justify-content:center;

    font-size:18px;

    flex-shrink:0;

}

.feature-item h3{

    font-size:18px;

    color:#0F2942;

    margin-bottom:5px;

    font-weight:700;

}

.feature-item p{

    color:#666;

    line-height:1.6;

    font-size:15px;

}

.why-slip-right h2{

    font-size:58px;

    line-height:1.15;

    color:#0F2942;

    margin:18px 0 35px;

}

.why-slip-right p{

    font-size:20px;

    line-height:1.9;

    color:#555;

    margin-bottom:28px;

}

.why-slip-right strong{

    color:#0F2942;

    font-weight:700;

}

@media(max-width:991px){

    .why-slip-container{

        grid-template-columns:1fr;

    }

}

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

.design-construction {

    padding: 100px 0;

    background: #f8f9fb;

}

.design-container {

    display: grid;

    grid-template-columns: 1fr 1fr;

    gap: 80px;

    align-items: center;

}

.design-content h2 {

    font-size: 46px;

    color: #0f2942;

    margin: 20px 0 30px;

    line-height: 1.2;

}

.design-content p {

    font-size: 18px;

    line-height: 1.9;

    color: #555;

    margin-bottom: 22px;

}

.design-content strong {

    color: #0f2942;

    font-weight: 600;

}

.design-list {

    margin-top: 30px;

}

.design-list li {

    position: relative;

    padding-left: 38px;

    margin-bottom: 18px;

    font-size: 18px;

    color: #333;

    line-height: 1.7;

}

.design-list li::before {

    content: "✓";

    position: absolute;

    left: 0;

    top: 0;

    width: 24px;

    height: 24px;

    border-radius: 50%;

    background: #ef7f1a;

    color: #fff;

    display: flex;

    justify-content: center;

    align-items: center;

    font-size: 14px;

    font-weight: 700;

}

.design-image {

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

}

.design-image img {

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

}

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

.advantages-section {

    padding: 100px 0;
    background: #ffffff;

}

.advantages-container {

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

}

.advantages-content h2 {

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

}

.advantages-content p {

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

}

.advantages-content strong {

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

}

.advantages-list {

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

}

.advantages-list div {

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

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

}

.advantages-list i {

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

}

.advantages-image {

    text-align: center;

}

.advantages-image img {

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

}

/*==================================================
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-image:

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

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

        background-size: 45x 45px;

        opacity: .75;

        pointer-events: none;

    }

    .materials-section::before {

        content: "";

        position: absolute;

        inset: 0;

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

        pointer-events: none;

    }

    .materials-section .container {

        position: relative;

        z-index: 2;

    }

    .materials-section .section-number {

        color: #ff6b00;

    }

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

        font-size: 25px;

        color: #0f2942;

        margin-bottom: 10px;

    }

    .material-card p {

        color: #666;
        font-size: 17px;

    }

    .material-card i {

        font-size: 22px;
        color: #0f2942;
        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);

        }

    }

    @media(max-width:768px) {

        .materials-grid {

            grid-template-columns: 1fr;

        }

        .materials-section h2 {

            font-size: 38px;

        }

    }

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

.technical-specs {

    position: relative;
    overflow: hidden;

    padding: 100px 0;

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

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

}

.technical-specs .container {

    position: relative;

    z-index: 2;

}

.spec-layout {

    max-width: 1200px;

    margin: 0 auto;

}

.spec-left {

    width: 100%;

    max-width: 1000px;

    margin: 0 auto;

}

.spec-left h3 {

    font-size: 30px;

    color: #0F2942;

    margin: 40px 0 22px;

}

.technical-specs h2 {

    font-size: 60px;

    line-height: 1.15;

    color: #0f2942;

    margin: 20px 0 70px;

    text-align: center;

}


.dimension-btn-wrapper {

    display: flex;

    justify-content: center;

}

.dimension-btn:hover {

    background: #ff6b00;

    border-color: #ff6b00;

    color: #fff;

    transform: translateY(-6px);

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

}

.dimension-btn i {

    transition: .35s;

    font-size: 18px;

}

.dimension-btn:hover i {

    transform: translateX(8px);

}

.section-number {

    display: block;

    text-align: center;

    color: #ff6b00;

    font-size: 14px;

    letter-spacing: 5px;

    font-weight: 700;

    margin-bottom: 18px;

    text-transform: uppercase;

}


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

.standard-list {

    display: flex;

    flex-wrap: wrap;

    gap: 14px;

    margin: 25px 0 45px;

}

.standard-list a {

    display: flex;

    align-items: center;

    justify-content: center;

    min-width: 170px;

    min-height: 58px;

    padding: 0 22px;

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

    border: 1.5px solid #0F2942;

    border-radius: 10px;

    text-decoration: none;

    font-size: 15px;

    font-weight: 700;

    color: #0F2942;

    transition: all .3s ease;

}

.standard-list a:hover {

    background: #ff6b00;

    border-color: #ff6b00;

    color: #ffffff;

    transform: translateY(-4px);

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

}

.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 SPEC PANEL
========================================*/
.pressure-spec-panel {

    margin: 30px auto 0;

    width:100%;

    max-width:850px;

    background: #ffffff;

    border: 2px solid #0F2942;

    border-radius: 14px;

    overflow: hidden;

    box-shadow: 0 8px 22px rgba(15, 41, 66, .08);

}

   .pressure-head{

    background:#0F2942;

}

.pressure-head span{

    color:#ffffff !important;

    font-weight:700;

}

.pressure-spec {

    width: 100%;

    max-width: 850px;

    margin: 0 auto 55px;

}

.pressure-spec-row {

    display: grid;

    grid-template-columns: 1fr 1fr;

    align-items: center;

    min-height: 62px;

    padding: 0 24px;

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

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

    .pressure-spec-row:last-child {

        border-bottom: none;

    }

    .pressure-spec-row:hover {

        background: #f7fbff;

    }
.pressure-spec-row:hover span{

    color:#555 !important;

}

.pressure-spec-row:hover strong{

    color:#0F2942 !important;

}

.pressure-head {

    background: #0F2942;

    color: #ffffff;

    font-weight: 700;

    border-radius: 10px 10px 0 0;

}

.pressure-head:hover span{

    color:#ffffff !important;

}

.pressure-head:hover{
    background:#0F2942 !important;
}

.pressure-spec-row span {

    grid-column: 1;

    justify-self: start;

    text-align: left;

    font-size: 18px;

    color: #0F2942;

    font-weight: 700;
}

.pressure-spec-row strong {

    grid-column: 2;

    justify-self: end;

    text-align: right;

    color: #0F2942;

    font-size: 18px;

    font-weight: 700;

    padding: 0;
}

.pressure-head span:first-child {

    grid-column: 1;

    justify-self: start;

    text-align: left;

    color: #ffffff !important;

    font-weight: 700;
}

.pressure-head span:last-child {

    grid-column: 2;

    justify-self: end;

    text-align: right;

    color: #ffffff !important;

    font-weight: 700;
}

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

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

}