@import url("https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap");

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Poppins", sans-serif;
}

:root {
    /* //....... Color ........// */
    --primary-color: #ff3c78;
    --light-black: rgba(0, 0, 0, 0.89);
    --black: #000;
    --white: #fff;
    --grey: #aaa;
    --grey2: #dcdcdc;
    --blue: #133e9b;
}

.underline {
    position: relative;
    color: var(--blue);
}

.underline:before {
    height: 2px;
    width: 70px;
    position: absolute;
    border-radius: 30px;
    text-align: left;
    content: '';
    background: var(--blue);
    bottom: -5px;
}

.underline:after {
    content: '';
    position: absolute;
    left: 0;
    height: 10px;
    width: 10px;
    animation-duration: 5s;
    animation-timing-function: linear;
    animation-iteration-count: infinite;
    animation-direction: alternate;
    animation-name: MOVE-BG;
    background: var(--blue);
    bottom: -9px;
    border-radius: 50%;
}

@keyframes MOVE-BG {
    from {
        transform: translateX(0);
    }

    to {
        transform: translateX(65px);
    }
}

/* NAVBAR START*/

.navbar {
    box-shadow: 0 5px 4px rgb(146 161 176 / 15%);
}

.navbar-brand {
    font-weight: 700;
    color: var(--black);
    font-size: 1.4rem;
    margin: 0;
}

.nav-link {
    text-decoration: none;
    color: var(--black);
    font-size: 18px;
}

.navbar-nav li {
    list-style: none;
    margin-left: 1.5rem;
    font-size: 1.2rem;
}

.navbar-collapse ul a {
    text-decoration: none;
    color: var(--black);
    font-size: 18px;
    position: relative;
}

.navbar-collapse ul a:after {
    content: "";
    position: absolute;
    background: var(--blue);
    height: 3px;
    border-radius: 10px;
    width: 0;
    left: 0;
    bottom: 5px;
    transition: 0.3s;
}

.navbar-collapse ul li a:hover:after {
    width: 100%;
}

.navbar-collapse ul li .active:after {
    width: 100%;
}

/* NAVBAR END*/

/* PAGE TITLE START*/
.page_title {
    background-image: url(../images/title-bg.jpg);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-attachment: fixed;
    padding: 40px 0 20px 0;
}

.page_title h1 {
    color: var(--white);
    font-weight: 600;
}

.page_title p {
    color: var(--white);
    letter-spacing: 1px;
    font-weight: 600;
}

/* PAGE TITLE END*/


/* PRODUCTS START */
.product-container{
    background: #f5f5f5;
}

.offcanvas-title{
    color: var(--blue);
    font-weight: 600;
}

.offcanvas{
    --bs-offcanvas-width: auto;
}

.product-center ul li{
    list-style-type: none;
    margin-left: -30px;
    padding: 15px 0;
    border-bottom: 1px solid var(--blue);
    font-weight: 500;
    white-space: nowrap;
    text-overflow: ellipsis;
    transition: 0.2s color;
}

.product-center ul li:hover{
    color: var(--blue);
    border-bottom: 2px solid var(--blue);
}

.card{
    margin: 20px 0;
    background-color: var(--white);
}

.card-title {
    color: var(--blue);
}

.image_section {
    overflow: hidden;
    text-align: center;
    padding: 10px;
}

.image_section img {
    transition: 0.3s;
    width: 250px;
    height: 250px;
}

.card:hover .image_section img {
    transform: scale(1.1);
}

.muti-pcb .image-box{
    text-align: center;
}

.muti-pcb .image-box img{
    width: 80%;
    height: 350px;
}

/* PRODUCTS END */

/* FOOTER START */
.foter {
    background: var(--black);
}

.footer_col h4 {
    color: var(--white);
    font-weight: 500;
    letter-spacing: 1px;
    margin-bottom: 25px;
    font-size: 18px;
}

.footer_col li {
    list-style-type: none;
}

.footer_col p {
    color: var(--grey);
    margin-bottom: 15px;
    font-size: 14px;
}

.footer_col a {
    display: block;
    text-decoration: none;
    text-shadow: none;
    color: var(--grey);
    margin-bottom: 15px;
    font-size: 14px;
}
.footer_col a:hover {
    color: var(--blue);
}

.footer_col span{
    margin-left: 5px;
    font-size: 14px;
}
.footer_col i{
    font-size: 18px;
}

/* FOOTER END */