:root {
    --black: #000000;
    --white: #ffffff;
    --light-gray: #666666;
    --gray: #2e2d2d;
    --golden: #d4883a;
    --blue: #1f4671;
    --btn-blue: #0056b3;
    --lg-blue: #00a0e3;
    --u-light-gray: #ddd;
    --light-gray-secondary: #F4F3F3;
    --hover: #e31e23;
    --nav-text-color: #111;
    --nav-hover-bg: #f8f9fa;
    --nav-grey-bg: #EEEDEB;
    --dropdown-shadow: rgba(0, 0, 0, 0.2);
}

@font-face {
    font-family: fontOM;
    src: url(../fonts/Outfit-Medium.ttf);
}

@font-face {
    font-family: fontOS;
    src: url(../fonts/Outfit-SemiBold.ttf);
}

@font-face {
    font-family: fontPL;
    src: url(../fonts/Poppins-Light.ttf);
}

@font-face {
    font-family: fontPR;
    src: url(../fonts/Poppins-Regular.ttf);
}

@font-face {
    font-family: fontPM;
    src: url(../fonts/Poppins-Medium.ttf);
}

@font-face {
    font-family: fontPB;
    src: url(../fonts/Poppins-Bold.ttf);
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: fontPB;
}

body {
    font-family: fontPR;
}

/* =============================================================== */
/* Start Navbar Here */
/* =============================================================== */

.navbar {
    width: 100%;
    padding: 10px 60px;
    background-color: #f8f9fa;
}

.navbar img {
    width: 16rem;
}

.navbar .nav-link {
    margin: 10px 16px;
    text-transform: uppercase;
    color: var(--nav-text-color);
    transition: color 300ms cubic-bezier(0.075, 0.82, 0.165, 1);
    position: relative;
    padding: 10px 0;
    z-index: 1;
}

.navbar .nav-link::before,
.navbar .nav-link::after {
    content: '';
    position: absolute;
    left: 0;
    right: 0;
    height: 3px;
    background-color: transparent;
    transition: transform 300ms cubic-bezier(0.075, 0.82, 0.165, 1);
    color: var(--hover);
    z-index: -1;
}

.navbar .nav-link::before {
    top: 0;
    transform: scaleX(0);
}

.navbar .nav-link::after {
    bottom: 0;
    transform: scaleX(0);
}

.navbar-nav .nav-item:hover .nav-link::before,
.navbar-nav .nav-item:hover .nav-link::after {
    background-color: var(--hover);
    transform: scaleX(1);
    z-index: 2;
}

.navbar .nav-link.active {
    color: var(--hover);
}

.dropdown-menu {
    background-color: var(--white);
    color: var(--nav-text-color);
    border: none;
    box-shadow: 0 8px 16px var(--dropdown-shadow);
    z-index: 1;
}

.navbar-nav .nav-link.show{
    color: var(--hover) !important;
}

.navbar-nav .nav-link.show:hover{
    color: var(--hover) !important;
}

.dropdown-item {
    padding: 8px 16px;
    transition: background-color 200ms ease, color 200ms ease;
}

.dropdown-item:hover,
.dropdown-item:focus {
    color: var(--white);
    background-color: var(--hover);
}

.navbar-toggler {
    margin-left: auto;
}

.btn-primary {
    padding: 12px 22px;
    background-color: var(--hover);
    color: #fff;
    border-color: var(--hover);
    border-radius: 0;
    transition: background-color 300ms ease, border-color 300ms ease;
}

.btn-primary:hover {
    background-color: var(--btn-blue);
    border-color: var(--btn-blue);
}

.nav-item.dropdown .nav-link .bi-chevron-down {
    margin-left: 5px;
    transition: transform 300ms cubic-bezier(0.075, 0.82, 0.165, 1);
}

.nav-item.dropdown:hover .nav-link .bi-chevron-down {
    transform: rotate(180deg);
}

/* =============================================================== */
/* End Navbar Here */
/* =============================================================== */

/* =============================================================== */
/* Start Slider Here */
/* =============================================================== */

.carousel-inner {
    position: relative;
    width: 100%;
    overflow: hidden;
}

/* =============================================================== */
/* End Slider Here */
/* =============================================================== */

/* =============================================================== */
/* Start About Us Here */
/* =============================================================== */

/* body {
    line-height: 1.6;
} */

.section-about {
    padding-top: 3rem !important;
}

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

/* .section-title {
    font-size: 2.5rem;
    font-weight: bold;
    margin-bottom: 1.5rem;
} */

.about-label {
    display: block;
    font-size: 1.25rem;
    font-weight: bold;
    margin-bottom: 0.5rem;
    color: var(--light-gray);
}

.about-description {
    font-size: 1.125rem;
    color: #555;
    margin-bottom: 2rem;
}

.about-us-container {
    padding-bottom: 50px;
}

.about-us-title {
    color: #333;
    font-weight: bold;
    margin-bottom: 1.5rem;
}

.about-us-content {
    margin-top: 2rem;
}

.team-photo {
    margin-bottom: 1rem;
}

.section-title {
    color: #555;
    font-weight: bold;
}

.section-text {
    color: #777;
    line-height: 1.6;
}

.team-section {
    margin-top: 3rem;
}

.team-member {
    text-align: center;
}

.team-member-photo {
    margin-bottom: 1rem;
}

.team-member-name {
    color: #333;
    margin-top: 10px;
    margin-bottom: 5px;
}

.team-member-role {
    color: #999;
}

/* =============================================================== */
/* End About Us Here */
/* =============================================================== */


/* =============================================================== */
/* Start why us Here */
/* =============================================================== */
.why-us{
    padding-bottom: 3rem;
}

/* =============================================================== */
/* End why Us Here */
/* =============================================================== */


/* =============================================================== */
/* Start Second Footer Here */
/* =============================================================== */

.second-footer {
    padding: 15rem 0;
    background-image: url(../images/background/b1.webp);
    /* background-size: cover; */
    background-size: 100%;
    background-repeat: no-repeat;
    background-position: center;
    background-attachment: fixed;
}

/* =============================================================== */
/* Start Second Footer Here */
/* =============================================================== */

/* =============================================================== */
/* Start Counter Here */
/* =============================================================== */

.counter {
    padding: 50px 0px 50px;
    background-color: #333333;
}

.counter-container {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 1rem 1.3rem;
    background-color: var(--white);
    border-radius: 10rem;
    /* border: 2px dashed var(--u-light-gray); */
    border-image: linear-gradient(45deg, var(--u-light-gray), var(--u-dark-gray)) 1;
}

.counter-container i {
    font-size: 4rem;
    padding: 0px 14px;
    border-radius: 14rem;
    color: var(--white);
    background-color: var(--lg-blue);
}

.counter h1 {
    font-size: 48px;
    color: #333;
    margin: 0;
    animation: count-up 2s ease-out;
    text-transform: uppercase;
}

.counter label {
    text-transform: uppercase;
}

@keyframes count-up {
    0% {
        opacity: 0;
        transform: translateY(50%);
    }

    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

/* =============================================================== */
/* End Counter Here */
/* =============================================================== */

/* =============================================================== */
/* Start Nav Pill Here */
/* =============================================================== */

.navpills-section {
    /* background-color: #f8f9fa; */
    padding: 3rem 0px;
}

.nav-pills {
    width: 100%;
}

.nav-pills .nav-link {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 15px;
    margin-bottom: 5px;
    border-radius: 0px;
    transition: background-color 0.3s ease;
    text-align: left;
    color: #495057;
    background-color: var(--nav-grey-bg);
}

.nav-pills .nav-link.active,
.nav-pills .nav-link:hover {
    background-color: var(--hover);
    color: var(--white);
}

/* 
.tab-content {
    padding: 20px;
    background-color: var(--white);
    border: 1px solid #ddd;
    border-radius: 5px;
} */

.tab-content {
    text-align: justify;
}

.bi-arrow-right-short {
    margin-left: auto;
}

/* =============================================================== */
/* End Nav Pill Here */
/* =============================================================== */

/* =============================================================== */
/* Start Back To Top Here */
/* =============================================================== */

#btn-back-to-top {
    position: fixed;
    bottom: 20px;
    right: 20px;
    display: none;
    z-index: 1000;
    background-color: rgba(0, 0, 0, 0.5);
    border: none;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

#btn-back-to-top i {
    font-size: 18px;
    color: white;
}

/* =============================================================== */
/* End Back To Top Here */
/* =============================================================== */

/* =============================================================== */
/* Start Floating Icon Here */
/* =============================================================== */

.wp-button {
    margin-top: 14px;
}

.float {
    position: fixed;
    width: 60px;
    height: 60px;
    bottom: 86px;
    right: 20px;
    background-color: #25d366;
    color: #FFF;
    border-radius: 50px;
    text-align: center;
    font-size: 35px;
    box-shadow: 2px 2px 3px #999;
    z-index: 100;
}

/* =============================================================== */
/* Start Floating Icon Here */
/* =============================================================== */

/* =============================================================== */
/* Start Contact Us Here */
/* =============================================================== */

.contact-section {
    margin: 20px 0 80px;
}

.contact-details p {
    line-height: 1.6;
}

.contact-details a {
    text-decoration: none;
    color: var(--black);
}

.icon {
    font-size: 1.5rem;
    vertical-align: middle;
    margin-right: 8px;
}

.contact-details {
    background: #f9f9f9;
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

.map-container {
    height: 400px;
    width: 100%;
    border-radius: 8px;
    overflow: hidden;
}

/* =============================================================== */
/* End Contact Us Here */
/* =============================================================== */

/* =============================================================== */
/* Start Products Here */
/* =============================================================== */

.header-product {
    padding: 16px 0;
    text-align: center;
}

.header-product h2 {
    margin: 0;
    font-size: 2rem;
    color: #333;
}

.product-section {
    padding: 40px 0;
}

.product-box {
    background: #fff;
    padding: 20px;
    margin-bottom: 30px;
    border: 1px solid #e0eded;
    border-radius: 8px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.product-box:hover {
    box-shadow: 0 8px 12px rgba(0, 0, 0, 0.15);
    transform: translateY(-5px);
}

.product-box figure {
    margin: 0;
    text-align: center;
}

.product-img {
    max-width: 100%;
    height: auto;
    display: block;
    border-radius: 8px;
}

.product-title {
    margin: 15px 0 0;
    text-align: center;
}

.product-title a {
    font-size: 1.2rem;
    font-weight: 600;
    color: #333;
    text-decoration: none;
    transition: color 0.3s;
}

.product-title a:hover {
    color: var(--hover);
}

/* =============================================================== */
/* End Products Here */
/* =============================================================== */

/* =============================================================== */
/* Start Contact Brochure Here */
/* =============================================================== */

.contact-brochure {
    padding: 3rem 0;
    background-color: var(--hover);
    color: var(--white);
    background-repeat: no-repeat;
    background-size: 30%;
    background-position: 0px 6.2rem;
}

.contact-brochure .btn-primary-2 {
    padding: 12px 22px;
    background-color: var(--btn-blue);
    color: #fff;
    border-color: var(--hover);
    border-radius: 0;
    transition: background-color 300ms ease, border-color 300ms ease;
}

.contact-brochure .btn-primary-2:hover {
    color: var(--hover);
    background-color: var(--white);
    border-color: var(--hover);
}

.arrow-watermark {
    position: absolute;
    left: 88%;
    transform: translateX(-50%);
}

/* =============================================================== */
/* End Contact Brochure Here */
/* =============================================================== */

/* =============================================================== */
/* Start Gallery Here */
/* =============================================================== */

/* 
.image-container {
    position: relative;
    border: 2px solid var(--u-light-gray);
    padding: 16px;
} */

/* 
.image-container::before {
    width: 80px;
    height: 80px;
    top: -2px;
    left: -2px;
    border-top: 6px solid var(--hover);
    border-left: 6px solid var(--hover);
}

.image-container::after {
    width: 80px;
    height: 80px;
    bottom: -2px;
    right: -2px;
    border-bottom: 6px solid var(--lg-blue);
    border-right: 6px solid var(--lg-blue);
} */


.gallery-header {
    background-color: var(--lg-blue);
    padding: 60px 0px 0px;
    text-align: center;
    overflow-x: hidden;
}

.gallery-header .breadcrumb {
    justify-content: center;
}

.gallery-header .breadcrumb li {
    color: var(--white);
}

.gallery-container {
    padding: 0px 0px 80px;
    overflow-x: hidden;
}

.gallery-title {
    color: var(--white);
    font-weight: bold;
}

.gallery-row {
    margin-top: 2rem;
    overflow-x: hidden;
}

.breadcrumb {
    padding: 8px 15px;
    border-radius: 4px;
    margin-bottom: 20px;
    overflow-x: hidden;
}

.breadcrumb-item+.breadcrumb-item::before {
    content: ">";
    color: var(--white);
}

.breadcrumb a {
    color: var(--white);
    text-decoration: none;
    font-weight: 500;
}

.breadcrumb a:hover {
    color: var(--btn-blue);
}


/* =============================================================== */
/* End Gallery Here */
/* =============================================================== */

/* =============================================================== */
/* Start Footer Here */
/* =============================================================== */

.footer-section {
    position: relative;
    background-color: var(--light-gray-secondary);
    padding: 60px 0 0;
    background-image: url(../images/background/b2.webp);
    background-repeat: no-repeat;
    background-size: contain;
    background-position: right 50px top 20px;
}

.footer-section .contact-info .icon-bg {
    background-color: var(--hover);
    width: 40px;
    height: 40px;
    margin-right: 10px;
    padding: 26px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 4px;
    color: var(--white);
    font-size: 26px;
}

.footer-logo {
    max-width: 190px;
    height: auto;
}

.footer-section h5 {
    font-size: 20px;
    margin-bottom: 20px;
    color: var(--black);
    text-transform: uppercase;
}

.footer-section a {
    color: var(--black);
    font-size: 16px;
    transition: color 0.3s, transform 0.3s;
}

.footer-section .nav-link {
    font-size: 16px;
    transition: color 0.3s, transform 0.3s;
}

.footer-section .nav-link:hover {
    color: var(--hover);
    transform: translateX(5px);
}

.footer-section .contact-info .foot-title {
    font-size: 16px;
    font-weight: bold;
}

.credit-line {
    display: flex;
    justify-content: space-between;
    padding: 0px 5rem 16px;
    font-size: 15px;
    color: var(--light-gray);
}

.credit-line a {
    text-decoration: none;
    color: var(--hover);
    font-size: 16px;
    transition: color 0.3s, transform 0.3s;
}

.credit-line a:hover {
    color: var(--hover);
    transform: scale(1.1);
}

.footer-section .footer-logo {
    margin-bottom: 30px;
    max-width: 170px;
    height: auto;
}

.footer-section .row .col-6 {
    text-align: center;
}

.footer-section .row .col-6 img {
    max-width: 100%;
    height: auto;
}


/* =============================================================== */
/* End Footer Here */
/* =============================================================== */