@charset "UTF-8";
@import url(./bootstrap.min.css);
@import url(./nav.css);
/* 1. fonts */
@import url(./fonts.css);
@import url(./swiper-bundle.min.css);
/*----------------------------------------------

[Master Stylesheet]

Project:   BJ Electronics Private Limited
Version:    1.0
Started date: 25-06-2024
Last change:    
Primary use:    AGT 
Author:   Giri

-----------------------------------------------*/
/*----------------------------------------------

[Table of contents]

1. Fonts
2. Root
3. Body
4. common tag 
5. button
6. containers 
7. Home banner
8. About Section
9. Why Us 
10. Product Grid
11. portfolio
12. Footer


-----------------------------------------------*/
/*----------------------------------------------

[Fonts]

Base Fonts(Headings)  : "Outfit", sans-serif
Body Font             : "Outfit", sans-serif
Icon Fonts            : Fontawesome 5.15.4

------------------------------------------------*/


/* 2. root */
:root {
    --headFont: "Outfit", sans-serif;
    --bodyFont: "Outfit", sans-serif;
    --numberFont: "Russo One", sans-serif;
    --primaryColor: #242a86;
    --secondaryColor: #21204b;
    --black: #000;
    --white: #fff;
    --lightGrayBG: #e0e5f9;
    --lightBG: #f1f3fd;
    --darkBG: #2e2f7a;
    --border-radius-rounded-sm: 5px;
    --border-radius-rounded-md: 10px;
    --border-radius-rounded-lg: 15px;
    --border-radius-rounded-xl: 20px;
    --border-radius-rounded-xxl: 30px;
    --border-width-sm: 1px;
    --border-width-md: 2px;
    --border-width-lg: 5px;
    --border-width-xl: 8px;
    --border-width-xxl: 10px;
    --border-radius-round: 50%;
    --transition: .35s ease-in;
}

/* 3. Body */
* {
    padding: 0;
    margin: 0;
}

body {
    overflow-x: hidden;
    font-family: var(--bodyFont);
    font-size: 1rem;
}

/* 4. common tag  */
h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--headFont);
    font-weight: bold;
    margin: 0;
}

a {
    transition: var(--transition);
    text-decoration: none;
    color: var(--primaryColor);
}

a:hover {
    color: var(--secondaryColor);
}

p {
    font-size: 16px;
    line-height: 1.75;
    color: var(--black);
    margin: 0;
}

ul {
    padding: 0;
    margin: 0;
}

ul li {
    list-style: none;
}

.swiper-button-prev,
.swiper-rtl .swiper-button-next,
.swiper-button-next,
.swiper-rtl .swiper-button-prev {
    color: var(--primaryColor);

}

.swiper-button-prev::after,
.swiper-button-next::after {
    font-size: 30px;
}

.section-title {
    margin-bottom: 50px;
}

.section-title h6 span {
    position: relative;
}

.section-title h6 {
    text-transform: uppercase;
    color: var(--primaryColor);
    letter-spacing: 2px;
}

.section-title h6 span {
    position: relative;
    padding-right: 30px;
}

.section-title h2 {
    font-size: 42px;
    color: var(--secondaryColor);
}

.icon {
    width: 40px;
    height: 40px;
    background: var(--primaryColor);
    -webkit-mask-size: contain;
    display: flex;
    align-items: center;
    justify-content: center;
    -webkit-mask-position: center;
    -webkit-transition: all 500ms ease;
}

.icon-response {
    -webkit-mask-image: url(../img/response.png);
}

.icon-customer-satisfaction {
    -webkit-mask-image: url(../img/Satisfaction.png);
}

.icon-design-development {
    -webkit-mask-image: url(../img/Knowledge.png);
}

.icon-quality {
    -webkit-mask-image: url(../img/Quality.png);
}

/* 5. button */

.btn {
    padding: 10px 20px;
    border-radius: var(--border-radius-rounded-md);
    transition: var(--transition) !important;
    position: relative;
    overflow: hidden;

}

.primary-btn {
    background: var(--primaryColor) !important;
    color: var(--lightBG) !important;
}

.primary-btn:hover {
    background-color: var(--secondaryColor) !important;
}

.secondary-btn {
    background: var(--secondaryColor) !important;
    color: var(--lightBG) !important;
}

.secondary-btn:hover {
    background-color: var(--primaryColor) !important;
}

.outline-btn {
    border: var(--border-width-sm) solid var(--primaryColor) !important;
    color: var(--primaryColor) !important;
    background: transparent !important;
    padding: 0;
    border-radius: var(--border-radius-rounded-sm);
    transition: var(--transition);
    display: flex;
    width: max-content;
    font-weight: 600;
}

.outline-btn.btn-light {
    color: var(--lightBG) !important;
    border-color: var(--lightBG) !important;
}

.link-icon {
    position: relative;
    overflow: hidden;
    width: 18px;
    display: flex;
    align-items: center;
}

.link-icon i:last-child {
    transform: translateX(-14px);
}

.link-icon i {
    transition: var(--transition) all;
}

.link-icon i:first-child {
    transform: translateX(-18px);
}

.outline-btn:hover i:first-child {
    transform: translateX(0);
}

.outline-btn:hover i:last-child {
    transform: translateX(14px);
}

.outline-btn .link-text {
    padding: 14px 24px 14px 25px;
}

.outline-btn .icon-group {
    padding: 14px 25px;
    border-left: 1px solid var(--primaryColor);
    display: flex;
}

.outline-btn.btn-light .icon-group {
    border-left: 1px solid var(--lightBG);
}

/* 6. containers */
.container-fluid {
    width: 100%;
    padding: 0 100px;
}

@media (max-width:1540px) {
    .container-fluid {
        padding: 0 80px;
    }
}

@media (max-width:1330px) {
    .container-fluid {
        padding: 0 50px;
    }
}

@media (max-width:1199px) {
    .container-fluid {
        padding: 0 30px;
    }
}

@media (max-width:991px) {
    .container-fluid {
        padding: 0 15px;
    }
}

/* topabar */
.bj-topbar-section {
    background: linear-gradient(173deg, var(--primaryColor) 0%, #242aaf 100%);
    padding: 10px 0;
}

.bj-topbar-section ul li a {
    color: #fff;
}

.bj-topbar-section ul {
    display: flex;
    gap: 10px;
    align-items: center;
}

.bj-topbar-social ul {
    justify-content: flex-end;
    gap: 20px;
}

.bj-topbar-section ul li a i {
    vertical-align: middle;
}

.bj-topbar-contact ul li a i {
    margin-right: 5px;
}

@media (max-width:900px) {
    .bj-topbar-section {
        display: none;
    }
}

/* 7. Home banner */
.bj-home-banner-item {
    position: relative;
    z-index: 1;
}

.bj-home-banner-img {
    width: 100%;
}

.bj-home-banner-img img {
    width: 100%;
}

.bj-home-banner-content {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    display: flex;
    align-items: center;
}

.bj-home-banner-content-inner {
    position: relative;
    z-index: 1;
    display: grid;
    gap: 7px;
}

.bj-home-banner-item:before {
    content: "";
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    background: var(--primaryColor);
    z-index: 0;
    opacity: 1;
    opacity: 0.15;
    pointer-events: none;
}

.bj-home-banner-content-inner h6 {
    text-transform: uppercase;
    font-weight: 600;
    letter-spacing: 2px;
    color: var(--primaryColor);
    transition: all 1s ease-in;
    transition-delay: .65s;
    filter: blur(100px);
    opacity: 0;
}

.bj-home-banner-content-inner h1 {
    color: var(--secondaryColor);
    margin: 0px 0 30px;
    letter-spacing: 1.5px;
    transition: all 1s ease-in-out;
    transition-delay: 1s;
    transform: scale(1.25);
    filter: blur(100px);
    opacity: 0;
}

.bj-home-banner-content-inner p {
    transition: all 1s ease-in;
    transition-delay: .85s;
    transform: translateY(100px);
    opacity: 0;
}

.bj-home-banner-banner-slider-container .swiper-slide-active .bj-home-banner-content-inner h6,
.bj-home-banner-banner-slider-container .swiper-slide-active .bj-home-banner-content-inner h1,
.bj-home-banner-banner-slider-container .swiper-slide-active .bj-home-banner-content-inner p {
    transform: translateY(0);
    opacity: 1;
    filter: blur(0);
}

.bj-home-banner-banner-nav .swiper-pagination {
    position: relative;
    bottom: 0;
    text-align: left;
    background: #dce0fd;
    padding: 30px;
    display: flex;
    height: 100px;
    align-items: center;
}

.bj-home-banner-banner-nav {
    display: grid;
    position: absolute;
    bottom: 0;
    right: 0;
    width: 400px;
    background: #fff;
}

.bj-home-banner-banner-nav:before {
    content: "";
    width: 100px;
    height: 100%;
    background: var(--primaryColor);
    position: absolute;
    top: 0;
    left: -100px;
    z-index: 1;
    opacity: 0.25;
}

.bj-home-banner-banner-nav .swiper-pagination .swiper-pagination-bullet {
    width: 12px;
    height: 12px;
    margin: 0 10px;
    background: var(--primaryColor);
    opacity: 1;
    border: 2px solid var(--primaryColor);
    transition: all .35s ease-in;
}

.bj-home-banner-banner-nav .swiper-pagination .swiper-pagination-bullet.swiper-pagination-bullet-active {
    background: transparent;
    width: 18px;
    height: 18px;
}

@media (max-width:991px) {
    .bj-home-banner-banner-nav {
        display: none;
    }
}

@media (max-width:576px) {
    .bj-home-banner-content {
        padding: 30px 0;
    }

    .bj-home-banner-banner-slider-container {
        height: 400px;
    }

    .bj-home-banner-banner-slider-container #bj-home-banner-slider {
        height: 100%;
    }

    .bj-home-banner-banner-slider-container #bj-home-banner-slider .bj-home-banner-item {
        height: 100%;
    }

    .bj-home-banner-banner-slider-container #bj-home-banner-slider .bj-home-banner-img {
        height: 100%;
    }

    .bj-home-banner-banner-slider-container #bj-home-banner-slider .bj-home-banner-img img {
        height: 100%;
        object-fit: cover;
    }


}


/* 8. About us */

.bj-about-section {
    padding: 60px 0;
    position: relative;
}

.bj-about-section:after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: radial-gradient(circle, var(--primaryColor) 12%, transparent 10%);
    background-size: 20px 20px;
    opacity: .1;
    pointer-events: none;
}

.bj-about-img-wrapper {
    position: relative;
    z-index: 99;
}

.bj-about-img-exp {
    position: absolute;
    top: 90px;
    left: -50px;
    padding: 25px 16px;
    text-align: center;
    background: var(--primaryColor);
    border-radius: 10px;
    -webkit-animation-name: bj-bob-y;
    animation-name: bj-bob-y;
    -webkit-animation-duration: 3s;
    animation-duration: 3s;
    -webkit-animation-iteration-count: infinite;
    animation-iteration-count: infinite;
    -webkit-animation-timing-function: linear;
    animation-timing-function: linear
}

.bj-about-img-exp-icon i {
    color: #fff;
    font-size: 50px;
}

.bj-about-img-exp-icon {
    margin-bottom: 12px;
}

.bj-about-img-wrapper img {
    border-radius: 10px;
}

.bj-about-img-exp-content p {
    color: #fff;
}

.bj-about-img-exp-content h5 {
    color: #fff;
}

.bj-about-img-exp:before {
    content: "";
    position: absolute;
    bottom: -20px;
    left: 1px;
    width: 49px;
    height: 23px;
    background: var(--primaryColor);
    clip-path: polygon(50% 0%, 100% 0, 100% 100%, 48% 47%, 0 0);
}

.bj-about-img-shape {
    position: absolute;
    height: 90%;
    top: 0;
    border: 8px solid var(--primaryColor);
    border-radius: 20px;
    pointer-events: none;
    z-index: -1;
    width: 480px;
    bottom: 0;
    margin: auto;
    -webkit-animation-name: bj-bob-y-reverse;
    animation-name: bj-bob-y-reverse;
    -webkit-animation-duration: 3s;
    animation-duration: 3s;
    -webkit-animation-iteration-count: infinite;
    animation-iteration-count: infinite;
    -webkit-animation-timing-function: linear;
    animation-timing-function: linear
}

.bj-about-content {
    height: 100%;
    display: flex;
    position: relative;
    align-items: center;
    padding: 0 30px;
}

.bj-about-content-inner h6 {
    color: var(--primaryColor);
    letter-spacing: 2px;
}

.bj-about-content-inner h2 {
    margin: 5px 0 12px;
    color: var(--secondaryColor);
}

.bj-about-content-footer {
    margin-top: 20px;
}

.bj-about-content-footer ul {
    display: flex;
    align-items: center;
    gap: 20px;
    flex-wrap: wrap;
}

.bj-about-content-contact i {
    width: 40px;
    height: 40px;
    background: var(--primaryColor);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    border-radius: 50%;
    font-size: 20px;
    transition: all .35s ease-in;
}

.bj-about-content-contact p {
    display: flex;
    align-items: center;
    gap: 10px;
}

.bj-about-content-contact p a {
    font-weight: 600;
    line-height: 40px;
}

.bj-about-content-contact:hover i {
    background: var(--lightGrayBG);
    color: var(--primaryColor);
}

.bj-about-content:after {
    width: 60px;
    height: 60px;
    background: linear-gradient(218deg, rgba(63, 72, 204, 1) 18%, rgba(121, 64, 172, 0) 105%);
    position: absolute;
    top: 20px;
    right: 0;
    content: "";
    border-radius: 50%;
    opacity: .5;
    pointer-events: none;
}

@keyframes bj-bob-y {
    0% {
        transform: translateY(-30px)
    }

    50% {
        transform: translateY(-10px)
    }

    to {
        transform: translateY(-30px)
    }
}

@keyframes bj-bob-y-reverse {
    0% {
        transform: translateY(10px)
    }

    50% {

        transform: translateY(-20px)
    }

    to {
        transform: translateY(10px)
    }
}

@media (max-width:1330px) {
    .bj-about-img-exp {
        left: -20px;
    }
}

@media (max-width:991px) {
    .bj-about-img-shape {
        display: none;
    }

    .bj-about-img-wrapper {
        text-align: center;

    }

    .bj-about-img-wrapper img {
        width: 100%;
        object-fit: cover;
        height: 350px;
    }

    .bj-about-img-exp {
        animation: none;
        left: 0;
        bottom: 0;
        top: unset;
    }

    .bj-about-img-exp:before {
        display: none;
    }

    .bj-about-content {
        padding: 30px 0;
    }

    .bj-about-content:after {
        display: none;
    }
}

@media (max-width:576px) {
    .bj-about-img-exp {
        position: unset;
        width: 100%;
        margin: 12px 0 0;
    }
}



/* 10. product gird */
.bj-product-item {
    position: relative;
    overflow: hidden;
    border-radius: 10px;
}

.bj-product-section:before {
    content: "";
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, #d4d7ff 12%, var(--lightBG) 10%);
    background-size: 20px 20px;
    /* Adjust the size of the pattern */
    /* animation: moveBackground 8s linear infinite; */
    /* Adjust the animation duration and timing function */
    z-index: -1;
}

@keyframes moveBackground {
    0% {
        transform: translate(0, 0);
    }

    100% {
        transform: translate(20%, 20%);
    }
}

.bj-product-img img {
    width: 100%;
}

.bj-product-overlay-content {
    background: #fff;
    position: absolute;
    bottom: 15px;
    padding: 12px;
    text-align: center;
    width: calc(100% - 30px);
    margin: auto;
    left: 0;
    right: 0;
    transition: all .35s cubic-bezier(0.4, 1.13, 0.64, 1.08);
}

.bj-product-content {
    position: absolute;
    top: 0;
    background: #ffffffb9;
    padding: 15px;
    width: 100%;
    height: 100%;
    right: -100%;
    opacity: 0;
    pointer-events: none;
    margin: 0 auto;
    transition: all .35s cubic-bezier(0.4, 1.13, 0.64, 1.08);
}

.bj-product-overlay-content h4 a {
    font-size: 14px;
    letter-spacing: 2px;
    text-transform: uppercase;
    display: block;
    padding: 12px;
}

.bj-product-section {
    padding: 60px 0;
    position: relative;
    overflow: hidden;
}

.bj-product-item:hover .bj-product-overlay-content {
    bottom: -100px;
}

.bj-product-item:hover .bj-product-content {
    pointer-events: all;
    opacity: 1;
    right: 0;
}

.bj-product-content h3 a {
    font-size: 20px;
}

.bj-product-content h3 {
    margin-bottom: 12px;
}

.bj-product-content>p:not(:last-child) {
    margin-bottom: 22px;
}

.bj-home-product-nav {
    position: absolute;
    bottom: 30px;
    width: 120px;
    right: 0;
    left: 0;
    margin: 0 auto;
}

#bj-home-product-slider {
    padding-bottom: 70px;
}

[class*="home-product-button-"] {
    background: var(--primaryColor);
    color: #fff;
    width: 40px;
    height: 40px;
    border-radius: 5px;
    transition: all .35s ease-in;
}

[class*="home-product-button-"]:after {
    font-size: 16px;
}

[class*="home-product-button-"]:hover {
    background: var(--lightBG);
    color: var(--primaryColor);
}

/* 11. portfolio */


.bj-portfolio-gradient-holder {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: .75;
    transition: opacity 1s;
    z-index: 1;
    pointer-events: none
}

.bj-portfolio-gradient-holder:after {
    content: '';
    opacity: .8;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: radial-gradient(ellipse at 75% 37%, var(--primaryColor) 0, var(--secondaryColor) 45%), radial-gradient(ellipse at 120% 65%, #000 0, transparent 45%), radial-gradient(ellipse at -29% -11%, var(--primaryColor) 0, transparent 45%), radial-gradient(ellipse at -65% 35%, var(--lightGrayBG) 0, transparent 45%), linear-gradient(90deg, var(--lightGrayBG) 0, var(--primaryColor) 100%);
    background-size: 125% 200%, 100% 100%, 100% 100%, 100% 100%, 100% 100%
}

.bj-portfolio-gradient-holder .bj-portfolio-gradient {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    animation: qode-dots-holder 12s linear infinite;
    animation-direction: alternate;
    animation-play-state: paused;
    opacity: 1;
    z-index: 1;
    pointer-events: none
}

.bj-portfolio-gradient-holder .bj-portfolio-gradient .bj-portfolio-gradient-dot-1,
.bj-portfolio-gradient-holder .bj-portfolio-gradient .bj-portfolio-gradient-dot-2 {
    display: block;
    position: relative;
    border-radius: 50%;
    transform-origin: 50% 50%;
    animation: qode-dot 6s infinite;
    animation-direction: alternate;
    animation-play-state: paused;
    background-color: currentColor;
    width: 1px;
    height: 1px
}

.bj-portfolio-gradient-holder .bj-portfolio-gradient .bj-portfolio-gradient-dot-1 {
    color: var(--primaryColor);
    opacity: .15;
    animation-delay: -1s;
    box-shadow: currentColor 0 0 90px 120px
}

.bj-portfolio-gradient-holder .bj-portfolio-gradient .bj-portfolio-gradient-dot-2 {
    color: var(--primaryColor);
    box-shadow: currentColor 0 0 90px 90px;
    opacity: .75;
    z-index: 2
}

.bj-portfolio-item:hover .bj-portfolio-gradient-holder {
    opacity: 1
}

.bj-portfolio-img {
    position: relative;
    overflow: hidden;
}

.bj-portfolio-img img {
    width: 100%;
    object-fit: cover;
}

.bj-portfolio-item {
    position: relative;
    overflow: hidden;
    display: inline-block;
    width: 100%;
    vertical-align: top;
    border-radius: var(--border-radius-rounded-sm);
}

.bj-portfolio-item:hover .bj-portfolio-gradient {
    animation-play-state: running
}

.bj-portfolio-item:hover .bj-portfolio-gradient .bj-portfolio-gradient-dot-1,
.bj-portfolio-item:hover .bj-portfolio-gradient .bj-portfolio-gradient-dot-2 {
    animation-play-state: running
}

.bj-portfolio-content {
    position: absolute;
    top: 0;
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: end;
    padding: 30px 15px;
    z-index: 99;
    pointer-events: none;
}

.bj-portfolio-content .bj-portfolio-content-inner h3 a {
    color: var(--white);
}

.bj-portfolio-content-inner {
    pointer-events: all;
    text-align: center;
}

section.bj-portfolio-section {
    background: var(--lightGrayBG);
    padding: 80px 0 60px;
    position: relative;
}

section.bj-portfolio-section:after {
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background-image: url(../img/Circuit.png);
    pointer-events: none;
    opacity: .25;
}

.bj-portfolio-section .section-title {
    position: relative;
}

.bj-portfolio-navBtn {
    position: absolute;
    width: 120px;
    bottom: 28px;
    right: 0;
}

.bj-portfolio-navBtn [class*="home-portfolio-button-"] {
    background: var(--primaryColor);
    color: #fff;
    width: 40px;
    height: 40px;
    border-radius: 5px;
    transition: all .35s ease-in;
}

.bj-portfolio-navBtn [class*="home-portfolio-button-"]:after {
    font-size: 16px;
}

.bj-portfolio-navBtn [class*="home-portfolio-button-"]:hover {
    background: var(--lightBG);
    color: var(--primaryColor);
}

.home-portfolio-pagination span.swiper-pagination-bullet {
    opacity: 1;
    border-radius: 0;
    width: 20px;
    background: var(--lightBG);
    height: 4px;
    transition: all var(--transition);
}

.home-portfolio-pagination span.swiper-pagination-bullet.swiper-pagination-bullet-active {
    width: 40px;
    height: 4px;
    background: var(--primaryColor);
}

@media (max-width:767px) {
    .bj-portfolio-section .section-title {
        margin-bottom: 80px;
    }

    .bj-portfolio-navBtn {
        bottom: -40px;
    }
}

@keyframes qode-dots-holder {
    0% {
        transform: rotate(0)
    }

    100% {
        transform: rotate(360deg) translate(10%, 20%)
    }
}

@keyframes qode-dot {
    50% {
        transform: scale(2) translateY(100px)
    }
}


/* 12. Footer */
footer {
    background: var(--primaryColor);
    padding: 0;
    background-size: contain;
    background-image: url(../img/shape-1.png);
    background-repeat: no-repeat;
}

.footer-logo img {
    width: 220px;
}

.footer-links {
    color: var(--lightBG);
}

.footer-links h3 {
    font-size: 22px;
    font-weight: 500;
    margin-bottom: 15px;
}

.footer-links ul li a {
    color: var(--lightBG);
    font-size: 18px;
    font-weight: 200;
}

.footer-links ul li:not(:last-child) {
    margin-bottom: 12px;
}

.footer-links ul li span {
    margin-right: 10px;
}

.footer-links ul li a:hover {
    color: #8786b5;
}

footer ul.solcial-media {
    display: flex;
    gap: 20px;
    height: 100%;
    align-items: center;
}

footer ul.solcial-media li p {
    line-height: 0;
}

footer ul.solcial-media li a {
    font-size: 16px;
    color: #fff;
}

.copy-rights-wrapper {
    border-top: 1px solid #4f57d0;
    margin-top: 0;
    padding: 12px 0;
}

.copy-rights-content ul {
    display: flex;
    justify-content: space-between;
    gap: 5px 10px;
    flex-wrap: wrap;
}

.copy-rights-content ul small {
    color: #fff;
}

.copy-rights-content ul small a {
    color: var(--lightGrayBG);
    font-weight: 600;
    margin-left: 5px;
}

.copy-rights-content ul small a:hover {
    color: #8786b5;
}

/* 13. Testimonial With CTA  */

.bj-testimonial-cta-section .section-title h6 {
    color: #fff;
    font-weight: 400;
}

.bj-testimonial-cta-section .section-title h2 {
    color: #fff;
    font-weight: 700;
}

.bj-testimonial-header p {
    color: #fff;
}

.bj-testimonial-footer,
.bj-testimonial-footer p {
    color: #fff;
}

.bj-testimonial-cta-section .section-title {
    margin-bottom: 20px;
}

.bj-testimonial-silder-container {
    background: #3f48cc;
    padding: 60px 0;
    height: 100%;
    position: relative;
    overflow: hidden;
}

.bj-cta-container:before {
    content: "";
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, #e0e5f994 1%, #00000000 20%), radial-gradient(circle, transparent 1%, #ffffff 9%);
    background-size: 25px 30px;
    animation: moveBackground 8s linear infinite;
    z-index: -1;
}

.bj-testimonial-silder-container:before {
    content: "";
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, #3941b721 1%, #0000001a 20%), radial-gradient(circle, #31389f00 1%, #ffffff00 9%);
    background-size: 25px 30px;
    animation: moveBackground 8s linear infinite;
    z-index: 0;
}

.bj-testimonial-silder-container .container-fluid {
    position: relative;
}

section.bj-testimonial-cta-section {
    position: relative;
    overflow: hidden;
}

.bj-testimonial-nav {
    position: absolute;
    width: 150px;
    right: 0;
    bottom: 20px;
}

.bj-testimonial-nav [class*="home-testimonial-"] {
    background: #fff;
    width: 40px;
    height: 40px;
    border-radius: 5px;
}

.bj-testimonial-nav [class*="home-testimonial-"]:after {
    font-size: 18px;
}

.bj-testimonial-footer {
    margin-top: 30px;
}

.bj-cta-container {
    display: flex;
    align-items: center;
    height: 100%;
    padding: 60px 0;
    position: relative;
}

.bj-cta-content-inner {
    display: grid;
    gap: 30px;
}

.bj-testimonial-cta-section .bj-cta-content-inner .section-title {
    margin: 0;
}

.bj-testimonial-cta-section .bj-cta-content-inner .section-title h6 {
    color: var(--primaryColor);
}

.bj-testimonial-cta-section .bj-cta-content-inner .section-title h2 {
    color: var(--secondaryColor);
    margin-bottom: 11px;
}

.bj-cta-content-body ul {
    display: flex;
    align-items: center;
    gap: 20px;
    flex-wrap: wrap;
    margin-top: 20px;
    justify-content: center;
}

.bj-cta-content-body ul .bj-cta-icon {
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--primaryColor);
    border-radius: 50%;
}

.bj-cta-content-body ul .bj-cta-icon i {
    color: #fff;
    font-size: 19px;
}

.bj-cta-content-body .outline-btn {
    width: 300px;
    margin: 0 auto;
    justify-content: space-between;
}

.bj-cta-content-body ul .bj-cta-contact-content p {
    font-weight: 600;
    font-size: 18px;
}

@media (max-width:576px) {
    .bj-testimonial-nav {
        left: 0;
        margin: 0 auto;
        bottom: 20px;
    }

    .bj-cta-content-body .outline-btn {
        width: 280px;
    }

    #bj-home-testimonial-silder {
        padding-bottom: 80px;
    }
}

/* 14. Client */
section.clients-section {
    padding: 50px 0 60px;
    background: var(--lightGrayBG);
}

section.clients-section .swiper-wrapper {
    -webkit-transition-timing-function: linear !important;
    -o-transition-timing-function: linear !important;
    transition-timing-function: linear !important;
}

/* About page */
.breadcrumb-wrapper {
    position: relative;
}

.breadcrumb-img {
    position: relative;
}

.breadcrumb-img img {
    width: 100%;
}

.breadcrumb-img:after {
    content: "";
    width: 100%;
    height: 100%;
    background: var(--primaryColor);
    position: absolute;
    top: 0;
    left: 0;
    opacity: .25;
}

.breadcrumb-content {
    position: absolute;
    width: 100%;
    left: 0;
    top: 0;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.breadcrumb-content-inner {
    text-align: center;
}

.breadcrumb-content-inner h1 {
    color: #fff;
    text-transform: uppercase;
}

.breadcrumb-content-inner ul {
    display: flex;
    justify-content: center;
    align-items: flex-end;
    margin-top: 30px;
    gap: 0px 10px;
}

.breadcrumb-content-inner ul li p {
    margin: 0;
    opacity: .5;
    font-weight: 500;
    font-size: 18px;
}

.breadcrumb-content-inner ul li a {
    line-height: 1.8;
    font-weight: 700;
    font-size: 18px;
    position: relative;
}

.breadcrumb-content-inner ul li a:after {
    content: "\f101";
    position: relative;
    font-family: 'Font Awesome 5 Pro';
    margin: 15px;
    font-size: 16px;
    opacity: 0.8;
}

@media (max-width:767px) {
    .breadcrumb-wrapper {
        height: 200px;
    }

    .breadcrumb-img {
        height: 100%;
    }

    .breadcrumb-img img {
        height: 100%;
        object-fit: cover;
    }
}

/* about page */
.bj-about-main-section {
    padding: 60px 0;
}

.bj-about-main-section .row {
    gap: 20px 0;
}

.bj-about-main-section .bj-about-main-title h6 {
    color: var(--primaryColor);
    letter-spacing: 2px;
}

.bj-about-main-section .bj-about-main-title h2 {
    font-size: 50px;
}

.bj-about-main-content-inner p {
    font-size: 16px;
    line-height: 2;
}

.bj-about-main-image-with-text-wrapper {
    position: relative;
}

.bj-about-main-img img {
    width: 100%;
    opacity: 0.2;
}

.bj-about-main-image-with-text {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 30px;
}

.bj-about-main-image-with-text h2 {
    font-size: 150px;
    font-weight: 500;
    line-height: 150px;
    -webkit-text-stroke-width: 2px;
    -webkit-text-stroke-color: var(--primaryColor);
    font-family: var(--numberFont);
    color: transparent;
}

@media (max-width:1330px) {
    .bj-about-main-section .bj-about-main-title h2 {
        font-size: 46px;
    }
}

@media (max-width:1199px) {
    .bj-about-main-section .bj-about-main-title h2 {
        font-size: 40px;
    }
}

@media (max-width:991px) {
    .bj-about-main-section .bj-about-main-title h2 {
        font-size: 34px;
    }

    .bj-about-main-image-with-text h2 {
        font-size: 60px;
    }
}

@media (max-width:576px) {
    .bj-about-main-section .bj-about-main-title h2 {
        font-size: 24px;
    }

    .bj-about-main-image-with-text h2 {
        font-size: 30px;
    }
}

.bj-about-history-item {
    border: 1px solid var(--lightGrayBG);
    transition: all .35s ease-in;
    text-align: center;
}

.bj-about-history-year {
    border-bottom: 1px solid var(--lightGrayBG);
    padding: 12px 10px;
    background: #fff;
    transition: all .35s ease-in;
}

.bj-about-history-content {
    padding: 30px 20px;
}

.bj-about-history-year h4 {
    -webkit-text-stroke-width: 2px;
    -webkit-text-stroke-color: var(--primaryColor);
    font-family: var(--numberFont);
    color: transparent;
    font-size: 50px;
    font-weight: 200;
    transition: all .35s ease-in;
}

.bj-about-history-content p {
    transition: all .35s ease-in;
}

.bj-about-history-item:hover {
    background: var(--primaryColor);
    border-color: #3239a3;
}

.bj-about-history-item:hover .bj-about-history-year h4 {
    -webkit-text-stroke-color: #fff;
}

.bj-about-history-item:hover .bj-about-history-year {
    background: var(--primaryColor);
    border-color: #3239a3;
}

.bj-about-history-item:hover .bj-about-history-content p {
    color: #fff;
}

section.bj-about-history-section {
    background: var(--lightBG);
    padding: 60px 0;
}

#bj-about-history-slider {
    padding-bottom: 60px;
}

#bj-about-history-slider .swiper-pagination-bullet {
    width: 5px;
    height: 5px;
    margin: 0px 15px;
    position: relative;
    background: var(--primaryColor);
    opacity: 1;
}

#bj-about-history-slider .swiper-pagination-bullet:after {
    content: "";
    width: 20px;
    height: 20px;
    border: 1px solid var(--primaryColor);
    position: absolute;
    top: -8px;
    border-radius: 50%;
    left: -8px;
    opacity: 0;
    transition: all .35s ease-in;
}

#bj-about-history-slider .swiper-pagination-bullet-active:after {
    opacity: 1;
}

.bj-about-history-slider-wrapper .swiper-slide {
    height: auto;
}

.bj-about-history-item {
    height: 100%;
}

.bj-about-leadership-card {
    position: relative;
    border: 1px solid var(--lightGrayBG);
    padding: 10px;
    height: 100%;
    display: flex;
    align-items: center;
}

.bj-about-leadership-img img {
    width: 100%;
}

.bj-about-leadership-info {
    position: absolute;
    bottom: 0;
    padding: 10px;
    width: 100%;
}

.bj-about-leadership-info-inner {
    background: #fff;
    text-align: center;
    padding: 10px;
}

.bj-about-leadership-content {
    display: flex;
    align-items: center;
    height: 100%;
}

.bj-about-leadership-content-header {
    margin-bottom: 10px;
}

.bj-about-leadership-content-header h4 {
    font-size: 32px;
}

.bj-about-leadership-info-inner h4 {
    color: var(--secondaryColor);
    font-weight: 600;
    font-size: 18px;
}

.bj-about-leadership-content-inner p {
    font-size: 16px;
}

.bj-about-leadership-info-inner p {
    color: var(--primaryColor);
    font-weight: 500;
    text-transform: uppercase;
    font-size: 12px;
    letter-spacing: 2px;
    line-height: 40px;
}

section.bj-about-leadership-section {
    padding: 60px 0;
}

section.bj-about-leadership-section .container-fluid>.row {
    gap: 20px 0;
}


.bj-about-leadership-img-wrapper {
    position: relative;
}

.bj-about-leadership-card .row {
    gap: 15px 0;
}

@media (max-width:1399px) {
    .bj-about-leadership-card {
        align-items: flex-start;
    }
}

section.bj-about-business-structure-section {
    padding: 60px 0;
    background: var(--lightGrayBG);
}

.bj-about-business-structure-item {
    background: #fff;
    position: relative;
    overflow: hidden;
    transition: all .35s ease-in;
}

.bj-about-business-structure-item:hover {
    background: var(--primaryColor);
}

.bj-about-business-structure-shape {
    position: absolute;
    top: -130px;
    pointer-events: none;
    transition: all .35s ease-in;
}

.bj-about-business-structure-item:hover .bj-about-business-structure-shape {
    top: -10px;
}

.bj-about-business-structure-icon-wrapper {
    display: flex;
    justify-content: space-between;
    position: relative;
}

.bj-about-business-structure-count {
    position: absolute;
    right: 0;
    top: 0px;
}

.bj-about-business-structure-count h4 {
    -webkit-text-stroke-width: 2px;
    -webkit-text-stroke-color: var(--primaryColor);
    font-family: var(--numberFont);
    color: transparent;
    font-size: 50px;
    font-weight: 500;
    opacity: .11;
    transition: all .35s ease-in;
}

.bj-about-business-structure-item:hover .bj-about-business-structure-count h4 {
    -webkit-text-stroke-color: #fff;
    opacity: 0.1;
}

.bj-about-business-structure-content {
    margin-top: 15px;
}

.bj-about-business-structure-content h3 {
    transition: all .35s ease-in;
    font-weight: 600;
}

.bj-about-business-structure-item:hover .bj-about-business-structure-content h3 {
    color: #fff;
}

.bj-about-business-structure-content-wrapper {
    padding: 30px;
}

.bj-about-business-structure-section>.container>.row {
    gap: 25px 0;
}

.bj-production-line-item {
    position: relative;
    overflow: hidden;
    border-radius: 20px;
}

.bj-production-line-item:after {
    position: absolute;
    top: 0;
    left: -75%;
    z-index: 2;
    display: block;
    content: "";
    width: 50%;
    height: 100%;
    background: linear-gradient(90deg, hsla(0, 0%, 100%, 0) 0, hsla(0, 0%, 100%, .3));
    transform: skewX(-20deg);
    opacity: 0;
}

.bj-production-line-item:hover:after {
    animation: imgShine 1s;
    opacity: 1
}

.bj-production-line-img img {
    width: 100%;
    transition: all .35s ease-in;
}

.bj-production-line-content {
    position: absolute;
    left: 24px;
    right: 24px;
    bottom: 24px;
    background: #fff;
    padding: 22px 12px;
    text-align: center;
    border-radius: 10px;
}

.bj-production-line-item:hover .bj-production-line-img img {
    transform: scale(1.15);
}

section.bj-production-line-section {
    background: var(--lightBG);
    padding: 60px 0;
}

.bj-production-line-section .section-title {
    margin-bottom: 0;
}

.bj-production-line-slider-wrapper {
    margin-top: 50px;
}

.bj-production-line-slider-nav {
    position: relative;
    width: 140px;
    margin-left: auto;
    height: 100%;
}

.bj-production-line-slider-nav .swiper-button-next,
.bj-production-line-slider-nav .swiper-button-prev {
    background: var(--primaryColor);
    color: #fff;
    width: 40px;
    height: 40px;
    border-radius: 5px;
    top: 22px;
}

.bj-production-line-slider-nav .swiper-button-next:after,
.bj-production-line-slider-nav .swiper-button-prev:after {
    font-size: 16px;
}

section.bj-product-development-section {
    background: #f9f9f9;
    padding: 60px 0;
}

.bj-product-development-item {
    padding: 20px;
    background: var(--lightGrayBG);
    border-radius: 15px;
    position: relative;
    height: 100%;
}

.bj-product-development-icon {
    position: relative;
    top: -50px;
    transition: all .35s ease-in;
}

.bj-product-development-content h4 {
    margin-bottom: 10px;
}

.bj-product-development-item:hover .bj-product-development-icon {
    top: -10px;
}

@keyframes imgShine {
    to {
        left: 125%
    }
}

section.bj-contact-section {
    padding: 60px 0;
    position: relative;
    overflow: hidden;
}

section.bj-contact-section:after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: radial-gradient(circle, var(--primaryColor) 12%, transparent 10%);
    background-size: 20px 20px;
    opacity: .1;
    pointer-events: none;
    z-index: -1;
}

.bj-contact-section .row {
    gap: 10px 0;
}

.bj-contact-form {
    background: var(--lightBG);
    border-radius: 30px;
    padding: 30px;
}

.bj-contact-form-content {
    text-align: center;
    margin-bottom: 30px;
}

.bj-contact-form-content h2 span {
    text-transform: capitalize;
    color: var(--primaryColor);
}

.bj-contact-form form .form-control {
    margin-bottom: 11px;
    font-size: 16px;
    padding: 15px 12px;
}

.bj-contact-form .btn.outline-btn {
    margin: 0 auto;
    margin-top: 30px;
}

.bj-contact-form .outline-btn .icon-group {
    padding: 18px 24px;

}

.bj-contact-info ul {
    display: flex;
    justify-content: center;
    gap: 10px;
    flex-wrap: wrap;
}

.bj-contact-icon {
    position: relative;
}

.bj-contact-info ul li {
    background: var(--lightBG);
    padding: 60px 30px;
    text-align: center;
    border-radius: 10px;
    width: 49%;
    display: flex;
    align-items: center;
    gap: 10px;
}

.bj-contact-icon i {
    position: relative;
    margin-bottom: 0;
    font-size: 35px;
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
}

.bj-contact-icon i:after {
    content: "";
    width: 60px;
    height: 60px;
    background: var(--primaryColor);
    position: absolute;
    top: 0px;
    left: 0px;
    border-radius: 50%;
    opacity: .4;
    transition: all .35s ease-in;
}

.bj-contact-info p a {
    font-size: 20px;
    font-weight: 600;
}

.bj-contact-info ul li:hover .bj-contact-icon i:after {
    top: 0;
    left: 0;
    opacity: .4;
    margin: auto;
}

.bj-contact-info {
    text-align: left;
}

.bj-contact-info p {
    font-weight: 600;
    font-size: 16px;
}

.bj-contact-address {
    background: var(--lightBG);
    margin-top: 10px;
    border-radius: 10px;
    padding: 50px 30px;
    display: flex;
    gap: 10px;
}

.bj-contact-address:hover .bj-contact-icon i:after {
    top: 0;
    left: 0;
}

.bj-contact-info p span {
    font-size: 16px;
    font-weight: 600;
    color: var(--black);
}

.bj-contact-address .bj-contact-info p {
    font-size: 18px;
    color: var(--primaryColor);
}

.bj-map {
    margin-top: 10px;
    border-radius: 10px;
    overflow: hidden;
}

@media (max-width:991px) {
    .bj-contact-info ul li {
        width: 100%;
    }
}

@media (max-width:480px) {
    .bj-contact-form {
        padding: 20px 10px;
    }

    .bj-contact-info ul li,
    .bj-contact-address {
        flex-direction: column;

    }

    .bj-contact-info p a,
    .bj-contact-address .bj-contact-info p {
        font-size: 16px;
    }

    .bj-contact-info {
        text-align: center;
    }

    .bj-contact-icon {
        padding: 0;
    }
}

section.bj-production-line-details-section {
    padding: 60px 0 0;
    background: #f7f8fb;
    position: relative;
    z-index: 1;
}

section.bj-production-line-details-section:after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: radial-gradient(circle, var(--primaryColor) 12%, transparent 10%);
    background-size: 20px 20px;
    opacity: .06;
    pointer-events: none;
    z-index: -1;
}

.bj-production-line-details-list ul {
    display: grid;
    gap: 5px 0;
}

.bj-production-line-details-list ul li i {
    color: var(--primaryColor);
    margin-right: 5px;
}

.bj-production-line-details-item {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
}

.bj-production-line-details-content {
    display: flex;
    align-items: center;
    height: 100%;
    padding: 30px 80px;
    background: var(--lightBG);
}

.bj-production-line-details-inner>p {
    margin-bottom: 20px;
}

.bj-production-line-details-inner h3 {
    font-size: 30px;
    margin-bottom: 11px;
    color: var(--primaryColor);
}

.bj-production-line-details-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* project page */

.bj-service-text h4 {
    font-size: 20px;
    color: var(--primaryColor);
}

.bj-service-icon-with-text {
    display: flex;
    align-items: center;
    gap: 10px;
}

section.bj-service-section .row {
    gap: 24px 0;
}

section.bj-service-section {
    background: var(--lightGrayBG);
    padding: 60px 0;
}

.bj-service-item {
    background: #fff;
    padding: 30px;
    border-radius: 20px;
    height: 100%;
    transition: all .35s ease-in;
}

.bj-service-content {
    margin-top: 10px;
}

.bj-service-item:hover {
    transform: translateY(-5px);
    box-shadow: 0px 10px 25px -5px #02197254;
}

/* quality page */
section.bj-systems-management-section {
    background: var(--lightGrayBG);
    padding: 60px 0;
}

.bj-certification-wrapper ul {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.bj-certification-wrapper ul li {
    width: 180px;
}

.bj-certification-wrapper ul li img {
    width: 100%;
}

.bj-product-testing-row {
    gap: 24px 0;
}

.bj-product-testing-section {
    padding: 60px 0;
}

.bj-product-testing-item {
    text-align: center;
    display: grid;
    height: 100%;
    gap: 10px;
    background: var(--lightGrayBG);
    padding: 20px;
    border-radius: 20px;
    transition: all .35s ease-in;
}

.bj-product-testing-item:hover {
    transform: translateY(-5px);
    box-shadow: 0px 10px 25px -5px #02197254;
}

.bj-production-line-details-table table {
    width: 100%;
    border-collapse: collapse;
    table-layout: fixed;
    width: 100%;
    margin-bottom: 20px;
}

.bj-production-line-details-table tr,
.bj-production-line-details-table td,
.bj-production-line-details-table th {
    border: 1px solid #333;
    padding: 12px;

}

.bj-production-line-details-list li i {
    position: absolute;
    top: 8px;
    left: 0;
}

.bj-production-line-details-list li {
    position: relative;
    padding-left: 25px;
}