/* ==========root starts========== */
:root {
    --primary-color: #039bdc;
    --secondary-color: #141414;
    --fx-clr-sd-3: var(--primary-color);
}

.primary {
    color: #000;
}

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

.section-padding {
    padding-top: 50px;
    padding-bottom: 50px;
}

.section-padding-top {
    padding-top: 50px;
}

.section-padding-bottom {
    padding-bottom: 50px;
}

::-webkit-scrollbar-thumb {
    background: var(--primary-color);
}

.fx-pr-btn-1 {
    background: var(--primary-color);
    color: #1f2937;
}

.loader {
    --s: 15px;
    width: calc(var(--s) * 2.33);
    aspect-ratio: 1;
    display: flex;
    justify-content: space-between;
}

.loader::before,
.loader::after {
    content: "";
    width: var(--s);
    --_g: no-repeat radial-gradient(farthest-side, #000 94%, #0000);
    background: var(--_g) top, var(--_g) bottom;
    background-size: 100% var(--s);
    transform-origin: 50% calc(100% - var(--s) / 2);
    animation: l30 1s infinite;
}

.loader::after {
    transform-origin: 50% calc(var(--s) / 2);
}

@keyframes l30 {

    70%,
    100% {
        transform: rotate(-270deg);
    }
}

/* ==========root ends========== */
/* ==========header starts========== */
.fx-header-5-wrap::after {
    background-color: #000000db;
}

.fx-header-5-logo-box {
    padding: 7px 30px;
}

.main-navigation:is(.has-header-5) li a:is(.is-active),
.main-navigation:is(.has-header-5) li:is(.dropdown) a::before,
.main-navigation:is(.has-header-5) li:hover>a,
.fx-header-5-wrap .fx-contact-list li i,
.fx-header-5-wrap .fx-social-icon a,
.fx-header-5-action-link .fx-pr-btn-1 .text::before,
.fx-header-5-wrap .fx-contact-list li a:hover,
.mobile-main-navigation .navbar-nav li a:hover,
.mobile-main-navigation .navbar-nav li .dropdown-btn:hover,
.active {
    color: var(--primary-color);
}

.main-navigation:is(.has-header-5) li a:is(.is-active) {
    color: var(--primary-color);
}

.main-navigation:is(.has-header-5) li .dropdown-menu {
    border-color: var(--primary-color);
}

.fx-header-5-action-link .fx-pr-btn-1 {
    border: 2px solid var(--primary-color);
    color: var(--primary-color);
}

.fx-header-5-action-link .fx-pr-btn-1:hover,
.fx-header-5-action-link .fx-menu-btn-1 {
    background: var(--primary-color);
}

.txa-offcanvas-box-close {
    background-color: #45d4ff56;
}

.fx-hero-1-slider-item-img::after {
    content: "";
    width: 100%;
    height: 100%;
    background: #0189c317;
    position: absolute;
    top: 0;
    left: 0;
    opacity: 56%;
}

@media (max-width: 425px) {
    .fx-hero-1-slider-item {
        padding-top: 215px;
    }
}

@media (min-width: 1025px) {
    .d-lg-none {
        display: none !important;
    }
}

.active-header {
    color: var(--primary-color) !important;
}

.active-header::before {
    color: var(--primary-color) !important;
}

.fx-social-icon-btn:first-child:hover,
.fx-social-icon-btn:nth-child(2):hover {
    border-color: transparent;
    background: var(--primary-color);
    color: var(--secondary-color);
}

@media (min-width: 991px) and (max-width: 1024px) {
    .fx-header-5-action-link .fx-pr-btn-1 {
        display: none !important;
    }
}

/* ==========header ends========== */

/* ==========index starts========== */
.fx-hero-4-slider {
    clip-path: polygon(0 0, 100% 0, 100% 100%, 100% 100%, 0 100%);
}

.index-page h2,
.index-page h3 {
    font-size: 48px;
}

.index-hero-slider {
    margin-top: 100px;
    padding-right: unset;

}

.index-hero-slider .fx-hero-4-slider {
    clip-path: unset;
}

.index-hero-slider .fx-hero-4-slider-item {
    padding-top: 100px;
    padding-bottom: 100px;
    height: 500px;
}

.index-slider-title {
    font-size: 55px;
}

.index-slider-description {
    margin-bottom: unset;
}

.index-about-counter .fx-counter-1-item-number .text {
    color: var(--primary-color);
}

.hp-products {
    position: relative;
    padding: 60px 0;
}

.hp-products .hp-card {
    background: #fff;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.hp-products .hp-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.12);
}

.hp-products .hp-card .hp-media {
    overflow: hidden;
    flex-shrink: 0;
}

.hp-products .hp-card .hp-media .hp-img {
    width: 100%;
    height: 271px;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.hp-products .hp-card:hover .hp-media .hp-img {
    transform: scale(1.07);
}

.hp-products .hp-card .hp-body {
    padding: 15px;
    flex-grow: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 80px;
}

.hp-products .hp-card .hp-title a {
    font-size: 17px;
    font-weight: 600;
    color: #222;
    text-decoration: none;
    display: block;
    text-align: center;
    line-height: 1.4;
}

.hp-products .hp-card .hp-title a:hover {
    color: var(--primary-color);
}



@media (max-width: 991px) {
    .hp-products .hp-card .hp-media .hp-img {
        height: 332px;
    }

    .hp-products .hp-card .hp-title a {
        font-size: 16px;
    }
}

@media (max-width: 575px) {
    .hp-products .hp-card .hp-media .hp-img {
        height: 400px;
    }

    .hp-products .hp-card .hp-title a {
        font-size: 15px;
    }
}

.why-choose-us .section-header {
    max-width: 750px;
    margin: 0 auto 3rem;
}

.why-choose-us .section-header h2 {
    font-weight: 700;
    font-size: clamp(1.5rem, 2.5vw, 2rem);
    line-height: 1.3;
}

.why-choose-us .section-header p,
.fx-industries p {
    color: #555;
    font-size: 1rem;
}

.why-choose-us-section .why-card {
    background: #fff;
    border-radius: 14px;
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
}

.why-choose-us-section .why-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 26px rgba(0, 0, 0, 0.12);
}

.why-choose-us-section .why-icon img {
    width: 70px;
    height: auto;
}

.why-choose-us-section .why-title {
    font-size: 1.1rem;
    font-weight: 600;
    color: #1f2937;
    text-transform: capitalize;
}

.why-choose-us-section .why-desc {
    font-size: 0.95rem;
    color: #555;
    line-height: 1.55;
}

.blog-section .badge {
    background: var(--primary-color) !important;
    color: var(--secondary-color);
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 600;
}

.fx-industries {
    background: #ffffff;
    padding: 0px 0;
}

.fx-industries .fx-subtitle {
    color: #c89c2d;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.fx-industries .fx-title {
    font-size: 32px;
    font-weight: 700;
    margin: 10px 0;
}

.fx-industries .fx-desc {
    max-width: 600px;
    margin: 0 auto;
    color: #555;
}

.fx-industries .industries-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
    gap: 25px;
    margin-top: 40px;
}

.fx-industries .industry-card {
    background: #fff;
    border-radius: 16px;
    padding: 25px 20px;
    text-align: center;
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.07);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.fx-industries .industry-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 10px 28px rgba(0, 0, 0, 0.12);
}

.fx-industries .industry-card .icon-wrap {
    width: 70px;
    height: 70px;
    margin: 0 auto 15px;
    background: #f3f3f3;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.fx-industries .industry-card img {
    max-width: 40px;
    max-height: 40px;
}

.fx-industries .industry-card h3 {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 10px;
}

.fx-industries .industry-card p {
    font-size: 14px;
    color: #666;
    line-height: 1.5;
}

.about-home .about-home-card h3 {
    color: var(--primary-color);
    font-size: 32px;
}

.about-home-card {
    background: #fff;
    border-radius: 14px;
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
}

.about-home-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 26px rgba(0, 0, 0, 0.12);
}

.about-home {
    padding-top: 50px;
    padding-bottom: 45px;
}

/* ==========index ends========== */

/* ==========footer starts========== */
.sub-footer-text {
    line-height: unset !important;
    letter-spacing: unset !important;
    font-size: 40px !important;
}

.sub-footer-marquee-text .item-text:hover {
    color: var(--primary-color);
}

.footer-back-top {
    color: var(--secondary-color);
}

.footer-contact-icons li i {
    color: var(--primary-color);
}

.footer-pages-menu li a:hover {
    color: var(--primary-color);
}

.footer-pages-menu li a {
    font-weight: unset;
    color: var(--secondary-color);
}

.footer-pages-menu li:is(.dropdown)>a::after {
    color: var(--primary-color);
}

.last-footer-copyright a:hover {
    color: var(--primary-color);
}

.last-footer-policy li a:hover {
    color: var(--primary-color);
}

.footer-product-menu li a {
    color: var(--secondary-color);
    font-size: 16px;
}

.footer-product-menu li a:hover {
    color: var(--primary-color);
    padding-left: unset;
}

.footer-product-menu li a:after {
    content: unset;
}

.footer-product-menu li a::after {
    background: var(--primary-color);
}

.footer-product-menu .footer-link-disc {
    margin-left: 20px;
}

.footer-links-menu .footer-link-disc {
    margin-left: 20px;
}

.fx-marquee-text-1-item svg:hover * {
    fill: var(--primary-color);
}

.footer-logo {
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0 auto;
}

.footer-logo img {
    max-width: 100%;
    height: auto;
    display: block;
}

.footer-contact-icons li a:hover {
    color: var(--primary-color);
}

@media (min-width: 1024px) {
    .main-footer-widget {
        grid-template-columns: 1fr 1fr 1fr 1.8fr;
    }
}

.footer-link-disc li {
    list-style: disc;
}

.footer-link-disc li:hover {
    color: var(--primary-color);
}

.footer-link-disc li:hover a {
    color: var(--primary-color);
    padding: unset;
}

.footer-link-disc li a::after {
    transform: unset;
    content: unset;
    width: unset;
    height: unset;
    border-radius: unset;
    background: unset;
    position: unset;
    top: unset;
    left: unset;
    transform: unset;
    transition: unset;
}

/* ==========footer ends========== */

/* about-us page start */

.about .about-hero {
    background: #212121;
    color: #fff;
    padding: 50px 50px;
}

.about .about-hero .badge {
    background: var(--primary-color) !important;
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 600;
}

.about .about-hero h2 {
    font-size: 2.2rem;
    font-weight: 700;
    margin: 20px 0;
    color: white;
}

.about .about-hero h2 span {
    color: var(--primary-color);
}

.about .about-hero p {
    max-width: 650px;
    margin: auto;
    color: #ccc;
}

.about .stat-box {
    background: #2b2b2b;
    padding: 25px;
    border-radius: 12px;
    transition: all 0.3s ease;
}

.about .stat-box i {
    font-size: 2rem;
    color: var(--primary-color);
    margin-bottom: 10px;
}

.about .stat-box:hover {
    background: #333;
    transform: translateY(-6px);
}



@media (max-width: 768px) {
    .about .about-hero h2 {
        font-size: 2rem;
    }

    .about .stat-box {
        padding: 20px;
    }
}

.about .about-company {
    background: #fffdf8;
}

.about .badge {
    background: var(--primary-color);
    color: var(--secondary-color);
    padding: 6px 14px;
    border-radius: 20px;
    font-weight: 600;
}

.about .about-company .badge {
    background: var(--primary-color);
    color: var(--secondary-color);
    padding: 6px 14px;
    border-radius: 20px;
    font-weight: 600;
}

.about .about-company h2 {
    font-size: 2rem;
    font-weight: 700;
    margin: 15px 0;
    color: #222;
}

.about .about-company p {
    font-size: 1rem;
    color: #555;
    line-height: 1.6;
}

.about .about-feature {
    display: flex;
    align-items: center;
    gap: 12px;
    background: #fff;
    border-radius: 10px;
    padding: 12px 15px;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.06);
    transition: 0.3s ease;
}

.about .about-feature i {
    font-size: 1.4rem;
    color: var(--primary-color);
}

.about .about-feature h6 {
    margin: 0;
    font-weight: 600;
    color: #333;
}

.about .about-feature:hover {
    transform: translateY(-4px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.12);
}

.about .about-img img {
    border-radius: 15px;
    transition: 0.4s ease;
}

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


.about h2 {
    color: #222;
    font-size: 2.2rem;
    font-weight: 700;
    margin: 20px 0;
}

.about p {
    color: #555;
    font-size: 1rem;
    line-height: 1.7;
}

.about ul {
    padding-left: 0;
    margin-top: 15px;
}

.about ul li {
    list-style: none;
    margin-bottom: 5px;
    font-size: 0.95rem;
    color: #333;
}

.about ul li i {
    margin-right: 8px;
    color: var(--primary-color);
}

.about .what-we h2 {
    margin-top: 10px;
    margin-bottom: 2px;
}

/* CTA Box */
.cta-box {
    background: linear-gradient(135deg, #f7fcfd, #ecf2f4);
    border: 1px solid #c3d7e2;
    padding: 40px 20px;
    margin: 10px 15px;
    border-radius: 16px;
    box-shadow: 0 4px 12px rgb(81 170 211 / 15%);
}

.about .fx-pr-btn-1:hover {
    background: var(--primary-color);
    color: #fff;
}

/* about-us page end */

/* manufacturing process page starts*/
.manufacturing_process .process-section h2 {
    font-size: 2.2rem;
    font-weight: 700;
    margin: 20px 0;
}

.manufacturing_process .process-section h2 span {
    color: var(--primary-color);
}

.manufacturing_process .process-section {
    background: #f6fafd;
    padding: 50px 0px;
}

.manufacturing_process .process-section p {
    color: #3d3d3dff;
}

.manufacturing_process .process-card {
    background: #fff;
    border-radius: 12px;
    padding: 25px;
    text-align: center;
    transition: 0.3s ease;
    height: 100%;
}

.manufacturing_process .process-card i {
    font-size: 2rem;
    color: var(--primary-color);
    margin-bottom: 15px;
}

.manufacturing_process .process-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.12);
}

.manufacturing_process .process-section .badge {
    background: var(--primary-color);
    color: var(--secondary-color);
    padding: 6px 14px;
    border-radius: 20px;
    font-weight: 600;
}

.process-card {
    position: relative;
    background: #fff;
    padding: 30px 20px;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    overflow: hidden;
    z-index: 1;
    transition: 0.3s;
}

.process-card::before {
    content: attr(data-step);
    position: absolute;
    top: 20px;
    left: 10px;
    font-size: 70px;
    font-weight: 700;
    color: rgba(0, 0, 0, 0.05);
    z-index: 0;
    pointer-events: none;
}

@media (max-width: 320px) {
    .manufacturing_process .process-card {
        background: #fff;
        border-radius: 12px;
        padding: 15px;
        text-align: center;
        transition: 0.3s ease;
        height: 100%;
        width: 300px;
    }

}

/* manufacturing process page end*/

/* mission-vision page starts */
.mission-vision .mission-section,
.mission-vision .vision-section,
.mission-vision .core-values-section {
    padding: 40px 10px;
}

.mission-vision .lead {
    color: #afaeae;
}

.mission-vision .badge {
    background: var(--primary-color);
    color: #000000;
    padding: 6px 14px;
    border-radius: 20px;
    font-weight: 600;
    font-size: 0.9rem;
}

.mission-vision h2 {
    font-size: 2.2rem;
    font-weight: 700;
    margin: 20px 0;
}

.mission-vision p {
    color: #555;
    line-height: 1.6;
}

.mission-vision .mission-feature i,
.mission-vision .vision-feature i {
    font-size: 1.2rem;
    color: var(--primary-color);
}

.mission-vision .core-values-section {
    background: #050c0f;
}

.mission-vision .value-card {
    background: #2a2a2a;
    border-radius: 12px;
    padding: 20px;
    text-align: center;
    transition: 0.3s ease;
    height: 100%;
}

.mission-vision .value-card i {
    font-size: 2rem;
    color: var(--primary-color);
    margin-bottom: 15px;
}

.mission-vision .value-card h5 {
    color: #fff;
    font-weight: 600;
    margin-bottom: 10px;
}

.mission-vision .value-card p {
    color: #bbb;
}

.mission-vision .value-card:hover {
    background: #333;
    transform: translateY(-5px);
}

@media (min-width:768px) {

    .mission-vision .mission-vision-img,
    .quality-img {
        width: 150%;
    }
}

/* mission-vision page end*/

/* quality assurance page starts */
.quality-section {
    background: #fdfbf7;
}

.quality-section h2 {
    font-size: 2.2rem;
    font-weight: 700;
    margin: 20px 0;
}

.quality-section .quality-card {
    background: #fff;
    border-radius: 12px;
    padding: 25px;
    text-align: left;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease-in-out;
    height: 100%;
}

.quality-section .quality-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.15);
}

.quality-section .quality-card .icon-box {
    width: 50px;
    height: 50px;
    background: var(--primary-color);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    margin-bottom: 15px;
    color: #fff;
    font-size: 1.2rem;
}

.quality-section .quality-card h5 {
    font-weight: 600;
    margin-bottom: 10px;
    color: #222;
    font-size: 1.1rem;
}

.quality-section .quality-card p {
    color: #555;
    font-size: 0.95rem;
    line-height: 1.6;
}

.quality-section ul {
    padding-left: 0;
    margin-top: 15px;
}

.quality-section ul li {
    list-style: none;
    margin-bottom: 8px;
    font-size: 0.95rem;
    color: #333;
}

.quality-section ul li i {
    margin-right: 8px;
    color: var(--primary-color);
}

.quality-section .badge {
    background: var(--primary-color);
    color: var(--secondary-color);
    padding: 6px 14px;
    border-radius: 20px;
    font-weight: 600;
    font-size: 0.9rem;
}

.quality-section h2 {
    color: #222;
    margin-bottom: 20px;
}

.quality-section p {
    color: #555;
    font-size: 1rem;
    line-height: 1.7;
}

.quality-section ul li {
    margin-bottom: 10px;
    font-size: 0.95rem;
    color: #333;
}

.quality-section ul li i {
    margin-right: 8px;
    color: var(--primary-color);
}

.quality-section .quality-images {
    position: relative;
    overflow: hidden;
    border-radius: 12px;
}

.quality-section .quality-images .img-box-lg {
    position: relative;
    z-index: 1;
    text-align: center;
}

.quality-section .quality-images .img-box-lg img {
    max-width: 100%;
    height: auto;
    border-radius: 12px;
}

.quality-section .iso-section {
    background: linear-gradient(90deg, #f9fafc, #f3f5f9);
    padding: 30px 0;
    border-radius: 12px;
    margin: 0px 0;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}

.quality-section .iso-section h2 {
    font-weight: 700;
    font-size: 1.4rem;
    margin-bottom: 20px;
    color: #222;
}

.quality-section .iso-section p {
    color: #555;
    font-size: 1rem;
    line-height: 1.6;
}

.quality-section .iso-btn {
    background: var(--primary-color);
    color: #fff;
    font-weight: 600;
    padding: 10px 20px;
    border-radius: 30px;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    transition: all 0.3s ease-in-out;
    box-shadow: 0 4px 8px rgb(0 171 212 / 30%);
}

.quality-section .iso-btn:hover {
    background: var(--primary-color);
    box-shadow: 0 6px 14px rgb(0 171 212 / 30%);
    transform: translateY(-2px);
}

.quality-section .iso-btn i {
    margin-left: 8px;
    font-size: 0.9rem;
}

.quality-section .iso-img {
    max-height: 140px;
    border-radius: 8px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease-in-out;
}

.quality-section .iso-img:hover {
    transform: scale(1.05);
}

@media (max-width: 1024px) {
    .quality-section .quality-images {
        min-height: auto;
    }
}

/* quality assurance page end */
/* blog page starts */
.blog-page .badge {
    background: var(--primary-color);
    color: var(--secondary-color);
    padding: 6px 14px;
    border-radius: 20px;
    font-weight: 600;
    font-size: 0.9rem;
    margin-bottom: 5px;
}

.blog-page .fx-blog-1-item-single .blog-details {
    font-size: 18px;
}

.blog-page li.active-cate>a {
    color: var(--primary-color) !important;
    font-weight: bolder;
}

.blog-page li.active-cate>a::after {
    border-color: transparent;
    background: var(--primary-color);
}

.blog-page>li>a:hover {
    color: var(--primary-color);
}

.blog-page a:hover::after {
    border-color: transparent;
    background: var(--primary-color);
}

.blog-page .fx-about-2-slider-item {
    padding-top: 70px;
}

.blog-page .fx-sidebar-tags a:hover {
    background: var(--primary-color);
}

.blog-page .fx-sidebar-gategories a:hover {
    color: var(--primary-color);
}

.blog-page .fx-sidebar-gategories a:hover::after {
    background: var(--primary-color);
}

.blog-page a:focus,
.blog-page a:hover {
    color: var(--primary-color);
    text-decoration: none;
}

.blog-page .fx-sidebar-blog .fx-blog-1-item-single .item-subtitle,
.blog-page .fx-blog-1-item-single .item-subtitle {
    border: 1px solid var(--primary-color);
}

.blog-page .fx-blog-1-item-single .item-subtitle {
    color: var(--primary-color);
}

.blog-page .fx-pagination-item:is(.has-btn):hover {
    border-color: var(--primary-color) !important;
    background: transparent !important;
    color: var(--primary-color) !important;
}

.blog-page .fx-pagination-item:hover {
    background: var(--primary-color) !important;
    color: #fff !important;
    border-color: var(--primary-color1) !important;
}

.blog-page .fx-blog-1-item-single .item-title:hover {
    color: var(--primary-color);
}

.blog-page .fx-blog-card {
    transition: all .3s ease;
    background: #fff;
    border: 1px solid #eee;
}

.blog-page .fx-blog-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, .1);
}

.blog-page .fx-blog-card img {
    height: 220px;
    object-fit: cover;
}

.blog-page .fx-sidebar-widget {
    background: #fff;
    padding: 20px;
    border-radius: 8px;
    border-left: 4px solid var(--primary-color);
    margin-bottom: 20px;
}

.blog-page .fx-sidebar-widget h5 {
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 15px;
}

.blog-page .recent-post-card img {
    width: 60px;
    height: 60px;
    object-fit: cover;
}

.blog-page .active-cate>a {
    font-weight: 600;
    color: var(--primary-color) !important;
}

.blog-page .fx-sidebar-gategories .upper-category {
    display: flex;
    gap: 15px;
    /* spacing between items */
    list-style: none;
    padding: 0;
    margin: 0;
}

.blog-page .fx-sidebar-gategories .upper-category li {
    display: inline-block;
}

.blog-page .fx-projects-7-filter-btn .filter-button,
.blog-page .fx-projects-7-filter-btn a.filter-button {
    display: inline-block;
    padding: 10px 22px;
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    border: 2px solid #b1b1b1;
    border-radius: 10px;
    background: #f8f8f8;
    color: #000000;
    transition: all 0.3s ease;
    text-decoration: none;
    /* remove underline for <a> */
}

.blog-page .fx-projects-7-filter-btn a.filter-button:hover,
.blog-page .fx-projects-7-filter-btn a.filter-button.is-checked {
    background: var(--primary-color);
    border-color: #000000;
    color: #000000;
}

.blog-page .blog-card {
    margin: auto;
}

.blog-page .blog-card img {
    height: 200px;
    object-fit: cover;
}

@media (max-width: 425px) {
    .blog-page .blog-card {
        margin: auto;
        width: 350px;
    }
}

/* blog ends */

/* breadcrumb starts */
.cover-image {
    height: 400px;
    width: 1000px;
    max-width: fit-content;
}

.breadcrumbs-bg {
    background: url(../images/breadcrumbs/breadcrumb.jpeg) no-repeat center center / cover;
    width: 100%;

}

.breadcrumbs-bg .container .content a {
    color: var(--primary-color);
}

.breadcrumb-link {
    padding-top: 10px;
    color: var(--secondary-color) !important;
}

.breadcrumbs-bg div h1 {
    color: white;
    font-size: 45px;
    padding-top: 90px;
}

.breadcrumbs-bg .mt-5 {
    margin-top: 266px !important;
}

.breadcrumbs-bg .container a {
    color: var(--primary-color) !important;
    transition: 0.3s ease-in-out;
}

.section-overlay {
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.section-overlay::before {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.6);
    z-index: 2;
}

.section-overlay>* {
    position: relative;
    z-index: 3;
}

/* breadcrumb ends */

/* product page starts */


.product .product-card {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    background: #fff;
}

.product .product-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.product .product-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.45);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.product .product-card:hover .product-overlay {
    opacity: 1;
}

.product .product-overlay .btn {
    background: #fff;
    color: var(--primary-color);
    border: none;
}

.product .product-overlay .btn:hover {
    background: var(--primary-color);
    color: #fff;
}

.product .fx-pagination-item:is(.has-btn):hover {
    border-color: var(--primary-color) !important;
    background: transparent !important;
    color: var(--primary-color) !important;
}

.product .fx-pagination-item:hover {
    background: var(--primary-color) !important;
    color: #fff !important;
    border-color: var(--primary-color1) !important;
}

.product li.active-cate>a {
    color: var(--primary-color) !important;
    font-weight: bolder;
}

.product-category>li.active-cate>a {
    color: var(--primary-color) !important;
    font-weight: bolder;
}

.product-category>li.active-cate>a::after {
    border-color: transparent;
    background: var(--primary-color);
}

.product-category>li>a:hover {
    color: var(--primary-color);
}

li.active-cate>a::after {
    border-color: transparent;
    background: var(--primary-color);
}

.product-category>li>a:hover {
    color: var(--primary-color);
}

.product-category a:hover::after {
    border-color: transparent;
    background: var(--primary-color);
}

.category-badge {
    background-color: var(--primary-color);
}

.inquiry-btn {
    background-color: var(--primary-color);
    color: var(--secondary-color);
    transition: all 0.3s ease;
}

.inquiry-btn:hover {
    background-color: var(--secondary-color);
    color: var(--primary-color);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.15);
}

.form-body .captcha-img {
    width: auto;
    height: auto;
    max-width: 100px;
}

.product-badge {
    background-color: var(--primary-color);
    color: var(--secondary-color);
    font-size: 18px;
    font-weight: 400;
    text-transform: uppercase;
    vertical-align: top;
    position: relative;
    top: -0.1em;
    line-height: 1;
}

.product-description figure.table table tbody tr th {
    display: flex;
    align-items: start;
    padding: 0px 20px;
    padding-top: 6px;
}

.product-description figure.table table tbody tr td ul li {
    padding: 5px 0px;
}

@media (max-width: 576px) {
    .product-badge {
        top: 15px;
    }

    .blog-details-img {
        margin-top: 15px;
    }
}

@media (max-width: 576px) {

    .product .product-card img {
        height: 280px;
        width: 300px;
        /* adjust as per your design */
        object-fit: cover;
    }

    .product .product-card {
        transition: transform 0.3s ease, box-shadow 0.3s ease;
        background: #fff;
        width: 275px;
        align-items: center;
        margin: auto;
    }
}

@media only screen and (min-width: 768px) and (max-width: 991px),
(max-width: 767px) {
    .fx-blog-page-sidebar:is(.has-left-sidebar) {
        margin-right: 0;
        margin-top: 25px;
        margin-bottom: 50px;
    }
}

/* product page end */
/* contact us page starts */
.contact .fx-contact-us-1-info-box {
    background: var(--primary-color);
    color: #0c0e0f;
}

.contact .fx-contact-us-1-info-box:nth-child(2) {
    background: #d8f7ff;
}

.contact .fx-contact-us-1-info-box .box-title {
    color: #0c0e0f;
}

.contact .fx-contact-us-1-info-box .info-list li i,
.fx-footer-1-contact li i {
    color: var(--primary-color);
    display: inline-block;
    margin-right: 12px;
}

.contact .fx-contact-us-1-info-box .info-list li a:hover {
    color: var(--secondary-color);
}

.contact .fx-pr-btn-1 {
    background: var(--primary-color);
}

.contact .fx-pr-btn-1:hover {
    background: var(--secondary-color);
}

.contact .fx-form-1-box:focus-within .fx-form-1-label {
    color: #121212;
}

@media only screen and (min-width: 768px) and (max-width: 991px),
(max-width: 767px) {

    .contact .fx-contact-us-1-left,
    .fx-core-1-slider-item-content .title-wrap {
        margin-top: 50px;
    }
}

@media (min-width: 991px) {
    .contact .fx-contact-us-1-left {
        padding-left: 30px;
    }
}

.contact-box>div>label.error,
.enquiry-error>div>label.error,
.enquiry-error>div>.row>.captcha>label.error {
    font-size: 15px;
    color: red;
}

.contact .fx-contact-us-1-area {
    padding-bottom: 30px;
}

@media only screen and (min-width: 768px) and (max-width: 991px),
(max-width: 767px) {
    .fx-contact-us-1-area {
        padding-bottom: 50px;
    }
}

/* contact us page end */


@media (max-width: 1024px) {

    .mission-vision .mission-section,
    .mission-vision .vision-section,
    .mission-vision .core-values-section {
        padding-top: 40px !important;
        padding-bottom: 40px !important;
    }
}

@media (max-width: 991px) {
    .mission-vision .vision-section {
        padding-top: 0px !important;
    }

    .fx-blog-page-sidebar {
        margin-bottom: 0px !important;
    }

    .inquiry-btn {
        margin-bottom: 0px !important;
    }

    .fx-contact-us-1-left {
        margin-top: 30px !important;
        margin-bottom: 0px !important;
    }
}

/* form bot field */
.field-bot {
    position: absolute;
    left: -9999px;
    height: 1px !important;
    width: 1px !important;
    opacity: 0 !important;
}

#name-error,
#email-error,
#phone-error,
#number-error,
#subject-error,
#message-error {
    font-size: 13px;
    margin-bottom: 0;
}

.error {
    display: inline-block !important;
    line-height: initial;
}

@media (max-width:425px) {
    .fx-services-details-feature-single:not(:last-child) {
        margin-bottom: 0px;
    }

    .fx-hero-1-slider-item-title {
        font-size: 42px;
    }

    .index-page h2,
    .index-page h3 {
        font-size: 40px;
    }

    .fx-para-1 {
        line-height: 28px;
        font-size: 14px;
    }
}

.fx-pr-btn-1:is(.has-hover-white) {
    color: #fff;
}

.fx-pr-btn-1:is(.has-hover-white):hover {
    background: #fff;
    color: var(--primary-color) !important;
}

.fx-pr-btn-1:is(.has-hover-white) .text::after {
    color: var(--primary-color);
}

.social-flex {
    display: flex;
    justify-content: left;
    align-items: center;
    gap: 15px;
    margin-top: 10px;
}

.social-flex a {
    display: flex;
    justify-content: left;
    align-items: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    color: var(--primary-color);
    font-size: 18px;
    text-decoration: none;
    transition: 0.3s ease;
    background-color: #050c0f;
    padding-left: 13px;
}

.social-flex a:hover {
    color: #fff;
    transform: translateY(-3px);
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.4);
    pointer-events: none;
    z-index: 2;
}

.fx-hero-1-area {
    background: #212b38;
}

@media (max-width: 767px) {
    .txa-offcanvas-box {
        padding: 66px 20px 5px;
    }

    .fx-form-1-box:not(:last-child) {
        margin-bottom: 5px;
    }
}

.fx-contact-us-1-info-box {
    padding: 55px 20px 40px;
}

.fx-footer-1-disc-text,
.fx-footer-1-widget-single .widget-title {
    opacity: 100%;
}

@media (min-width:1024px) and (max-width:1100px) {
    .fx-header-2-top {
        padding-left: 390px;
    }
}