﻿/********** Template CSS **********/
:root {
    --primary: #C8A25A;
    --secondary: #0E1A2B;
    --light: #F8F9FA;
    --dark: #111827;
}

h1,
h2,
.h1,
.h2,
.fw-bold {
    font-weight: 600 !important;
}

h3,
h4,
.h3,
.h4,
.fw-medium {
    font-weight: 500 !important;
}

h5,
h6,
.h5,
.h6,
.fw-normal {
    font-weight: 400 !important;
}

.back-to-top {
    position: fixed;
    display: none;
    right: 30px;
    bottom: 30px;
    z-index: 99;
}


/*** Spinner ***/
#spinner {
    opacity: 0;
    visibility: hidden;
    transition: opacity .5s ease-out, visibility 0s linear .5s;
    z-index: 99999;
}

#spinner.show {
    transition: opacity .5s ease-out, visibility 0s linear 0s;
    visibility: visible;
    opacity: 1;
}


/*** Button ***/
.btn {
    font-weight: 500;
    transition: .5s;
}

.btn.btn-primary,
.btn.btn-secondary {
    color: #FFFFFF;
}

.btn-square {
    width: 38px;
    height: 38px;
}

.btn-sm-square {
    width: 32px;
    height: 32px;
}

.btn-lg-square {
    width: 48px;
    height: 48px;
}

.btn-square,
.btn-sm-square,
.btn-lg-square {
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: normal;
}

.btn-outline-body {
    color: var(--primary);
    border-color: #777777;
}

.btn-outline-body:hover {
    color: #FFFFFF;
    background: var(--primary);
    border-color: var(--primary);
}


/*** Navbar ***/
/*==============================
        PREMIUM NAVBAR
===============================*/

.navbar {
    background: #ffffff !important;
    transition: all .4s ease;
    box-shadow: 0 5px 18px rgba(0,0,0,.05);
    z-index: 999;
}

.navbar-brand img {
    height: 65px;
    width: auto;
    transition: .4s;
}

.navbar .navbar-nav {
    align-items: center;
}

.navbar .nav-link {
    color: #252525 !important;
    font-size: 15px;
    font-weight: 600;
    text-transform: none !important;
    padding: 32px 18px !important;
    position: relative;
    transition: .3s;
}

    .navbar .nav-link:hover,
    .navbar .nav-link.active {
        color: #C8A25A !important;
    }

    .navbar .nav-link::after {
        content: "";
        position: absolute;
        left: 18px;
        bottom: 22px;
        width: 0;
        height: 2px;
        background: #C8A25A;
        transition: .3s;
    }

    .navbar .nav-link:hover::after,
    .navbar .nav-link.active::after {
        width: calc(100% - 36px);
    }

.navbar .btn {
    border-radius: 40px;
    font-size: 15px;
    font-weight: 600;
    padding: 12px 26px;
    box-shadow: 0 8px 18px rgba(0,0,0,.15);
}
@media (max-width:991px) {

    .navbar {
        padding: 12px 0;
    }

    .navbar-brand img {
        height: 50px;
    }

    .navbar .navbar-nav {
        padding-top: 15px;
    }

    .navbar .nav-link {
        padding: 12px 0 !important;
    }

        .navbar .nav-link::after {
            display: none;
        }

    .navbar .btn {
        margin-top: 15px;
        width: 100%;
    }
}

/*** Header ***/
.owl-carousel-inner {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    display: flex;
    align-items: center;
    background: rgba(0, 0, 0, .5);
}

@media (max-width: 768px) {
    .header-carousel .owl-carousel-item {
        position: relative;
        min-height: 500px;
    }

    .header-carousel .owl-carousel-item img {
        position: absolute;
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

    .header-carousel .owl-carousel-item p {
        font-size: 16px !important;
    }
}

.header-carousel .owl-dots {
    position: absolute;
    width: 60px;
    height: 100%;
    top: 0;
    right: 30px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.header-carousel .owl-dots .owl-dot {
    position: relative;
    width: 45px;
    height: 45px;
    margin: 5px 0;
    background: var(--dark);
    transition: .5s;
}

.header-carousel .owl-dots .owl-dot.active {
    width: 60px;
    height: 60px;
}

.header-carousel .owl-dots .owl-dot img {
    position: absolute;
    width: 100%;
    height: 100%;
    object-fit: cover;
    padding: 2px;
    transition: .5s;
    opacity: .3;
}

.header-carousel .owl-dots .owl-dot.active img {
    opacity: 1;
}

.page-header {
    background: linear-gradient(rgba(0, 0, 0, .5), rgba(0, 0, 0, .5)), url(../img/carousel-1.jpg) center center no-repeat;
    background-size: cover;
}

.breadcrumb-item+.breadcrumb-item::before {
    color: var(--light);
}


/*** Section Title ***/
.section-title {
    color: var(--primary);
    font-weight: 600;
    letter-spacing: 5px;
    text-transform: uppercase;
}


/*** Facts ***/
.fact-item {
    background: #ffffff;
    border-radius: 20px;
    padding: 45px 30px;
    transition: .4s;
    box-shadow: 0 10px 30px rgba(0,0,0,.06);
    height: 100%;
}

    .fact-item:hover {
        transform: translateY(-12px);
        box-shadow: 0 20px 45px rgba(0,0,0,.15);
    }

.fact-icon {
    width: 90px;
    height: 90px;
    margin: 0 auto 25px;
    border-radius: 50%;
    background: #0E1A2B;
    display: flex;
    align-items: center;
    justify-content: center;
}

    .fact-icon i {
        font-size: 38px;
        color: #C8A25A;
    }

.fact-item h4 {
    font-weight: 700;
    margin-bottom: 18px;
    color: #0E1A2B;
}

.fact-item p {
    color: #666;
    line-height: 30px;
}


/*** About & Feature ***/
.about-img,
.feature-img {
    position: relative;
    height: 100%;
    min-height: 400px;
}

.about-img img,
.feature-img img {
    position: absolute;
    width: 60%;
    height: 80%;
    object-fit: cover;
}

.about-img img:last-child,
.feature-img img:last-child {
    margin: 20% 0 0 40%;
}

.about-img::before,
.feature-img::before {
    position: absolute;
    content: "";
    width: 60%;
    height: 80%;
    top: 10%;
    left: 20%;
    border: 5px solid var(--primary);
    z-index: -1;
}


/*** Service ***/
.service-item .bg-img {
    position: absolute;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: -1;
}

.service-item .service-text {
    background: var(--light);
    transition: .5s;
}

.service-item:hover .service-text {
    background: rgba(0, 0, 0, .7);
}

.service-item * {
    transition: .5;
}

.service-item:hover * {
    color: #FFFFFF;
}

.service-item .btn {
    width: 40px;
    height: 40px;
    display: inline-flex;
    align-items: center;
    color: var(--dark);
    background: #FFFFFF;
    white-space: nowrap;
    overflow: hidden;
    transition: .5s;
}

.service-item:hover .btn {
    width: 140px;
}


/*** Project ***/
.project .nav .nav-link {
    background: var(--light);
    transition: .5s;
}

.project .nav .nav-link.active {
    background: var(--primary);
}

.project .nav .nav-link.active h3 {
    color: #FFFFFF !important;
}


/*** Team ***/
.team-items {
    margin: -.75rem;
}

.team-item {
    padding: .75rem;
}

.team-item::after {
    position: absolute;
    content: "";
    width: 100%;
    height: 0;
    top: 0;
    left: 0;
    background: #FFFFFF;
    transition: .5s;
    z-index: -1;
}

.team-item:hover::after {
    height: 100%;
    background: var(--primary);
}

.team-item .team-social {
    position: absolute;
    width: 100%;
    bottom: -20px;
    left: 0;
}

.team-item .team-social .btn {
    display: inline-flex;
    margin: 0 2px;
    color: var(--primary);
    background: var(--light);
}

.team-item .team-social .btn:hover {
    color: #FFFFFF;
    background: var(--primary);
}


/*** Appointment ***/
.bootstrap-datetimepicker-widget.bottom {
    top: auto !important;
}

.bootstrap-datetimepicker-widget .table * {
    border-bottom-width: 0px;
}

.bootstrap-datetimepicker-widget .table th {
    font-weight: 500;
}

.bootstrap-datetimepicker-widget.dropdown-menu {
    padding: 10px;
    border-radius: 2px;
}

.bootstrap-datetimepicker-widget table td.active,
.bootstrap-datetimepicker-widget table td.active:hover {
    background: var(--primary);
}

.bootstrap-datetimepicker-widget table td.today::before {
    border-bottom-color: var(--primary);
}


/*** Testimonial ***/
.testimonial-carousel {
    display: flex !important;
    flex-direction: column-reverse;
    max-width: 700px;
    margin: 0 auto;
}

.testimonial-carousel .owl-dots {
    height: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 30px;
}

.testimonial-carousel .owl-dots .owl-dot {
    position: relative;
    width: 60px;
    height: 60px;
    margin: 0 5px;
    transition: .5s;
}

.testimonial-carousel .owl-dots .owl-dot.active {
    width: 100px;
    height: 100px;
}

.testimonial-carousel .owl-dots .owl-dot::after {
    position: absolute;
    width: 40px;
    height: 40px;
    bottom: -20px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    align-items: center;
    justify-content: center;
    content: "\f10d";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    color: var(--primary);
    background: #FFFFFF;
    border-radius: 40px;
    transition: .5s;
    opacity: 0;
}

.testimonial-carousel .owl-dots .owl-dot.active::after {
    opacity: 1;
}

.testimonial-carousel .owl-dots .owl-dot img {
    opacity: .4;
    transition: .5s;
}

.testimonial-carousel .owl-dots .owl-dot.active img {
    opacity: 1;
}


/*** Footer ***/
.footer .btn.btn-link {
    display: block;
    margin-bottom: 5px;
    padding: 0;
    text-align: left;
    color: #777777;
    font-weight: normal;
    text-transform: capitalize;
    transition: .3s;
}

.footer .btn.btn-link::before {
    position: relative;
    content: "\f105";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    color: var(--primary);
    margin-right: 10px;
}

.footer .btn.btn-link:hover {
    color: var(--primary);
    letter-spacing: 1px;
    box-shadow: none;
}

.footer .form-control {
    border-color: #777777;
}

.footer .copyright {
    padding: 25px 0;
    font-size: 15px;
    border-top: 1px solid rgba(256, 256, 256, .1);
}

.footer .copyright a {
    color: var(--light);
}

.footer .copyright a:hover {
    color: var(--primary);
}
/*=========================
        TOP BAR
==========================*/

.topbar {
    background: #0E1A2B;
    color: #ffffff;
    font-size: 14px;
    padding: 10px 0;
}

    .topbar small {
        color: #ffffff;
    }

    .topbar i {
        color: #C8A25A;
    }

    .topbar a {
        color: #ffffff;
        text-decoration: none;
    }

        .topbar a:hover {
            color: #C8A25A;
        }
@media(max-width:991px) {

    .topbar {
        display: block;
        text-align: center;
        padding: 8px 15px;
    }

        .topbar .text-start,
        .topbar .text-end {
            text-align: center !important;
        }

        .topbar small {
            display: block;
            margin: 4px 0;
        }
}
.navbar-brand img {
    height: 60px;
    width: auto;
    transition: .4s;
}
@media(max-width:991px) {

    .navbar-brand img {
        height: 50px;
    }
}
.navbar {
    box-shadow: 0 5px 20px rgba(0,0,0,.05);
}

    .navbar .nav-link {
        font-size: 15px;
        font-weight: 600;
        padding: 30px 18px !important;
        letter-spacing: .2px;
        text-transform: none !important;
        transition: .3s;
    }

        .navbar .nav-link:hover {
            color: #C8A25A !important;
        }
    .navbar .btn {
        border-radius: 50px;
        font-weight: 600;
        padding: 12px 28px;
        box-shadow: 0 8px 20px rgba(0,0,0,.15);
    }
/*==============================
        NAVBAR BUTTON
===============================*/

.navbar-quote {
    display: flex;
    align-items: center;
}

    .navbar-quote .btn {
        border-radius: 40px;
        font-size: 15px;
        font-weight: 600;
        padding: 12px 28px;
        box-shadow: 0 8px 20px rgba(0,0,0,.15);
    }
@media (max-width:991px) {

    .navbar {
        padding: 10px 0;
    }

    .navbar-brand img {
        height: 50px;
    }

    .navbar .navbar-nav {
        padding-top: 15px;
    }

    .navbar .nav-link {
        padding: 12px 0 !important;
    }

        .navbar .nav-link::after {
            display: none;
        }

    /* Request Quote */

    .navbar-quote {
        width: 100%;
        margin-top: 15px;
    }

        .navbar-quote .btn {
            width: 100%;
            text-align: center;
            padding: 14px;
        }
}
.mobile-divider {
    display: none;
}

@media (max-width:991px) {

    .mobile-divider {
        display: block;
        border: 0;
        border-top: 1px solid #0E1A2B;
        margin: 15px 0;
    }
}
.navbar-toggler {
    transition: .3s;
}

    .navbar-toggler i {
        font-size: 24px;
        color: #0E1A2B;
        transition: .3s;
    }

    .navbar-toggler:hover i {
        color: #C8A25A;
        transform: rotate(90deg);
    }
/*==================================================
                HERO SECTION
==================================================*/

.hero-section {
    background: url('../img/hero-industrial.jpg') center center;
    background-size: cover;
    position: relative;
}

.hero-overlay {
    background: rgba(14,26,43,.75);
}

.hero-height {
    min-height: 780px;
}

.hero-subtitle {
    color: #C8A25A;
    font-size: 16px;
    letter-spacing: 3px;
    font-weight: 600;
    display: inline-block;
    margin-bottom: 20px;
}

.hero-title {
    color: #fff;
    font-size: 64px;
    font-weight: 700;
    line-height: 1.15;
}

    .hero-title span {
        color: #C8A25A;
    }

.hero-description {
    color: #d7d7d7;
    font-size: 20px;
    line-height: 34px;
    max-width: 700px;
    margin: 35px 0;
}

.hero-buttons {
    display: flex;
    gap: 20px;
    margin-bottom: 40px;
}

    .hero-buttons .btn {
        padding: 15px 38px;
        border-radius: 50px;
        font-weight: 600;
    }

    .hero-buttons .btn-outline-light {
        border: 2px solid #fff;
    }

        .hero-buttons .btn-outline-light:hover {
            background: #fff;
            color: #0E1A2B;
        }

.hero-features {
    display: flex;
    gap: 35px;
    flex-wrap: wrap;
}

    .hero-features div {
        color: #fff;
        font-size: 17px;
    }

    .hero-features i {
        color: #C8A25A;
        margin-right: 8px;
    }
@media(max-width:991px) {

    .hero-height {
        min-height: 600px;
        padding: 90px 0;
    }

    .hero-title {
        font-size: 42px;
    }

    .hero-description {
        font-size: 17px;
        line-height: 30px;
    }

    .hero-buttons {
        flex-direction: column;
    }

        .hero-buttons .btn {
            width: 100%;
        }

    .hero-features {
        gap: 15px;
        flex-direction: column;
    }
}
/*==============================
        ABOUT SECTION
==============================*/

.about-section {
    padding: 100px 0;
    background: #fff;
}

.section-tag {
    color: #C8A25A;
    font-weight: 600;
    letter-spacing: 2px;
    font-size: 15px;
}

.about-title {
    font-size: 48px;
    font-weight: 700;
    margin: 20px 0;
    line-height: 1.3;
    color: #0E1A2B;
}

.about-text {
    font-size: 17px;
    line-height: 32px;
    color: #666;
    margin-bottom: 20px;
}

.about-list {
    margin-bottom: 18px;
    font-size: 17px;
    font-weight: 600;
}

    .about-list i {
        color: #C8A25A;
        margin-right: 10px;
    }

.about-image img {
    border-radius: 20px;
    box-shadow: 0 25px 60px rgba(0,0,0,.12);
}
.company-stats {
    background: #0E1A2B;
    padding: 70px 0;
    margin-top: 80px;
}

    .company-stats h2 {
        color: #C8A25A;
        font-size: 48px;
        font-weight: 700;
    }

    .company-stats p {
        color: #fff;
        margin-top: 10px;
        font-size: 18px;
    }
@media(max-width:991px) {

    .about-title {
        font-size: 34px;
    }

    .about-image {
        margin-top: 50px;
    }

    .company-stats .col-md-3 {
        margin-bottom: 35px;
    }
}
.about-image {
    position: relative;
    text-align: right;
}

.experience-card {
    position: absolute;
    left: -30px;
    bottom: 30px;
    background: #ffffff;
    padding: 25px;
    border-radius: 18px;
    box-shadow: 0 15px 40px rgba(0,0,0,.15);
    width: 230px;
}

    .experience-card h2 {
        color: #C8A25A;
        font-size: 52px;
        margin: 0;
        font-weight: 700;
    }

    .experience-card p {
        margin: 10px 0 0;
        color: #555;
        font-weight: 600;
    }
.section-line {
    width: 70px;
    height: 4px;
    background: #C8A25A;
    border-radius: 50px;
    margin: 18px 0 30px;
}
.about-btn {
    padding: 15px 38px;
    border-radius: 40px;
    font-weight: 600;
    transition: .35s;
}

    .about-btn:hover {
        transform: translateY(-4px);
    }
.stat-box {
    padding: 35px;
    border: 1px solid rgba(255,255,255,.15);
    border-radius: 15px;
    transition: .35s;
}

    .stat-box:hover {
        background: #C8A25A;
    }

        .stat-box:hover h2,
        .stat-box:hover p {
            color: #fff;
        }
/*=========================
      PRODUCTS SECTION
=========================*/

.products-section {
    background: #f8f9fb;
}

.product-card {
    background: #fff;
    border-radius: 18px;
    overflow: hidden;
    transition: .4s;
    box-shadow: 0 10px 35px rgba(0,0,0,.08);
    height: 100%;
}

    .product-card img {
        width: 100%;
        height: 260px;
        object-fit: cover;
        transition: .5s;
    }

.product-content {
    padding: 30px;
}

    .product-content h4 {
        font-weight: 700;
        margin-bottom: 15px;
        color: #0E1A2B;
    }

    .product-content p {
        color: #666;
        line-height: 30px;
        margin-bottom: 25px;
    }

    .product-content a {
        font-weight: 600;
        color: #C8A25A;
        text-decoration: none;
    }

.product-card:hover {
    transform: translateY(-12px);
}

    .product-card:hover img {
        transform: scale(1.08);
    }
/*=============================
        BRANDS SECTION
==============================*/

.brands-section {
    background: #fff;
}

.brand-card {
    background: #fff;
    border: 1px solid #ececec;
    border-radius: 15px;
    padding: 35px;
    height: 150px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: .4s;
    box-shadow: 0 10px 30px rgba(0,0,0,.05);
}

    .brand-card img {
        max-width: 140px;
        max-height: 70px;
        filter: grayscale(100%);
        transition: .4s;
    }

    .brand-card:hover {
        transform: translateY(-8px);
        border-color: #C8A25A;
        box-shadow: 0 20px 40px rgba(0,0,0,.12);
    }

        .brand-card:hover img {
            filter: none;
            transform: scale(1.08);
        }
/*==============================
        INDUSTRIES
==============================*/

.industries-section {
    background: #f8fafc;
}

.industry-panel {
    background: #fff;
    border-radius: 25px;
    padding: 45px;
    box-shadow: 0 20px 60px rgba(0,0,0,.08);
}

.industry-box {
    text-align: center;
    padding: 30px 20px;
    border-radius: 18px;
    transition: .4s;
    height: 100%;
    border: 1px solid #ececec;
}

    .industry-box:hover {
        background: #0E1A2B;
        transform: translateY(-10px);
        box-shadow: 0 20px 45px rgba(0,0,0,.15);
    }

.industry-icon {
    width: 80px;
    height: 80px;
    margin: auto;
    border-radius: 50%;
    background: #C8A25A;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 20px;
}

    .industry-icon i {
        font-size: 30px;
        color: #fff;
    }

.industry-box h5 {
    font-weight: 700;
    margin-bottom: 15px;
    transition: .3s;
}

.industry-box p {
    font-size: 15px;
    line-height: 26px;
    color: #666;
    transition: .3s;
}

.industry-box:hover h5,
.industry-box:hover p {
    color: #fff;
}
/*==============================
      REQUEST QUOTE
==============================*/

.quote-section {
    background: #f8f9fb;
}

.quote-wrapper {
    background: #fff;
    padding: 60px;
    border-radius: 25px;
    box-shadow: 0 20px 60px rgba(0,0,0,.08);
}

.quote-form {
    background: #fff;
    padding: 20px;
}

    .quote-form .form-control {
        height: 58px;
        border-radius: 12px;
        border: 1px solid #ddd;
        box-shadow: none;
    }

    .quote-form textarea.form-control {
        height: auto;
        padding-top: 18px;
    }

    .quote-form .form-control:focus {
        border-color: #C8A25A;
        box-shadow: 0 0 0 .15rem rgba(200,162,90,.15);
    }

.info-item {
    display: flex;
    align-items: center;
    margin-bottom: 25px;
}

.info-icon {
    width: 60px;
    height: 60px;
    background: #C8A25A;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-right: 18px;
}

    .info-icon i {
        color: #fff;
        font-size: 22px;
    }

.info-item h6 {
    font-weight: 700;
    margin-bottom: 4px;
}

.info-item span {
    color: #666;
}

.quote-form button {
    border-radius: 50px;
}
/*==========================
      TESTIMONIAL
===========================*/

.testimonial-section {
    background: #fff;
}

.testimonial-card {
    background: #fff;
    padding: 40px;
    border-radius: 20px;
    height: 100%;
    box-shadow: 0 15px 45px rgba(0,0,0,.08);
    transition: .4s;
    position: relative;
}

.quote-icon {
    width: 70px;
    height: 70px;
    background: #C8A25A;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 25px;
}

    .quote-icon i {
        color: #fff;
        font-size: 28px;
    }

.testimonial-card p {
    line-height: 30px;
    color: #666;
    margin-bottom: 25px;
}

.stars {
    color: #f5b301;
    font-size: 20px;
    margin-bottom: 20px;
    letter-spacing: 2px;
}

.testimonial-card h5 {
    font-weight: 700;
    margin-bottom: 5px;
}

.testimonial-card span {
    color: #777;
}

.testimonial-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 55px rgba(0,0,0,.15);
}
/*====================================
            FOOTER
====================================*/

.footer-section {
    background: #0E1A2B;
    padding: 80px 0 25px;
    color: #cfd6de;
}

.footer-logo {
    max-width: 220px;
}

.footer-about {
    line-height: 30px;
    color: #cfd6de;
}

.footer-section h4 {
    color: #fff;
    font-weight: 700;
    margin-bottom: 25px;
    position: relative;
    padding-bottom: 10px;
}

    .footer-section h4::after {
        content: '';
        position: absolute;
        left: 0;
        bottom: 0;
        width: 45px;
        height: 3px;
        background: #C8A25A;
    }

.footer-section ul {
    padding: 0;
    margin: 0;
    list-style: none;
}

    .footer-section ul li {
        margin-bottom: 12px;
    }

        .footer-section ul li a {
            color: #cfd6de;
            text-decoration: none;
            transition: .3s;
        }

            .footer-section ul li a:hover {
                color: #C8A25A;
                padding-left: 8px;
            }

.footer-section p {
    margin-bottom: 15px;
}

.footer-social a {
    width: 42px;
    height: 42px;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    background: rgba(255,255,255,.08);
    border-radius: 50%;
    color: #fff;
    margin-right: 8px;
    transition: .3s;
    text-decoration: none;
}

    .footer-social a:hover {
        background: #C8A25A;
        transform: translateY(-5px);
    }

.footer-divider {
    border-color: rgba(255,255,255,.1);
    margin: 45px 0 25px;
}

.footer-bottom {
    font-size: 15px;
}

    .footer-bottom a {
        color: #C8A25A;
        text-decoration: none;
        font-weight: 600;
    }

        .footer-bottom a:hover {
            color: #fff;
        }

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

.whatsapp-float {
    position: fixed;
    right: 25px;
    bottom: 25px;
    width: 60px;
    height: 60px;
    background: #25D366;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 32px;
    color: #fff;
    text-decoration: none;
    box-shadow: 0 12px 30px rgba(0,0,0,.3);
    z-index: 9999;
    transition: .3s;
}

    .whatsapp-float:hover {
        transform: scale(1.12);
        color: #fff;
    }

/*====================================
        BACK TO TOP
====================================*/

.back-to-top {
    position: fixed;
    right: 25px;
    bottom: 100px;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: #C8A25A;
    color: #fff;
    display: flex;
    justify-content: center;
    align-items: center;
    text-decoration: none;
    box-shadow: 0 10px 25px rgba(0,0,0,.25);
    transition: .3s;
    z-index: 9998;
}

    .back-to-top:hover {
        background: #fff;
        color: #0E1A2B;
        transform: translateY(-5px);
    }
/*=========================================
      PREMIUM SPACING POLISH
=========================================*/

section {
    padding-top: 0px;
    padding-bottom: 75px;
}

.container-xxl {
    padding-top: 75px !important;
    padding-bottom: 75px !important;
}

.py-5 {
    padding-top: 3.8rem !important;
    padding-bottom: 3.8rem !important;
}

.mb-5 {
    margin-bottom: 2.7rem !important;
}
/*=========================================
            NAVBAR
=========================================*/

.navbar {
    box-shadow: 0 5px 20px rgba(0,0,0,.05);
    transition: .35s;
}

.navbar-nav .nav-link {
    font-size: 15px;
    font-weight: 600;
    letter-spacing: .3px;
    padding: 28px 16px !important;
    transition: .35s;
}

    .navbar-nav .nav-link:hover {
        color: #C8A25A !important;
    }

.navbar-brand img {
    height: 58px;
    transition: .3s;
}

.navbar.sticky-top {
    backdrop-filter: blur(10px);
}
.hero-header {
    padding-top: 90px;
    padding-bottom: 90px;
}

    .hero-header h1 {
        line-height: 1.18;
        margin-bottom: 25px;
    }

    .hero-header p {
        max-width: 560px;
        line-height: 32px;
        font-size: 17px;
        color: #d8d8d8;
    }
.product-card,
.brand-card,
.industry-box,
.testimonial-card {
    transition: .35s;
    border-radius: 18px;
}

    .product-card:hover,
    .brand-card:hover,
    .industry-box:hover,
    .testimonial-card:hover {
        transform: translateY(-8px);
        box-shadow: 0 18px 45px rgba(0,0,0,.12);
    }
.btn {
    border-radius: 40px;
    font-weight: 600;
    letter-spacing: .4px;
    padding: 12px 30px;
    transition: .35s;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(0,0,0,.18);
}
.company-stats {
    padding: 65px 0;
}

.stat-box {
    padding: 25px;
    transition: .35s;
}

    .stat-box:hover {
        transform: translateY(-6px);
    }
.brand-logo img {
    max-height: 85px;
    transition: .35s;
}

.brand-card:hover img {
    transform: scale(1.06);
}
.product-card {
    padding: 28px;
}

    .product-card h5 {
        font-weight: 700;
        margin-bottom: 15px;
    }

    .product-card p {
        line-height: 28px;
    }
.testimonial-card {
    padding: 35px;
}

    .testimonial-card p {
        font-size: 15px;
        line-height: 28px;
    }
.footer-section {
    padding-top: 70px;
}

    .footer-section ul li {
        margin-bottom: 14px;
    }

.footer-social a {
    transition: .3s;
}

    .footer-social a:hover {
        transform: translateY(-5px);
    }
img {
    transition: .4s;
}

.about-image img:hover {
    transform: scale(1.02);
}

.hero-header img:hover {
    transform: scale(1.02);
}
.section-line {
    width: 70px;
    height: 3px;
    background: #C8A25A;
    margin: 15px 0 25px;
    border-radius: 20px;
}
html {
    scroll-behavior: smooth;
}
.about-section,
.products-section,
.brands-section,
.testimonial-section,
.quote-section {
    position: relative;
    overflow: hidden;
}

    .about-section::before,
    .products-section::before,
    .brands-section::before,
    .testimonial-section::before {
        content: '';
        position: absolute;
        width: 220px;
        height: 220px;
        background: rgba(200,162,90,.03);
        border-radius: 50%;
        top: -90px;
        right: -90px;
    }
.hero-header {
    position: relative;
    overflow: hidden;
}

    .hero-header::after {
        content: "";
        position: absolute;
        left: 0;
        bottom: 0;
        width: 100%;
        height: 60px;
        background: linear-gradient(to bottom, rgba(255,255,255,0), #ffffff);
    }
/*==============================
ABOUT HEADER
==============================*/

.about-header {
    background: linear-gradient(rgba(8,20,38,.78),rgba(8,20,38,.78)), url('../img/about-banner.jpg');
    background-position: center;
    background-size: cover;
    padding: 120px 0;
}

    .about-header h1 {
        font-weight: 800;
        letter-spacing: .5px;
    }

.breadcrumb a {
    color: #fff;
    text-decoration: none;
}

    .breadcrumb a:hover {
        color: #C8A25A;
    }

.text-gold {
    color: #C8A25A !important;
}
.about-company {
    background: #fff;
}

    .about-company img {
        border-radius: 18px;
        transition: .4s;
    }

        .about-company img:hover {
            transform: scale(1.02);
        }

.about-feature {
    font-weight: 600;
    color: #081426;
}

    .about-feature i {
        color: #C8A25A;
        margin-right: 10px;
    }

.section-tag {
    color: #C8A25A;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.section-title {
    font-weight: 800;
    line-height: 1.3;
    color: #081426;
}
/*==========================
OUR JOURNEY
===========================*/

.journey-section {
    background: #f8f9fb;
}

.timeline {
    display: flex;
    justify-content: space-between;
    position: relative;
    margin-top: 70px;
    gap: 25px;
}

    .timeline::before {
        content: '';
        position: absolute;
        left: 8%;
        right: 8%;
        top: 40px;
        height: 3px;
        background: #C8A25A;
        z-index: 0;
    }

.timeline-item {
    position: relative;
    text-align: center;
    flex: 1;
    z-index: 2;
}

.timeline-circle {
    width: 80px;
    height: 80px;
    background: #081426;
    color: #fff;
    margin: auto;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    border: 6px solid #fff;
    box-shadow: 0 10px 30px rgba(0,0,0,.08);
    transition: .35s;
}

.timeline-item:hover .timeline-circle {
    background: #C8A25A;
    transform: translateY(-8px);
}

.timeline-item h5 {
    margin-top: 25px;
    font-weight: 700;
    color: #081426;
}

.timeline-item p {
    font-size: 15px;
    line-height: 28px;
    color: #666;
    padding: 0 10px;
}

@media(max-width:991px) {

    .timeline {
        flex-direction: column;
    }

        .timeline::before {
            display: none;
        }

    .timeline-item {
        margin-bottom: 45px;
    }
}
/*=========================================
MISSION | VISION | VALUES
=========================================*/

.mission-section {
    background: #ffffff;
}

.purpose-card {
    background: #fff;
    padding: 40px 30px;
    border-radius: 20px;
    height: 100%;
    text-align: center;
    box-shadow: 0 10px 35px rgba(0,0,0,.06);
    transition: .35s;
    border-top: 4px solid transparent;
}

    .purpose-card:hover {
        transform: translateY(-10px);
        border-top: 4px solid #C8A25A;
        box-shadow: 0 20px 50px rgba(0,0,0,.12);
    }

.purpose-icon {
    width: 85px;
    height: 85px;
    margin: auto;
    border-radius: 50%;
    background: #081426;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 34px;
    margin-bottom: 25px;
    transition: .35s;
}

.purpose-card:hover .purpose-icon {
    background: #C8A25A;
    transform: rotate(8deg);
}

.purpose-card h3 {
    font-size: 26px;
    font-weight: 700;
    margin-bottom: 18px;
    color: #081426;
}

.purpose-card p {
    line-height: 30px;
    color: #666;
}

.purpose-list {
    list-style: none;
    padding: 0;
    margin-top: 20px;
}

    .purpose-list li {
        padding: 8px 0;
        font-weight: 500;
        color: #444;
    }

        .purpose-list li::before {
            content: "✓";
            color: #C8A25A;
            font-weight: bold;
            margin-right: 10px;
        }
/*=========================================
WHY CHOOSE KREDENZA
=========================================*/

.why-kredenza {
    background: #f8f9fb;
}

.choose-card {
    background: #fff;
    padding: 35px;
    border-radius: 18px;
    text-align: center;
    height: 100%;
    transition: .35s;
    box-shadow: 0 8px 30px rgba(0,0,0,.06);
}

    .choose-card:hover {
        transform: translateY(-10px);
        box-shadow: 0 20px 50px rgba(0,0,0,.12);
    }

.choose-icon {
    width: 80px;
    height: 80px;
    margin: auto;
    margin-bottom: 25px;
    background: #081426;
    color: #fff;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 30px;
    transition: .35s;
}

.choose-card:hover .choose-icon {
    background: #C8A25A;
    transform: rotate(10deg);
}

.choose-card h4 {
    font-weight: 700;
    margin-bottom: 15px;
    color: #081426;
}

.choose-card p {
    line-height: 28px;
    color: #666;
}
/*==============================
INDUSTRIES ABOUT
==============================*/

.industries-about {
    background: #fff;
}

.industry-list {
    display: grid;
    grid-template-columns: repeat(2,1fr);
    gap: 18px;
    margin-top: 35px;
}

    .industry-list div {
        background: #f8f9fb;
        padding: 18px 22px;
        border-radius: 12px;
        font-weight: 600;
        transition: .35s;
    }

        .industry-list div:hover {
            background: #081426;
            color: #fff;
            transform: translateX(8px);
        }

    .industry-list i {
        color: #C8A25A;
        margin-right: 12px;
        font-size: 18px;
    }

.industry-image img {
    transition: .4s;
}

    .industry-image img:hover {
        transform: scale(1.02);
    }

@media(max-width:768px) {

    .industry-list {
        grid-template-columns: 1fr;
    }
}
/*==============================
COMMITMENT
==============================*/

.commitment-section {
    background: linear-gradient(rgba(8,20,38,.95), rgba(8,20,38,.95)), url('../img/commitment-bg.jpg');
    background-size: cover;
    background-position: center;
    padding: 90px 0;
}

    .commitment-section h2 {
        font-weight: 800;
        line-height: 1.3;
    }

    .commitment-section .btn {
        padding: 16px 38px;
        font-weight: 700;
        border-radius: 50px;
    }
.cta-about {
    background: #f8f9fb;
}

    .cta-about h2 {
        font-weight: 800;
        color: #081426;
    }
/*==================================
PRODUCTS PAGE HEADER
==================================*/

.products-header {
    background: linear-gradient(rgba(8,20,38,.80),rgba(8,20,38,.80)), url('../img/products-banner.jpg');
    background-size: cover;
    background-position: center;
    padding: 120px 0;
}
/*=========================================
PRODUCT CATEGORY
=========================================*/

.product-categories {
    background: #f8f9fb;
}

.category-card {
    background: #fff;
    padding: 35px 25px;
    border-radius: 18px;
    text-align: center;
    height: 100%;
    transition: .35s;
    box-shadow: 0 8px 30px rgba(0,0,0,.06);
    border-bottom: 4px solid transparent;
}

    .category-card:hover {
        transform: translateY(-10px);
        border-bottom: 4px solid #C8A25A;
        box-shadow: 0 20px 45px rgba(0,0,0,.12);
    }

    .category-card i {
        font-size: 42px;
        color: #C8A25A;
        margin-bottom: 20px;
        transition: .3s;
    }

    .category-card:hover i {
        transform: scale(1.15);
    }

    .category-card h4 {
        font-weight: 700;
        margin-bottom: 15px;
        color: #081426;
    }

    .category-card p {
        line-height: 28px;
        color: #666;
        font-size: 15px;
    }
/*============================
FEATURED PRODUCTS
============================*/

.featured-product {
    padding: 90px 0;
}

.product-image {
    width: 100%;
    transition: .4s;
}

    .product-image:hover {
        transform: scale(1.04);
    }

.product-features {
    margin-top: 30px;
}

    .product-features div {
        margin-bottom: 14px;
        font-weight: 600;
    }

    .product-features i {
        color: #C8A25A;
        margin-right: 10px;
    }

.spec-box {
    background: #f8f9fb;
    padding: 25px;
    border-left: 5px solid #C8A25A;
    border-radius: 12px;
}

    .spec-box div {
        display: flex;
        justify-content: space-between;
        padding: 12px 0;
        border-bottom: 1px solid #ddd;
    }

        .spec-box div:last-child {
            border-bottom: none;
        }

    .spec-box strong {
        color: #081426;
    }
/*=========================
PRODUCT BADGES
=========================*/

.product-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

    .product-badges span {
        background: #081426;
        color: #fff;
        padding: 8px 18px;
        border-radius: 30px;
        font-size: 14px;
        font-weight: 600;
        transition: .35s;
    }

        .product-badges span:hover {
            background: #C8A25A;
            transform: translateY(-3px);
        }

@media(max-width:768px) {

    .product-badges {
        justify-content: center;
    }
}
.product-image {
    background: #fff;
    padding: 35px;
    border-radius: 20px;
    box-shadow: 0 15px 40px rgba(0,0,0,.08);
    transition: .4s;
}

    .product-image:hover {
        transform: translateY(-8px) scale(1.03);
        box-shadow: 0 20px 50px rgba(0,0,0,.15);
    }
/*==============================
PRODUCT APPLICATIONS
==============================*/

.product-applications {
    background: #f8f9fb;
}

.application-card {
    background: #fff;
    padding: 35px 25px;
    border-radius: 18px;
    height: 100%;
    text-align: center;
    transition: .35s;
    box-shadow: 0 10px 30px rgba(0,0,0,.06);
    border-top: 4px solid transparent;
}

    .application-card:hover {
        transform: translateY(-10px);
        border-top: 4px solid #C8A25A;
        box-shadow: 0 20px 45px rgba(0,0,0,.12);
    }

    .application-card i {
        font-size: 42px;
        color: #C8A25A;
        margin-bottom: 20px;
        transition: .35s;
    }

    .application-card:hover i {
        transform: rotate(8deg) scale(1.1);
    }

    .application-card h5 {
        font-weight: 700;
        margin-bottom: 15px;
        color: #081426;
    }

    .application-card p {
        color: #666;
        line-height: 28px;
        margin-bottom: 0;
    }
/*====================================
VALVE SELECTION GUIDE
====================================*/

.selection-guide {
    background: #fff;
}

.guide-feature {
    margin-bottom: 18px;
    font-size: 17px;
    font-weight: 600;
}

    .guide-feature i {
        color: #C8A25A;
        margin-right: 12px;
    }

.guide-box {
    background: #081426;
    padding: 45px;
    border-radius: 20px;
    color: #fff;
    box-shadow: 0 20px 50px rgba(0,0,0,.18);
}

    .guide-box h3 {
        font-weight: 700;
        margin-bottom: 35px;
    }

.guide-step {
    display: flex;
    align-items: flex-start;
    margin-bottom: 28px;
}

    .guide-step:last-child {
        margin-bottom: 0;
    }

    .guide-step span {
        width: 60px;
        height: 60px;
        background: #C8A25A;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        font-weight: 700;
        font-size: 20px;
        color: #081426;
        margin-right: 20px;
        flex-shrink: 0;
    }

    .guide-step h5 {
        color: #fff;
        margin-bottom: 6px;
    }

    .guide-step p {
        color: #d6d6d6;
        margin-bottom: 0;
        line-height: 26px;
    }

@media(max-width:991px) {

    .guide-box {
        margin-top: 40px;
    }
}
/*==================================
WHY PRODUCTS
==================================*/

.why-products {
    background: #f8f9fb;
}

.why-product-card {
    background: #fff;
    padding: 40px 30px;
    border-radius: 18px;
    text-align: center;
    height: 100%;
    transition: .4s;
    box-shadow: 0 12px 35px rgba(0,0,0,.06);
}

    .why-product-card:hover {
        background: #081426;
        transform: translateY(-10px);
    }

    .why-product-card i {
        font-size: 46px;
        color: #C8A25A;
        margin-bottom: 22px;
        transition: .35s;
    }

    .why-product-card:hover i {
        transform: scale(1.15);
    }

    .why-product-card h4 {
        font-weight: 700;
        margin-bottom: 15px;
        color: #081426;
        transition: .35s;
    }

    .why-product-card:hover h4 {
        color: #fff;
    }

    .why-product-card p {
        color: #666;
        line-height: 28px;
        transition: .35s;
        margin-bottom: 0;
    }

    .why-product-card:hover p {
        color: #ddd;
    }
/*==================================
FINAL CTA
==================================*/

.products-cta {
    padding: 90px 0;
    background: linear-gradient(135deg,#d8b36a,#c79a47,#b8862b);
    color: #081426;
    position: relative;
    overflow: hidden;
}

    .products-cta::before {
        content: "";
        position: absolute;
        top: -120px;
        right: -120px;
        width: 320px;
        height: 320px;
        background: rgba(255,255,255,.12);
        border-radius: 50%;
    }

    .products-cta::after {
        content: "";
        position: absolute;
        bottom: -150px;
        left: -100px;
        width: 280px;
        height: 280px;
        background: rgba(255,255,255,.08);
        border-radius: 50%;
    }

    .products-cta .container {
        position: relative;
        z-index: 2;
    }

    .products-cta h2 {
        font-size: 44px;
        font-weight: 800;
        line-height: 1.2;
        color: #081426;
        margin-bottom: 20px;
    }

    .products-cta p {
        font-size: 19px;
        color: #3d3d3d;
        line-height: 32px;
        max-width: 700px;
        margin-bottom: 0;
    }

    .products-cta .btn {
        padding: 15px 35px;
        border-radius: 50px;
        font-weight: 700;
        transition: .35s;
        margin-top: 10px;
    }

    .products-cta .btn-light {
        background: #081426;
        color: #fff;
        border: none;
    }

        .products-cta .btn-light:hover {
            background: #000;
            transform: translateY(-3px);
        }

    .products-cta .btn-outline-light {
        border: 2px solid #081426;
        color: #081426;
        background: transparent;
    }

        .products-cta .btn-outline-light:hover {
            background: #081426;
            color: #fff;
        }

@media(max-width:991px) {

    .products-cta {
        text-align: center;
        padding: 70px 0;
    }

        .products-cta h2 {
            font-size: 34px;
        }

        .products-cta .text-lg-end {
            text-align: center !important;
            margin-top: 35px;
        }
}
.cta-badges {
    display: flex;
    gap: 25px;
    flex-wrap: wrap;
    margin-top: 25px;
}

    .cta-badges span {
        font-weight: 600;
        color: #081426;
    }

    .cta-badges i {
        color: #fff;
        background: #081426;
        width: 28px;
        height: 28px;
        border-radius: 50%;
        display: inline-flex;
        align-items: center;
        justify-content: center;
        margin-right: 8px;
        font-size: 12px;
    }
/*=====================================
BRANDS HERO
=====================================*/

.brand-header {
    background: linear-gradient(rgba(8,20,38,.88), rgba(8,20,38,.88)), url(img/brand-bg.jpg);
    background-size: cover;
    background-position: center;
}

.page-tag {
    display: inline-block;
    background: #C8A25A;
    color: #081426;
    padding: 8px 20px;
    border-radius: 40px;
    font-weight: 700;
    letter-spacing: 1px;
    margin-bottom: 25px;
    font-size: 13px;
}

.hero-brand-image {
    max-height: 420px;
    animation: floatBrand 5s ease-in-out infinite;
}

@keyframes floatBrand {

    0% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-12px);
    }

    100% {
        transform: translateY(0);
    }
}
/*=========================
      BRANDS PAGE
==========================*/

.brands-section {
    background: #f8fafc;
}

.brand-panel {
    background: #fff;
    padding: 40px;
    border-radius: 18px;
    transition: .4s;
    border: 1px solid #ececec;
    box-shadow: 0 12px 35px rgba(0,0,0,.06);
}

    .brand-panel:hover {
        transform: translateY(-6px);
        box-shadow: 0 20px 50px rgba(0,0,0,.12);
    }

.brand-logo-large {
    max-height: 90px;
    transition: .4s;
}

.brand-panel:hover .brand-logo-large {
    transform: scale(1.05);
}

.brand-panel h3 {
    color: #0f203d;
    font-weight: 700;
    margin-bottom: 10px;
}

.brand-subtitle {
    color: #c79a4a;
    font-weight: 600;
    margin-bottom: 15px;
}

.brand-badges {
    margin-top: 20px;
}

    .brand-badges span {
        display: inline-block;
        padding: 8px 18px;
        background: #eef3f9;
        color: #0f203d;
        border-radius: 50px;
        margin-right: 10px;
        margin-bottom: 10px;
        font-size: 14px;
        font-weight: 600;
    }

@media(max-width:991px) {

    .brand-panel {
        text-align: center;
    }

    .brand-logo-large {
        margin-bottom: 25px;
    }

    .brand-panel .btn {
        margin-top: 25px;
    }
}

/*=========================
WHY OUR BRANDS
==========================*/

.brand-advantages {
    background: #ffffff;
}

.advantage-box {
    background: #fff;
    padding: 40px 30px;
    border-radius: 18px;
    text-align: center;
    transition: .4s;
    height: 100%;
    border: 1px solid #ececec;
    box-shadow: 0 12px 35px rgba(0,0,0,.06);
}

    .advantage-box:hover {
        transform: translateY(-8px);
        box-shadow: 0 18px 45px rgba(0,0,0,.12);
        border-color: #c79a4a;
    }

    .advantage-box i {
        font-size: 50px;
        color: #c79a4a;
        margin-bottom: 20px;
        transition: .4s;
    }

    .advantage-box:hover i {
        transform: scale(1.15);
    }

    .advantage-box h4 {
        font-weight: 700;
        color: #10233f;
        margin-bottom: 15px;
    }

    .advantage-box p {
        color: #666;
        font-size: 15px;
        line-height: 1.7;
        margin: 0;
    }
/*=========================
INDUSTRY MINI BOXES
==========================*/

.brand-industries {
    background: #f8fafc;
}

.industry-mini {
    background: #fff;
    padding: 35px 20px;
    border-radius: 18px;
    text-align: center;
    transition: .35s;
    border: 1px solid #ececec;
    height: 100%;
}

    .industry-mini:hover {
        background: #10233f;
        transform: translateY(-8px);
        box-shadow: 0 18px 40px rgba(0,0,0,.12);
    }

    .industry-mini i {
        font-size: 42px;
        color: #c79a4a;
        margin-bottom: 18px;
        transition: .3s;
    }

    .industry-mini h5 {
        font-weight: 700;
        color: #10233f;
        margin: 0;
        transition: .3s;
    }

    .industry-mini:hover h5 {
        color: #fff;
    }

    .industry-mini:hover i {
        transform: scale(1.15);
    }
.brand-cta {
    background: #fff;
}

.brand-cta-box {
    background: linear-gradient(135deg,#10233f,#1d3d6d);
    padding: 70px 50px;
    border-radius: 24px;
    color: #fff;
    box-shadow: 0 25px 60px rgba(0,0,0,.18);
}

    .brand-cta-box h2 {
        font-size: 40px;
        font-weight: 700;
        margin-bottom: 20px;
    }

    .brand-cta-box p {
        font-size: 18px;
        line-height: 1.8;
        max-width: 760px;
        margin: 0 auto 35px;
        color: rgba(255,255,255,.9);
    }

.brand-cta .btn-outline-primary {
    border: 2px solid #fff;
    color: #fff;
}

    .brand-cta .btn-outline-primary:hover {
        background: #fff;
        color: #10233f;
    }
.page-downloads {
    background: linear-gradient(rgba(16,35,63,.82), rgba(16,35,63,.82)), url(img/download-banner.jpg);
    background-size: cover;
    background-position: center;
}
.download-category {
    background: #fff;
    padding: 45px 25px;
    border-radius: 20px;
    text-align: center;
    transition: .35s;
    height: 100%;
    border: 1px solid #eee;
    box-shadow: 0 15px 40px rgba(0,0,0,.05);
}

    .download-category:hover {
        transform: translateY(-8px);
        border-color: #c79a4a;
    }

    .download-category i {
        font-size: 48px;
        color: #c79a4a;
        margin-bottom: 20px;
    }

    .download-category h4 {
        font-weight: 700;
        color: #10233F;
    }

    .download-category p {
        margin: 0;
        color: #666;
    }
/*=========================
FEATURED DOWNLOADS
==========================*/

.downloads-library {
    background: #ffffff;
}

.download-card {
    background: #fff;
    padding: 35px;
    border-radius: 20px;
    border: 1px solid #ececec;
    height: 100%;
    transition: .35s;
    box-shadow: 0 15px 40px rgba(0,0,0,.05);
}

    .download-card:hover {
        transform: translateY(-8px);
        box-shadow: 0 20px 45px rgba(0,0,0,.12);
        border-color: #c79a4a;
    }

.pdf-icon {
    width: 80px;
    height: 80px;
    background: #f8fafc;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: auto;
    margin-bottom: 25px;
}

    .pdf-icon i {
        font-size: 40px;
        color: #d62828;
    }

.download-card h4 {
    font-weight: 700;
    text-align: center;
    color: #10233F;
    margin-bottom: 15px;
}

.download-card p {
    text-align: center;
    color: #666;
    line-height: 1.7;
    min-height: 80px;
}

.download-info {
    display: flex;
    justify-content: space-between;
    margin: 25px 0;
    padding: 12px 0;
    border-top: 1px solid #eee;
    border-bottom: 1px solid #eee;
    font-weight: 600;
    color: #10233F;
}

.download-card .btn {
    font-weight: 600;
}
.page-contact {
    background: linear-gradient(rgba(16,35,63,.82), rgba(16,35,63,.82)), url(img/contact-banner.jpg);
    background-size: cover;
    background-position: center;
}
/*=========================
CONTACT INFO
==========================*/

.contact-info-section {
    background: #f8fafc;
}

.contact-info-box {
    background: #fff;
    padding: 40px 30px;
    border-radius: 18px;
    text-align: center;
    height: 100%;
    transition: .35s;
    border: 1px solid #ececec;
    box-shadow: 0 12px 35px rgba(0,0,0,.05);
}

    .contact-info-box:hover {
        transform: translateY(-8px);
        border-color: #C79A4A;
        box-shadow: 0 20px 45px rgba(0,0,0,.12);
    }

.contact-icon {
    width: 80px;
    height: 80px;
    margin: auto;
    margin-bottom: 25px;
    border-radius: 50%;
    background: #10233F;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: .35s;
}

.contact-info-box:hover .contact-icon {
    background: #C79A4A;
    transform: rotate(8deg);
}

.contact-icon i {
    font-size: 32px;
    color: #fff;
}

.contact-info-box h4 {
    font-weight: 700;
    color: #10233F;
    margin-bottom: 15px;
}

.contact-info-box p {
    margin: 0;
    line-height: 1.8;
    color: #666;
    font-size: 15px;
}
/*=========================
CONTACT FORM
==========================*/

.contact-form-section {
    background: #fff;
}

.contact-feature {
    margin-bottom: 18px;
    font-size: 17px;
    font-weight: 500;
    color: #444;
}

    .contact-feature i {
        color: #C79A4A;
        margin-right: 12px;
    }

.contact-form-box {
    background: #fff;
    padding: 45px;
    border-radius: 20px;
    box-shadow: 0 18px 45px rgba(0,0,0,.08);
    border: 1px solid #ececec;
}

    .contact-form-box .form-control,
    .contact-form-box .form-select {
        height: 58px;
        border-radius: 12px;
        border: 1px solid #ddd;
        padding-left: 18px;
    }

    .contact-form-box textarea {
        height: auto !important;
        padding-top: 15px;
        resize: none;
    }

    .contact-form-box .form-control:focus,
    .contact-form-box .form-select:focus {
        border-color: #C79A4A;
        box-shadow: 0 0 0 .2rem rgba(199,154,74,.15);
    }

    .contact-form-box .btn {
        font-size: 17px;
        font-weight: 600;
    }
/*=========================
WHY CONTACT
==========================*/

.why-contact {
    background: #f8fafc;
}

.why-box {
    background: #fff;
    padding: 40px 30px;
    text-align: center;
    border-radius: 18px;
    height: 100%;
    transition: .35s;
    border: 1px solid #ececec;
    box-shadow: 0 15px 35px rgba(0,0,0,.05);
}

    .why-box:hover {
        transform: translateY(-8px);
        border-color: #C79A4A;
        box-shadow: 0 20px 45px rgba(0,0,0,.12);
    }

    .why-box i {
        font-size: 48px;
        color: #C79A4A;
        margin-bottom: 20px;
        transition: .35s;
    }

    .why-box:hover i {
        transform: scale(1.15);
    }

    .why-box h4 {
        font-weight: 700;
        color: #10233F;
        margin-bottom: 15px;
    }

    .why-box p {
        color: #666;
        line-height: 1.8;
        margin: 0;
    }
/*=========================
OFFICE LOCATION
==========================*/

.office-location {
    background: #fff;
}

.office-card {
    background: #10233F;
    padding: 40px;
    border-radius: 20px;
    color: #fff;
    height: 100%;
    box-shadow: 0 20px 45px rgba(0,0,0,.10);
}

    .office-card h3 {
        font-weight: 700;
        margin-bottom: 20px;
    }

    .office-card hr {
        border-color: rgba(255,255,255,.2);
        margin: 20px 0;
    }

    .office-card p {
        margin-bottom: 18px;
        line-height: 1.8;
    }

    .office-card i {
        color: #C79A4A;
        width: 25px;
    }

    .office-card .btn {
        font-weight: 600;
    }

.map-box {
    overflow: hidden;
    border-radius: 20px;
    box-shadow: 0 20px 45px rgba(0,0,0,.10);
    border: 6px solid #fff;
}

    .map-box iframe {
        display: block;
    }
/*=========================
FAQ
==========================*/

.faq-section {
    background: #f8fafc;
}

.accordion-item {
    border: none;
    margin-bottom: 15px;
    border-radius: 15px !important;
    overflow: hidden;
    box-shadow: 0 8px 25px rgba(0,0,0,.05);
}

.accordion-button {
    font-weight: 600;
    padding: 22px;
    color: #10233F;
}

    .accordion-button:not(.collapsed) {
        background: #10233F;
        color: #fff;
    }

    .accordion-button:focus {
        box-shadow: none;
    }
/*=========================
INDUSTRIES HERO
=========================*/

.industries-hero {
    padding: 120px 0 90px;
    background: linear-gradient(135deg,#10233F,#16355E);
    color: #fff;
    overflow: hidden;
}

    .industries-hero h1 {
        font-size: 52px;
        font-weight: 800;
        line-height: 1.2;
        margin: 20px 0;
    }

    .industries-hero p {
        font-size: 18px;
        opacity: .9;
        line-height: 1.9;
        margin-bottom: 35px;
    }

.hero-tag {
    display: inline-block;
    padding: 10px 24px;
    background: #C79A4A;
    border-radius: 30px;
    font-weight: 600;
    letter-spacing: 1px;
}

.industries-hero img {
    animation: floatIndustry 5s ease-in-out infinite;
}

@keyframes floatIndustry {

    0%,100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-12px);
    }
}

@media(max-width:991px) {

    .industries-hero {
        text-align: center;
        padding: 80px 0;
    }

        .industries-hero h1 {
            font-size: 38px;
        }

        .industries-hero img {
            margin-top: 50px;
        }
}
/*=========================
INDUSTRY CARDS
=========================*/

.industries-section {
    background: #f8fafc;
}

.industry-card {
    background: #fff;
    padding: 35px;
    border-radius: 20px;
    height: 100%;
    transition: .35s;
    border: 1px solid #ececec;
    box-shadow: 0 15px 35px rgba(0,0,0,.05);
    position: relative;
    overflow: hidden;
}

    .industry-card::before {
        content: "";
        position: absolute;
        top: 0;
        left: 0;
        width: 5px;
        height: 0;
        background: #C79A4A;
        transition: .4s;
    }

    .industry-card:hover::before {
        height: 100%;
    }

    .industry-card:hover {
        transform: translateY(-10px);
        box-shadow: 0 25px 45px rgba(0,0,0,.12);
    }

.industry-icon {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: #10233F;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 25px;
    transition: .35s;
}

.industry-card:hover .industry-icon {
    background: #C79A4A;
    transform: rotate(10deg);
}

.industry-icon i {
    font-size: 34px;
    color: #fff;
}

.industry-card h4 {
    font-weight: 700;
    margin-bottom: 18px;
    color: #10233F;
}

.industry-card p {
    color: #666;
    line-height: 1.8;
}

.industry-card ul {
    padding-left: 18px;
    margin-top: 20px;
}

    .industry-card ul li {
        margin-bottom: 10px;
        color: #555;
    }
/*==============================
INDUSTRY PROCESS
===============================*/

.industry-process {
    background: #fff;
}

.process-box {
    background: #fff;
    padding: 35px;
    text-align: center;
    border-radius: 18px;
    border: 1px solid #ececec;
    box-shadow: 0 15px 35px rgba(0,0,0,.05);
    position: relative;
    transition: .35s;
    height: 100%;
}

    .process-box:hover {
        transform: translateY(-8px);
        box-shadow: 0 20px 45px rgba(0,0,0,.12);
    }

.process-number {
    position: absolute;
    top: 18px;
    right: 18px;
    font-size: 34px;
    font-weight: 800;
    color: #e8e8e8;
}

.process-box i {
    font-size: 42px;
    color: #C79A4A;
    margin-bottom: 20px;
}

.process-box h4 {
    font-weight: 700;
    margin-bottom: 15px;
    color: #10233F;
}

.process-box p {
    color: #666;
    line-height: 1.8;
    margin: 0;
}
/*==================================
INDUSTRY STRENGTH
===================================*/

.industry-strength {
    background: #f8fafc;
}

.strength-box {
    background: #fff;
    padding: 45px 30px;
    text-align: center;
    border-radius: 20px;
    height: 100%;
    border: 1px solid #ececec;
    transition: .35s;
    box-shadow: 0 15px 35px rgba(0,0,0,.05);
}

    .strength-box:hover {
        transform: translateY(-10px);
        border-color: #C79A4A;
        box-shadow: 0 22px 45px rgba(0,0,0,.12);
    }

    .strength-box h2 {
        font-size: 48px;
        font-weight: 800;
        color: #C79A4A;
        margin-bottom: 15px;
    }

    .strength-box h5 {
        font-weight: 700;
        color: #10233F;
        margin-bottom: 15px;
    }

    .strength-box p {
        color: #666;
        margin: 0;
        line-height: 1.8;
    }
/*==================================
INDUSTRY APPLICATIONS
===================================*/

.industry-applications {
    background: #fff;
}

.application-box {
    background: #fff;
    padding: 35px;
    border-radius: 18px;
    border: 1px solid #e9ecef;
    box-shadow: 0 15px 35px rgba(0,0,0,.05);
    transition: .35s;
    height: 100%;
}

    .application-box:hover {
        transform: translateY(-8px);
        border-color: #C79A4A;
        box-shadow: 0 20px 45px rgba(0,0,0,.12);
    }

.application-header {
    display: flex;
    align-items: center;
    margin-bottom: 25px;
}

    .application-header i {
        width: 65px;
        height: 65px;
        background: #10233F;
        color: #fff;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 28px;
        margin-right: 20px;
        transition: .35s;
    }

.application-box:hover .application-header i {
    background: #C79A4A;
}

.application-header h4 {
    margin: 0;
    font-weight: 700;
    color: #10233F;
}

.application-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

    .application-tags span {
        padding: 10px 18px;
        background: #f5f7fa;
        border-radius: 30px;
        font-size: 14px;
        font-weight: 600;
        color: #10233F;
        border: 1px solid #e5e5e5;
        transition: .3s;
    }

        .application-tags span:hover {
            background: #C79A4A;
            color: #fff;
            border-color: #C79A4A;
        }
/*==================================
APPOINTMENT HERO
===================================*/

.appointment-header {
    padding: 120px 0 80px;
    background: linear-gradient(135deg,#10233F,#1c3d6d);
    color: #fff;
    overflow: hidden;
}

.page-tag {
    display: inline-block;
    background: #C79A4A;
    padding: 10px 25px;
    border-radius: 40px;
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 1px;
    margin-bottom: 25px;
}

.appointment-header h1 {
    font-size: 52px;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 25px;
}

.appointment-header p {
    font-size: 18px;
    line-height: 1.9;
    opacity: .95;
    margin-bottom: 35px;
}

.hero-points {
    display: grid;
    grid-template-columns: repeat(2,1fr);
    gap: 18px;
}

    .hero-points div {
        font-weight: 600;
    }

    .hero-points i {
        color: #C79A4A;
        margin-right: 10px;
    }

@media(max-width:768px) {

    .appointment-header {
        padding: 90px 0 60px;
        text-align: center;
    }

    .hero-points {
        grid-template-columns: 1fr;
        margin-top: 25px;
    }

    .appointment-header h1 {
        font-size: 36px;
    }
}
/*=====================================================
REQUEST A QUOTE SECTION
=====================================================*/

.quote-section {
    background: #f8f9fb;
    position: relative;
    overflow: hidden;
}

/* Left Information */

.quote-info {
    padding: 20px 10px;
}

    .quote-info h2 {
        font-size: 40px;
        font-weight: 800;
        color: #10233F;
        margin-bottom: 25px;
    }

    .quote-info p {
        font-size: 16px;
        line-height: 1.9;
        color: #666;
    }

.info-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 28px;
}

    .info-item i {
        width: 65px;
        height: 65px;
        min-width: 65px;
        background: #C79A4A;
        color: #fff;
        border-radius: 50%;
        display: flex;
        justify-content: center;
        align-items: center;
        font-size: 24px;
        margin-right: 20px;
        transition: .35s;
    }

    .info-item:hover i {
        transform: rotate(8deg) scale(1.08);
        background: #10233F;
    }

    .info-item h5 {
        font-size: 20px;
        font-weight: 700;
        color: #10233F;
        margin-bottom: 8px;
    }

    .info-item p {
        margin: 0;
        color: #666;
    }


/*===================================
FORM CARD
===================================*/

.quote-form {
    background: #fff;
    padding: 45px;
    border-radius: 22px;
    box-shadow: 0 20px 60px rgba(0,0,0,.08);
    border: 1px solid rgba(0,0,0,.05);
}


    /*===================================
INPUTS
===================================*/

    .quote-form .form-control,
    .quote-form .form-select {
        height: 58px;
        border-radius: 14px;
        border: 1px solid #dcdcdc;
        padding-left: 18px;
        font-size: 15px;
        transition: .35s;
        box-shadow: none;
    }


    .quote-form textarea.form-control {
        min-height: 170px;
        padding-top: 18px;
        resize: none;
    }


    .quote-form .form-control:focus,
    .quote-form .form-select:focus {
        border-color: #C79A4A;
        box-shadow: 0 0 0 .2rem rgba(199,154,74,.15);
    }


    /*===================================
PLACEHOLDER
===================================*/

    .quote-form input::placeholder,
    .quote-form textarea::placeholder {
        color: #9d9d9d;
    }


    /*===================================
SELECT
===================================*/

    .quote-form select {
        color: #666;
    }


    /*===================================
FILE UPLOAD
===================================*/

    .quote-form input[type=file] {
        padding: 15px;
        cursor: pointer;
    }


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

    .quote-form .btn {
        background: #10233F;
        border: none;
        font-weight: 700;
        letter-spacing: .5px;
        transition: .35s;
        min-width: 250px;
    }

        .quote-form .btn:hover {
            background: #C79A4A;
            transform: translateY(-3px);
            box-shadow: 0 15px 30px rgba(199,154,74,.35);
        }


    /*===================================
OPTIONAL LABELS
===================================*/

    .quote-form label {
        font-weight: 600;
        margin-bottom: 8px;
        color: #10233F;
    }


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

.quote-form {
    transition: .4s;
}

    .quote-form:hover {
        transform: translateY(-6px);
    }


/*===================================
RESPONSIVE
===================================*/

@media(max-width:991px) {

    .quote-form {
        padding: 30px;
        margin-top: 40px;
    }

    .quote-info {
        margin-bottom: 10px;
    }

        .quote-info h2 {
            font-size: 32px;
        }
}


@media(max-width:767px) {

    .quote-form {
        padding: 25px;
    }

    .quote-info h2 {
        font-size: 28px;
    }

    .quote-form .btn {
        width: 100%;
    }
}
.alert {
    border: none;
    border-radius: 15px;
    font-weight: 600;
    animation: fadeIn .5s;
}

.alert-success {
    background: #d1fae5;
    color: #065f46;
}

.alert-danger {
    background: #fee2e2;
    color: #991b1b;
}

@keyframes fadeIn {

    from {
        opacity: 0;
        transform: translateY(-15px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}