@import url('https://fonts.googleapis.com/css?family=Asap:400,500,600,700|Lato:100,300,400,700,900|Poppins:100,200,300,400,500,600,700,800,900');

:root {
    --primary-red: #ce1212;
    --primary-red-hover: #a10e0e;
    --dark-blue: #0b1e44;
    --text-color: #333;
    --text-muted: #666;
    --bg-light: #f9f9f9;
    --white: #ffffff;
    --transition: all 0.3s ease;
    --shadow-sm: 0 2px 4px rgba(0, 0, 0, 0.1);
    --shadow-md: 0 4px 10px rgba(0, 0, 0, 0.15);
}

body {
    margin: 0;
    padding: 0;
    color: var(--text-muted);
    font-size: 16px;
    font-family: 'Poppins', 'Lato', sans-serif;
    font-weight: 400;
    line-height: 1.6;
    overflow-x: hidden;
    background-color: var(--white);
}

a:focus,
button:focus {
    outline: none;
}

p {
    font-family: 'Poppins', 'Open Sans', sans-serif;
    margin-bottom: 1.5rem;
}

a,
a:hover,
a:focus {
    text-decoration: none;
    transition: var(--transition);
}

h1,
h2,
h3,
h4,
h5,
h6 {
    margin: 0 0 1rem;
    font-family: 'Asap', sans-serif;
    font-weight: 600;
    color: var(--dark-blue);
}

.img-100 {
    width: 100%;
}

.flex-center {
    align-items: center;
}

.flex-stretch {
    justify-content: stretch;
}

.grey-border {
    border: 1px solid #dee2e6;
}

.padding-80 {
    padding: 80px 0;
}

.main-title {
    font-size: 2.5rem;
    font-weight: 700;
    font-family: "Asap", sans-serif;
    color: var(--dark-blue);
    margin-bottom: 2rem;
    position: relative;
    padding-bottom: 10px;
}

.main-title:after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 4px;
    background: var(--primary-red);
}

.sub-title {
    font-size: 1.5rem;
    font-weight: 600;
    font-family: "Asap", sans-serif;
    color: var(--text-color);
    margin-bottom: 1.5rem;
}

.round-btn {
    font-size: 14px;
    letter-spacing: 1px;
    color: var(--white);
    text-transform: uppercase;
    text-align: center;
    background: var(--primary-red);
    padding: 12px 32px;
    border-radius: 4px;
    display: inline-block;
    border: none;
    font-weight: 600;
    transition: var(--transition);
    box-shadow: var(--shadow-sm);
}

.round-btn:hover {
    color: var(--white);
    background: var(--primary-red-hover);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}


.header-section {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    padding: 10px 0;
    background: url(../images/header-texture.jpg);
    background-size: cover;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}

.header-section .navbar {
    min-height: auto;
    margin-bottom: 0;
}

.header-section .navbar .navbar-nav>li>a {
    color: var(--dark-blue);
    font-weight: 600;
    font-size: 14px;
    letter-spacing: 0.5px;
    text-shadow: none;
    padding: 15px 20px;
    transition: var(--transition);
    text-transform: uppercase;
}

.header-section .navbar .nav>li>a.active,
.header-section .navbar .nav>li>a:focus,
.header-section .navbar .nav>li>a:hover {
    background-color: transparent;
    color: var(--primary-red);
}

.logo {
    width: 300px;
    float: left;
    padding: 0 10px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.logo img {
    height: 80px;
    width: auto;
    object-fit: contain;
}

.menu {
    float: right;
    cursor: pointer;
    height: 20px;
    margin-top: 30px;
    position: relative;
    z-index: 1002;
}

.menu .menu-icon {
    float: left;
}

.menu .navbars {
    width: 24px;
    height: 2px;
    background: var(--white);
    float: left;

    position: relative;
    margin: 8px 0;
    transition: all 0.2s;
}

.menu .navbars:before {
    position: absolute;
    content: "";
    background: var(--white);
    height: 2px;
    width: 24px;
    top: -8px;
    float: left;
    transition: all 0.2s;
}

.menu .navbars:after {
    position: absolute;
    content: "";
    background: var(--white);
    height: 2px;
    width: 24px;
    top: 8px;
    float: left;
    transition: all 0.2s;
}

.menu .navblock {
    float: left;
    background: url(../images/header-texture.jpg);
    background-size: cover;
    padding: 2vw;
    position: fixed;
    right: -300px;
    top: 63px;
    height: calc(100vh - 65px);
    width: 300px;
    text-align: center;
    transition: all 0.5s;
    cursor: default;
}

.menu.open .navblock {
    right: 0;
}

.menu.open .navbars {
    background: var(--primary-red);
}

.menu.open .navbars:before {
    transform: rotate(45deg) translateY(6px) translateX(5px);
}

.menu.open .navbars:after {
    transform: rotate(-45deg) translateY(-6px) translateX(5px);
}

.navblock ul {
    padding: 0;
    list-style: none;
    text-align: left;
    display: inline-block;
}

.navblock ul li a {
    color: var(--white);
    text-transform: uppercase;
    font-size: 14px;
    font-weight: 600;
    padding: 12px 25px;
    background: var(--primary-red);
    margin-bottom: 5px;
    width: 250px;
    float: left;
    transition: var(--transition);
    border-radius: 4px;
}

.navblock ul li a .fas,
.navblock ul li a .fab {
    margin-right: 10px;
    width: 20px;
}

.navblock ul li a:hover,
.navblock ul li a.active {
    background: var(--primary-red-hover);
    padding-left: 35px;
    color: var(--white);
}

.slider-section {
    position: relative;
    margin-top: 90px;
}

.slider-section .carousel-caption {
    padding-bottom: 0px;
    bottom: 25%;
    text-align: left;
    left: 0;
    right: 0;
}

.slider-section .carousel-caption h1 {
    font-size: 3.5vw;
    font-family: "Asap";
    color: #fff;
    text-align: left;
    width: 45vw;
    line-height: 5vw;
}

.slider-section .carousel-caption h1 span {
    background: rgba(206, 18, 18, 0.95);
    padding: 5px 20px;
}

.ban-btn {
    font-size: 12px;
    letter-spacing: 2px;
    color: #fff;
    text-transform: uppercase;
    text-align: center;
    background: #ce1212;
    padding: 10px 30px;
    text-shadow: none;
    transition: all 0.2s;
    box-shadow: 0 15px 25px rgba(0, 0, 0, 0.2);
    display: inline-block;
}

.ban-btn:hover {
    color: #fff;
    background: #ce1212;
    text-decoration: none;
}

.slider-section .carousel-indicators {
    width: 15px;
    top: 45%;
    bottom: auto;
    left: auto;
    right: 10%;
    display: block;
    margin: 0;
}

.slider-section .carousel-indicators li {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    border: 0;
    background-color: #fff;
    margin: 10px 0;
}

.slider-section .carousel-indicators .active {
    background-color: transparent;
    border: 2px solid #ce1212;
}

/* about section */
.about-section {
    padding: 50px 0;
    background: #fff;
}

.about-section ul {
    background: #f5f5f5;
    padding: 20px 40px;
}

.about-section .sub-title {
    color: #ce1212;
    padding-bottom: 5px;
    border-bottom: 2px solid #ce1212;
    margin-bottom: 10px;
}

.about-section .sub-title .fas {
    height: 30px;
    width: 30px;
    text-align: center;
    background: #ce1212;
    padding-top: 7px;
    font-size: 16px;
    color: #ffffff;
}

/* categories section */
.categories-section {
    padding: 20px 0;
    background: #f9f9f9;
    background-size: cover;
    text-align: center;
}

.categories-block {
    margin: 15px;
    text-align: center;
    background: #fff;
    transition: all 0.2s;
    position: relative;
    cursor: pointer;
    overflow: hidden;
}

.categories-block img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    display: block;
}

.categories-block:after {
    position: absolute;
    content: "";
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    border: 1px solid #efefef;
    transition: all 0.2s;
}

.categories-block:hover:after {
    border: 11px solid #ce1212;
}

.categories-block h3 {
    color: #333;
    padding: 15px 0;
    font-size: 16px;
    transition: all 0.2s;
}

.categories-block:hover h3 {
    color: #fff;
    background: #ce1212;
}

.categories-section .slick-prev:before,
.categories-section .slick-next:before {
    color: #000;
}

/* products section */
.products-section {
    padding: 20px 0;
    background: #fff;
    background-size: cover;
    text-align: center;
}

.products-block {
    margin: 15px;
    text-align: center;
    background: #fff;
    transition: all 0.2s;
    position: relative;
}

.products-block:after {
    position: absolute;
    content: "";
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    border: 1px solid #efefef;
    transition: all 0.2s;
}

.products-block img {
    height: 15vw;
    margin: auto;
    padding: 20px;
}

/*.products-block:hover {
    transform: scale(1.05);
}*/
.products-block:hover:after {
    border: 1px solid #03A9F4;
}

.products-block h3 {
    color: #333;
    padding: 15px 0;
    font-size: 16px;
    background: #efefef;
}

.products-section .slick-prev:before,
.products-section .slick-next:before {
    color: #000;
}

/* News and Media section */
.news-media-section {
    padding: 50px 0;
    background: #f9f9f9;
    text-align: center;
}

.news-media-section .news-media-block {
    margin: 0 10px;
    padding-bottom: 30px;
    transition: all 0.2s;
}

.news-media-section .news-media-block .news-media-desc {
    background: #fff;
    padding: 15px;
    padding-bottom: 5px;
    margin: 0 15px;
    margin-top: -50px;
    position: relative;
    text-align: left;
}

.news-media-section .news-media-block .news-media-desc .date-comment span {
    float: right;
}

.news-media-section .news-media-block .news-media-desc .sub-title {
    font-size: 1.6vw;
    font-family: "Asap";
    color: #333333;
    margin-bottom: 10px;
    transition: all 0.2s;
}

.news-media-section .news-media-block:hover .news-media-desc .sub-title {
    color: #ce1212;
}

.news-media-section .news-media-block .round-btn {
    position: relative;
    margin-top: -15px;
    opacity: 0;
    transition: all 0.2s;
}

.news-media-section .news-media-block:hover .round-btn {
    opacity: 1;
}

/* client logo section */
.clients-section {
    padding: 20px 25px;
    background: #ce1212;
}

.clients-section .slick-prev,
.clients-section .slick-next {
    background: #fff;
    height: 60px;
    width: 40px;
}

.clients-section .slick-prev:before,
.clients-section .slick-next:before {
    color: #ce1212;
}

/* footer section */
.footer-section {
    padding: 30px 0 0;
    background: #1a1a1a;
    color: #a0a0a0;
    border-top: 20px solid #ce1212;
}

.footer-top {
    padding-bottom: 30px;
}

.footer-section a {
    color: #a0a0a0;
}

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

.footer-section .sub-title {
    color: #ce1212;
    margin-bottom: 20px;
}

.footer-section .contact-details {
    display: flex;
}

.footer-section .contact-details .fas {
    margin-right: 10px;
    width: 20px;
    text-align: center;
}

.social-media {
    font-size: 24px;
}

.footer-section .footer-nav {
    padding: 0;
    margin: 0;
    list-style-type: none;
    margin-left: 15px;
}

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

.footer-section .form-group {
    margin-bottom: 5px;
}

.footer-section .form-control {
    color: #616161;
    background: #a10e0e;
    border: 1px solid #616161;
    border-radius: 0;
    padding: 5px 10px;
}

.copyright-section {
    background: #a10e0e;
    padding: 10px;
    float: left;
    width: 100%;
}

.copyright-section p {
    margin-bottom: 0;
}

.copyright-section .container {
    display: flex;
    width: 100%;
}

.copyright-section .container p {
    width: 100%;
}

.copyright-section .container p.float-right {
    text-align: right;
}

.floting-enq-btn {
    position: fixed;
    right: 0;
    top: 50%;
    transform: rotate(-90deg);
    background: var(--primary-red);
    padding: 8px 24px;
    color: var(--white);
    margin-right: -52px;
    border-radius: 8px 8px 0 0;
    font-weight: 600;
    box-shadow: var(--shadow-md);
    z-index: 1001;
}

.floting-call-btn {
    position: fixed;
    right: 0;
    top: 50%;
    background: var(--primary-red);
    padding: 12px;
    color: var(--white);
    border-radius: 10px 0 0 10px;
    margin-top: -100px;
    box-shadow: var(--shadow-md);
    z-index: 1001;
}

/* Whatsapp Section */
.whatsapp-section {
    background: var(--bg-light);
    text-align: center;
}

.whatsapp-section .main-title {
    margin-bottom: 20px;
}

.whatsapp-section p {
    font-size: 1.1rem;
    color: var(--text-color);
    margin-bottom: 30px;
}

.floting-call-btn a,
.floting-enq-btn a {
    color: #fff;
}

/* Inner Banner */
.inner-banner {
    background-image: url('../images/inner-banner.jpg');
    background-color: var(--primary-red);
    padding: 100px 0;
    color: var(--white);
    text-align: center;
    background-size: cover;
    background-position: center;
    margin-top: 90px;
}

.inner-banner h1 {
    color: var(--white);
    font-size: 3rem;
    font-weight: 700;
    margin: 0;
}

@media (max-width: 767px) {
    .inner-banner {
        padding: 60px 0;
    }

    .inner-banner h1 {
        font-size: 2rem;
    }
}

/* WhatsApp Button Style */
.whatsapp-btn {
    background-color: #25D366;
    color: #fff !important;
    padding: 12px 25px;
    border-radius: 5px;
    font-size: 18px;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    text-decoration: none;
    transition: all 0.3s ease;
    border: none;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
}

.whatsapp-btn:hover {
    background-color: #128C7E;
    transform: translateY(-2px);
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.2);
    text-decoration: none;
}

.whatsapp-btn i {
    margin-right: 10px;
    font-size: 22px;
}

.whatsapp-contact {
    text-align: center;
    padding: 20px;
    background: #fdfdfd;
    border: 1px solid #eee;
    border-radius: 10px;
}

/* Floating WhatsApp Button */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 9999;
}

.whatsapp-float .whatsapp-btn {
    border-radius: 50px;
    padding: 15px 20px;
}

.whatsapp-float .whatsapp-btn span {
    display: inline-block;
    margin-left: 10px;
}

@media (max-width: 767px) {
    .whatsapp-float {
        bottom: 20px;
        right: 20px;
    }

    .whatsapp-float .whatsapp-btn span {
        display: none;
    }
}

/* =======================================================================================================
Products Page CSS
======================================================================================================= */
.inner-slider-section {
    position: relative;
}

.inner-slider-section img {
    height: calc(100vh - 55px);
    object-fit: cover;
    width: 100%;
}

.inner-slider-section .ban-text {
    position: absolute;
    top: 50%;
    width: 100%;
    text-align: center;
    color: #fff;
    padding-top: 65px;
    transform: translateY(-50%);
}

.inner-slider-section .ban-text .main-title {
    color: #ffffff;
    background: rgba(206, 18, 18, 0.7);
    display: inline-block;
    padding: 5px 30px;
}

.products-menu-section {
    background: #f4f5f7;
    background-image: linear-gradient(#ffffff, #d2d2d2);
    padding: 5px 0;
}

.products-menu-section .row.flex-center {
    min-height: 45px;
}

.products-menu-section .dropdown-toggle {
    background: transparent;
    border: 1.5px solid #a10e0e;
    width: 200px;
    color: #a10e0e;
    text-align: left;
    padding: 10px 10px;
    float: right;
    text-transform: uppercase;
    font-family: 'Poppins', sans-serif;
    font-weight: 500;
}

.products-menu-section .product-list {
    list-style: none;
    margin: 0;
    padding: 0;
}

.products-menu-section .product-list li {
    display: inline-block;
    padding: 0 20px;
    color: #a10e0e;
    text-transform: uppercase;
    font-family: 'Poppins', sans-serif;
    font-weight: 500;
    position: relative;
}

.products-menu-section .product-list li a {
    color: #a10e0e;
}

.products-menu-section .product-list li a:hover {
    color: #ce1212;
}

.products-menu-section .product-list li:before {
    background: url(../images/right-arrow.png) no-repeat;
    background-position: center center;
    background-size: 50%;
    height: 20px;
    width: 10px;
    position: absolute;
    content: "";
    left: -5px;
}

.products-menu-section .product-list li:first-child {
    padding-left: 0;
}

.products-menu-section .product-list li:first-child:before {
    display: none;
}

.products-menu-section .dropdown-toggle::after {
    position: absolute;
    right: 10px;
    top: 20px;
}

.dropdown-menu {
    padding: 0;
    border-radius: 0;
    width: 200px;
    position: absolute;
    transform: translate3d(150px, 30px, 0px);
}

.category-list li {
    width: 100%;
}

.category-list li a {
    color: #fff;
    padding: 4px 10px;
    background: #a10e0e;
    width: 100%;
    float: left;
}

.category-list li a.active,
.category-list li a:hover,
.category-list li a:focus {
    color: #ce1212;
    background: #fff;
}

.product-list-section {
    padding: 50px 0;
}

.product-list-section .product-block {
    border: 1px solid #f4f5f7;
    margin-bottom: 30px;
    text-align: center;
    float: left;
    width: 100%;
    transition: all 0.2s;
    position: relative;
}

/*
.product-list-section .product-block:hover {
    border: 1px solid #ce1212;
}*/
.product-list-section .product-block:after {
    position: absolute;
    content: "";
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    border: 1px solid #efefef;
    transition: all 0.2s;
}

.product-list-section .product-block:hover:after {
    border: 8px solid var(--primary-red);
}

.product-list-section .row.flex-stretch .grey-border {
    display: flex;
    align-items: center;
}


.product-list-section .product-block .sub-title {
    font-size: 16px;
    color: var(--text-color);
    background: var(--bg-light);
    padding: 15px 20px;
    text-align: center;
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    transition: var(--transition);
}

.product-list-section .product-block:hover .sub-title {
    color: var(--white);
    background: var(--primary-red);
}

.product-list-section .toolbar {
    display: inline-block;
    margin-right: 2px;
}

.product-list-section #cat_btn {
    margin-bottom: 20px;
}

.product-list-section .btn:focus {
    outline: 0;
    box-shadow: none;
    background: #ce1212;
    color: #fff;
}

#portfolio {
    margin: 1rem 0;
    -webkit-column-count: 3;
    -moz-column-count: 3;
    column-count: 3;
    -webkit-column-gap: 1rem;
    -moz-column-gap: 1rem;
    column-gap: 1rem;
    -webkit-column-width: 33.33333333333333%;
    -moz-column-width: 33.33333333333333%;
    column-width: 33.33333333333333%;
}

#portfolio .tile {
    -webkit-transform: scale(0);
    transform: scale(0);
    -webkit-transition: all 350ms ease;
    transition: all 350ms ease;
}


#portfolio .scale-anm {
    transform: scale(1);
}

#portfolio .tile img {
    max-width: 100%;
    width: 100%;
    height: auto;
    margin-bottom: 1rem;
}

#portfolio .btn {
    font-family: Lato;
    font-size: 1rem;
    font-weight: normal;
    text-decoration: none;
    cursor: pointer;
    display: inline-block;
    line-height: normal;
    padding: .5rem 1rem;
    margin: 0;
    height: auto;
    border: 1px solid;
    vertical-align: middle;
    -webkit-appearance: none;
    appearance: none;
    color: #555;
    background-color: rgba(0, 0, 0, 0);
}

#portfolio .btn:hover {
    text-decoration: none;
}

#portfolio .btn:focus {
    outline: none;
    border-color: var(--darken-2);
    box-shadow: 0 0 0 3px var(--darken-3);
}

#portfolio ::-moz-focus-inner {
    border: 0;
    padding: 0;
}

/* =======================================================================================================
Products Detail Page CSS
======================================================================================================= */
/*.product-img-block {
    top: 50%;
    transform: translateY(-50%);
    position: absolute;
    width: 90%;
    left: 5%;
}*/
.product-detail-block,
.product-detail-block p {
    font-family: 'Poppins', sans-serif;
}

.product-detail-block .main-title {
    text-transform: uppercase;
    font-size: 20px;
    border-bottom: 1px solid #e2e2e2;
    margin-bottom: 20px;
    padding-bottom: 10px;
    font-family: 'Poppins', sans-serif;
    position: relative;
}

.product-detail-block .main-title span {
    max-width: 500px;
    display: inline-block;
    color: #2a2a2a;
    font-weight: 500;
    font-size: 18px;
}


.product-detail-block .main-title i {
    color: #ce1212;
    cursor: pointer;
    font-size: 20px;
    position: absolute;
    right: 0;
}

i.fa.fa-share-alt {
    margin-left: 10px;
}

.product-thumb-block {
    border-top: 1px solid #e2e2e2;
    margin-top: 0px;
    padding-top: 20px;
    float: left;
    width: 100%;
}

.thumb-img {
    width: calc(25% - 10px);
    float: left;
    border: 2px solid #e2e2e2;
    margin: 5px;
    overflow: hidden;
    padding: 0;
    /*padding: 15px;*/
}

.thumb-img a img {
    transition: all 0.5s;
    transform: scale(1.2);
    height: 120px;
}

.product-img-block img {
    transition: all 0.5s;
    /*transform: scale(1.2);*/
}

.product-img-block img:hover {
    transform: scale(1.1);
}

.thumb-img a img:hover {
    transform: scale(2.5);
}

.tab-section {
    margin-top: 50px;
}

.tab-section .nav.nav-tabs li a {
    max-width: 500px;
    display: inline-block;
    color: #2a2a2a;
    font-weight: 500;
    font-size: 15px;
    font-family: 'Poppins', sans-serif;
    padding: 10px 30px;
    text-transform: uppercase;
    border: 1px solid #dee2e6;
    border-radius: 10px 10px 0 0;
    background-image: linear-gradient(#ffffff, #d2d2d2);
    margin-right: 2px;
}

.tab-section .nav-tabs {
    border-bottom: 0;
}

.tab-section .nav.nav-tabs li a.active {
    color: #fcb026;
    background: transparent;
    border-bottom: 2px solid #fff;
}

.tab-section .tab-content {
    border: 1px solid #dee2e6;
    margin-top: -2px;
    padding: 20px;
    height: calc(100% - 43px);
    overflow: auto;
}

.tab-section .tab-content .tab-content-list {
    line-height: 30px;
}

.product-icon-block {
    background: #fff;
    float: left;
    width: 100%;
    padding: 20px 0 0;
    margin-top: 43px;
}

.product-icon-block .icon-img {
    float: left;
    width: 50%;
    text-align: center;
    margin-bottom: 40px;
}

.modal-title {
    color: #2a2a2a;
    font-weight: 500;
    font-size: 18px;
    text-transform: uppercase;
}

/*.product-icon-block .icon-img.b-right {
    border-right: 1px solid #d7d7d7;
}*/

.current-opening-section {
    padding: 50px 0;
    background: #f5f5f5;
}

.current-opening-section .main-title {
    font-size: 2vw;
    text-align: center;
    margin-bottom: 20px;
}

.current-opening-section .table {
    border: 1px solid #dee2e6;
}

.current-opening-section .table td,
.current-opening-section .table th {
    border: 1px solid #dee2e6;
}

.jd_div {
    position: relative;
    float: right;
}

.jd_div .jd_info {
    position: absolute;
    top: 0;
    right: -600px;
    width: 600px;
    height: 50vh;
    overflow-y: auto;
    overflow-x: hidden;
    background-color: #626262;
    transition: all 0.6s linear;
    padding: 0 0 10px 0;
    border-radius: 5px;
    display: none;
    z-index: 50;
    color: #dadada;
    padding: 20px;
    font-size: 12px;
}

.jd_div:hover .jd_info {
    display: block;
}

.career_form_inner_div {
    width: 50%;
    float: left;
    padding: 10px;
}

.apply-btn {
    background: #ce1212;
    padding: 6px 20px;
    text-transform: uppercase;
    color: #232323;
    font-size: 14px;
}

.modal-title {
    font-size: 1.6vw;
    font-family: "Asap";
    color: #333333;
}

.career_form_inner_div .form-control {
    border-radius: 0;
}

.career_form_inner_div input[type="submit"] {
    width: 100%;
    height: 38px;
    background: #ce1212;
    border: 0;
}

/*=======================================================
========================================================*/
.testimonial-section {
    padding: 50px 0 0;
    /*background: #ce1212;*/
    background-size: cover;
    background-attachment: fixed;
}

.testimonial-section .main-title {
    font-size: 2vw;
    /*color: #fff;*/
    text-align: center;
    margin-bottom: 20px;
}

.slick-initialized .slick-slide {
    outline: none;
    transition: all 0.2s;
}

.slick-initialized .slick-slide .slick-active:nth-child(2) {
    transform: scale(1.2);
}

.testimonial-block {
    background: #fff;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.5);
    padding: 15px;
    text-align: center;
    border-radius: 20px;
    margin: 50px 20px;
}

.testimonial-block img {
    border-radius: 50%;
    max-width: 100px;
    transform: translateY(-50%);
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.5);
    margin: 0 auto;
}



/* =======================================================================================================
Contact Page CSS
======================================================================================================= */

label.prod-label {
    color: #666;
    font-size: 15px;
    font-family: 'Lato', sans-serif;
    font-weight: normal;
    overflow-x: hidden;
}

.multiselect {
    width: 100%;
}

.selectBox {
    position: relative;
}

.selectBox select {
    width: 100%;
    font-weight: bold;
}

.overSelect {
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
}

#checkboxes {
    display: none;
    border: 1px #dadada solid;
}

#footercheckboxes {
    display: none;
    border: 1px #dadada solid;
}

#checkboxes label {
    display: block;
}

#footercheckboxes label {
    display: block;
}

#checkboxes label:hover {
    background-color: #1e90ff;
}

.contact_us_form {
    padding: 50px 0;
    position: relative;
    background-color: #fff;
}

.contact_us_form .sub-title {
    color: #ce1212;
    margin-bottom: 20px;
    border-bottom: 2px solid #ce1212;
    padding-bottom: 10px;
}

form.contact-us {
    display: flex;
    flex-wrap: wrap;
}

form.contact-us input {
    width: 40%;
    display: block;
    flex-grow: 1;
    margin: 10px;
}

form.contact-us textarea {
    margin: 10px;
    width: 100%;
    padding: 10px;
}

.contactus_form_col {
    width: 49%;
    margin: 5px 3px;
    float: left;
}

.contactus_form_col.message_col {
    width: 100%;
}

.contactus_form_col.message_col input {
    padding: 10px;
}

.contactus_form input#message {
    border-radius: 0;
    box-shadow: none;
    outline: none;
    background-color: #fbfbfb;
    border: 1px solid #dfdfdf;
    color: #a9a9a9;
    transition: all 0.4s linear;
    width: 100%;
}

.contactus_form button#contact_btn {
    display: inline-block;
    width: auto;
    background-color: var(--primary-red);
    padding: 12px 40px;
    line-height: normal;
    height: auto;
    border-radius: 4px;
    text-transform: uppercase;
    font-size: 16px;
    font-weight: 600;
    color: var(--white);
    border: 0;
    transition: var(--transition);
    cursor: pointer;
    box-shadow: var(--shadow-sm);
}

.contactus_form button#contact_btn:hover {
    background-color: var(--primary-red-hover);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}





.map_div .address_div {
    padding: 0px 20px;
}

.address_div p {
    font-family: 'Roboto Condensed', sans-serif;
    font-size: 15px;
    font-weight: 500;
    color: #626262;
    line-height: 22px;
    margin-bottom: 15px;
}

.map_footer {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    padding: 30px 0;
}

.map_footer img.img-responsive {
    margin-bottom: 25px;
}

.map_footer h4 {
    display: block;
    width: 100%;
    text-align: center;
    position: relative;
    text-transform: uppercase;
    margin: 0;
    line-height: 50px;
    color: #145181;
    font-weight: bold;
    cursor: pointer;
}

.map_footer h4:before {
    content: '';
    width: 100%;
    height: 2px;
    background-color: #145181;
    position: absolute;
    left: 0;
    top: -2px;
}

.map_footer h4>i {
    margin: 0 0 0 10px;
}

.cfd_cu p {
    font-size: 18px;
    line-height: 36px;
    margin: 0 10px;
}

.cfd_cu input.form-control,
.cfd_cu select.form-control {
    border-radius: 0;
    box-shadow: none;
    outline: none;
    height: 44px !important;
    background-color: #fbfbfb;
    border: 1px solid #dfdfdf;
    color: #a9a9a9;
    transition: all 0.4s linear;
}

.cfd_cu form.contact-us textarea {
    border: 1px solid #dfdfdf;
    background-color: #fbfbfb;
    color: #a9a9a9 !important;
    transition: all 0.4s linear;
}

form.contact-us textarea:focus,
form.contact-us input:focus {
    box-shadow: none;
    border: 1px solid #145181;
    outline: none;
}

form.contact-us button.submit_btn {
    height: auto;
    max-width: 200px;
    text-align: center;
    background-color: #145181;
    color: #fff;
    transition: all 0.9s linear;
    border: 1px solid currentColor;
    position: relative;
    font-size: 18px;
    text-transform: uppercase;
    line-height: 54px;
    border-radius: 0;
    margin: 10px;
}

form.contact-us button.submit_btn:focus {
    outline: 1px solid #145181;
    outline-offset: 2px;
    box-shadow: inset 0px 0px 3px 2px #00000070;
}

form.contact-us button.submit_btn i {
    font-size: 18px;
    margin-left: 11px;
    line-height: 54px;
}

form.contact-us button.submit_btn:hover {
    background-color: transparent;
    color: currentColor;
}

form#gst_form label.error {
    color: red;
}

.add_contact ul {
    list-style-type: none;
    padding: 0 0 0px 30px;
}

.add_contact ul li.contact_li {
    position: relative;
    font-size: 15px;
    color: #145181;
    line-height: 22px;
    font-family: 'Roboto Condensed', sans-serif;
    font-weight: 600;
    margin-bottom: 2px;
}

.add_contact ul li.contact_li i:before {
    content: "\f2a0";
    position: absolute;
    top: 0;
    left: -30px;
    line-height: 22px;
    font-size: 17px;
    transform: rotate(-45deg);
    color: #ff0033;
}

.branch_add_div:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background-color: #ff0033;
}

ul.flex_ul {
    display: flex;
    flex-wrap: wrap;
}

ul.flex_ul li.contact_li {
    width: 50%;
}

.add_contact {
    display: flex;
    min-height: 100px;
    align-items: center;
    justify-content: stretch;
}

.add_inner {
    min-height: 120px;
}

iframe#gmap {
    border: 4px solid #145181 !important;
}

.address_div p a {
    color: #626262;
    text-decoration: none;
    transition: all 0.6s ease-out;
}

.address_div p a:hover {
    color: #145181;
}

/*new css*/
.call-modal {
    background: #ce1212;
    padding: 10px;
}

.call-modal h4 {
    text-align: center;
    text-transform: capitalize;
}

.call-number {
    padding: 10px;
}

.call-number a {
    color: #000;
}

.call-number .fas {
    margin-right: 10px;
}



@media (max-width:1024px) {
    .product-detail-block .main-title i {
        margin-left: 10%;
    }

    i.fa.fa-share-alt {
        margin-left: 5px;
    }
}

@media (max-width:991px) {
    .copyright-section .container {
        flex-direction: column;
    }

    .copyright-section .container p {
        text-align: center !important;
    }

    .copyright-section .container p.text-center {
        margin: 5px 0;
    }
}

@media (max-width:991px) {
    .inner-slider-section img {
        height: auto;
    }

    .contactus_form_col {
        width: 48%;
    }

    .thumb-img {
        width: calc(25% - 4px);
        margin: 2px;
        padding: 10px;
    }

    .tab-section .tab-content {
        height: auto;
    }

    .product-detail-block .main-title span {
        font-size: 15px;
    }

    .product-detail-block .main-title i {
        font-size: 15px;
        top: 5px;
    }
}

@media (max-width:767px) {
    .header-section {
        position: relative;
        float: left;
    }

    .inner-slider-section img {
        height: auto;
    }

    .menu .navblock {
        right: -100%;
        width: 100%;
    }

    .main-title {
        font-size: 8vw;
        margin: 20px 0 10px;
    }

    .products-block img {
        height: auto;
        padding: 0;
    }

    .categories-section,
    .products-section {
        padding: 20px 20px;
    }

    .sub-title {
        font-size: 6vw;
    }

    .social-media {
        margin-bottom: 20px;
    }

    .footer-section .footer-nav {
        margin-bottom: 20px;
    }

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

    .float-left,
    .float-right {
        width: 100%;
    }

    .products-menu-section .dropdown {
        text-align: center;
    }

    .products-menu-section .dropdown-toggle {
        float: none;
        margin-top: 20px;
        position: relative;
    }

    .product-list-section .toolbar {
        margin-right: 0;
        width: 100%;
    }

    .product-list-section .toolbar .btn {
        width: 100%;
        margin-bottom: 3px;
        font-size: 16px;
    }

    .product-list-section .tab-section .nav.nav-tabs li {
        width: 100%;
        text-align: center;
    }

    .product-list-section .tab-section .nav.nav-tabs li a {
        width: 100%;
        border-radius: 0;
    }

    .tab-section .tab-content {
        height: auto;
    }

    .thumb-img {
        width: calc(50% - 10px);
        margin: 5px;
    }

    .sidebar {
        display: none;
    }

    .current-opening-section {
        width: 100%;
        overflow: auto;
    }

    .apply-btn {
        padding: 6px 10px;
        width: 120px;
        float: left;
        text-align: center;
    }

    .contactus_form_col {
        width: 100%;
        margin: 5px 0;
    }

    #contact_us_form {
        margin-bottom: 30px;
    }

    .map_div .address_div {
        padding: 20px;
        background: #f5f5f5;
    }

    .product-detail-block .main-title i {
        font-size: 15px;
        top: 20px;
        left: 20px;
    }
}

@media (max-width: 425px) {
    .product-detail-block .main-title i {
        right: 30px;
    }
}

/* Continuous Slider Animation */
.slider-container {
    overflow: hidden;
    width: 100%;
    position: relative;
    white-space: nowrap;
    /* Ensure slides stay in one line */
    perspective: 1000px;
    padding: 20px 0;
    /* Add padding to avoid cutting off 3D elements */
}

.slider-track {
    display: flex;
    width: 100%;
    /* Will need to be wide enough. Flex handles this naturally but we want smooth wrapping */
    /* Implementation detail adjustment: */
    /* Since we have duplicate slides, we run the animation on the track */
    /* Let's use a percentage width if possible or just rely on content */
    width: 200%;
    /* 4 original + 4 duplicates = 2 sets. Track width should accommodate. */
    animation: scroll 20s linear infinite;
}

.slide {
    width: 12.5%;
    /* 100% / 8 images (4 original + 4 duplicate) = 12.5% each */
    flex-shrink: 0;
    transform: rotateY(25deg);
    transform-style: preserve-3d;
    transition: transform 0.5s;
}

.slide img {
    width: 100%;
    display: block;
    height: auto;
    object-fit: cover;
    box-shadow: 5px 5px 15px rgba(0, 0, 0, 0.3);
    border-radius: 10px;
}

@keyframes scroll {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
        /* Move half the track length (one full set of images) */
    }
}

/* Adjust for mobile if needed */
@media (max-width: 767px) {
    .slider-track {
        animation-duration: 10s;
        /* Faster or slower depending on preference? usually same speed looks faster on small screens due to pixels. */
    }
}