.railway-section {
    padding: 20px 0;
    overflow: hidden;
}

.section-title h2 {
    font-size: 42px;
    font-weight: 700;
    color: #1c2733;
    margin-bottom: 0;
}

/*==============================
        Railway Track
===============================*/

.rail-track {
    position: relative;
    padding-left: 90px;
}

/* Left Rail */
.rail-track::before {
    content: "";
    position: absolute;
    left: 28px;
    top: 0;
    bottom: 0;
    width: 8px;
    background: #6f7b86;
    border-radius: 20px;
    box-shadow:
        18px 0 #6f7b86;
}

/* Sleepers */
.rail-track::after {
    content: "";
    position: absolute;
    left: 22px;
    top: 0;
    width: 30px;
    height: 100%;
    background:
        repeating-linear-gradient(to bottom,
        transparent 0px,
        transparent 22px,
        #0161f3 22px,
        #0161f3 30px);
}

/*==============================
        Railway Item
===============================*/

.rail-item {
    position: relative;
    display: flex;
    align-items: center;
    text-decoration: none;
    margin-bottom: 15px;
}

.rail-item:last-child {
    margin-bottom: 0;
}

/* Number Circle */

.rail-no {

    position: absolute;
    left: -78px;

    width: 35px;
    height: 35px;

    border-radius: 50%;

    background: linear-gradient(135deg, #0161f3, #0161f3);

    color: #fff;

    display: flex;
    justify-content: center;
    align-items: center;

    font-size: 15px;
    font-weight: 700;

    z-index: 5;

    border: 4px solid #fff;

    box-shadow: 0 8px 20px rgba(1, 124, 199, .25);

}

/*==============================
        Card
===============================*/

.rail-card {

    width: 100%;

    background: #fff;

    border-radius: 14px;

    padding: 10px 25px;

    box-shadow: 0 12px 30px rgba(0, 0, 0, .08);

    transition: .35s;

    border-left: 5px solid #017cc7;

}

.rail-card h5 {

    margin: 0;

    color: #1b2733;

    font-size: 12px;

    font-weight: 700;

}

.rail-card p {

    margin-top: 8px;

    margin-bottom: 0;

    color: #777;

    font-size: 14px;

}

/* Hover */

.rail-item:hover .rail-card {

    transform: translateX(12px);

    background: linear-gradient(135deg, #017cc7, #01588e);

    border-left-color: #ffb400;

}

.rail-item:hover h5,

.rail-item:hover p {

    color: #fff;

}

.rail-item:hover .rail-no {

    background: linear-gradient(135deg, #0161f3, #0161f3);

    color: #fff;

    transform: scale(1.12);

}

/*==============================
      Product Image
===============================*/

.product-box {

    position: relative;

    background: #fff;

    border-radius: 20px;

    overflow: hidden;

    box-shadow: 0 20px 60px rgba(0, 0, 0, .12);

}

.product-box img {

    width: 100%;

    display: block;

    transition: .5s;

}

.product-box:hover img {

    transform: scale(1.06);

}

.product-caption {

    position: absolute;

    left: 0;
    right: 0;
    bottom: 0;

    background: linear-gradient(transparent, rgba(0, 0, 0, .88));

    color: #fff;

    padding: 40px 25px 25px;

}

.product-caption h4 {

    font-size: 28px;

    margin-bottom: 5px;

    font-weight: 700;

}

.product-caption p {

    margin: 0;

    opacity: .9;

}

/*==============================
     Responsive
===============================*/

@media(max-width:991px) {

    .product-box {

        margin-top: 40px;

    }

}

@media(max-width:768px) {

    .section-title h2 {

        font-size: 30px;

    }

    .rail-track {

        padding-left: 70px;

    }

    .rail-track::before {

        left: 22px;

        box-shadow: 14px 0 #6f7b86;

    }

    .rail-track::after {

        left: 17px;

    }

    .rail-no {

        left: -60px;

        width: 38px;

        height: 38px;

        font-size: 13px;

    }

    .rail-card {

        padding: 15px 18px;

    }

    .rail-card h5 {

        font-size: 16px;

    }

    .product-caption h4 {

        font-size: 22px;

    }

}

/*==========================
      Industrial Heading
===========================*/



.toc-heading h2 {
    display: inline-flex;
    align-items: center;
    gap: 20px;
    margin: 0;
    padding: 18px 40px;
    position: relative;

    font-size: 36px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 3px;

    color: #fff;

    background: linear-gradient(135deg, #017cc7, #014d7d);

    border: 2px solid #ffb400;

    border-radius: 60px;

    box-shadow:
        0 12px 35px rgba(0, 0, 0, .18),
        inset 0 1px 0 rgba(255, 255, 255, .25);
}

.toc-heading h2 span {
    position: relative;
    font-size: 15px
}

.toc-heading h2 i {
    color: #ffb400;
    font-size: 24px;
    transition: .5s;
}

.toc-heading:hover h2 i {

    transform: rotate(180deg);

}

.toc-line {
    position: relative;
    height: 4px;
    width: 100%;
    margin: 18px auto;

    background:
        repeating-linear-gradient(90deg,
        #6f6f6f 0px,
        #6f6f6f 60px,
        #c9c9c9 60px,
        #c9c9c9 75px);

    border-radius: 50px;
}

.toc-line:before,
.toc-line:after {

    content: "";

    position: absolute;

    width: 16px;
    height: 16px;

    border-radius: 50%;

    background: #ffb400;

    border: 4px solid #444;

    top: 50%;

    transform: translateY(-50%);

}

.toc-line:before {

    left: 0;

}

.toc-line:after {

    right: 0;

}

/* Responsive */

@media(max-width:768px) {

    .toc-heading h2 {

        font-size: 22px;

        padding: 14px 20px;

        letter-spacing: 1px;

        gap: 10px;

    }

    .toc-heading h2 i {

        font-size: 18px;

    }

}

/*==========================
      Industrial Heading
===========================*/



.toc-heading h2 {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    margin: 0;
    padding: 7px 40px;
    position: relative;

    font-size: 36px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 3px;

    color: #fff;

    background: linear-gradient(135deg, #1e52a3, #1e52a3);

    border: 2px solid #fff;

    border-radius: 60px;

    box-shadow:
        0 12px 35px rgba(0, 0, 0, .18),
        inset 0 1px 0 rgba(255, 255, 255, .20);
}

.toc-heading h2 i {
    color: #fff;
    font-size: 22px;
    transition: .6s;
}

.toc-heading:hover h2 i {
    transform: rotate(180deg);
}

.toc-line {
    position: relative;
    width: 100%;
    height: 4px;
    margin: 18px auto;
    background: repeating-linear-gradient(90deg,
        #666 0,
        #666 50px,
        #0056f1 50px,
        #0056f1 65px);
    border-radius: 30px;
}

.toc-line:before,
.toc-line:after {
    content: "";
    position: absolute;
    top: 50%;
    width: 16px;
    height: 16px;
    background: #0056f1;
    border: 3px solid #555;
    border-radius: 50%;
    transform: translateY(-50%);
}

.toc-line:before {
    left: 0;
}

.toc-line:after {
    right: 0;
}

@media(max-width:767px) {

    .toc-heading h2 {
        font-size: 22px;
        padding: 14px 22px;
        letter-spacing: 1px;
        gap: 10px;
    }

    .toc-heading h2 i {
        font-size: 18px;
    }

}

/*====================================
      Glass Morphism Blue Glow
====================================*/

.keywords-heading {
    position: relative;
    padding: 20px 45px;
    margin: 30px 0;

    background: rgba(255, 255, 255, .72);
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);

    border: 1px solid rgba(255, 255, 255, .6);
    border-radius: 20px;

    overflow: hidden;

    box-shadow:
        0 12px 35px rgba(1, 124, 199, .12),
        0 30px 60px rgba(0, 0, 0, .08),
        inset 0 1px 0 rgba(255, 255, 255, .9);

    transition: .45s;
}

/* Top Glow */

.keywords-heading::before {

    content: "";

    position: absolute;

    left: 0;
    top: 0;

    width: 100%;
    height: 5px;

    background: linear-gradient(90deg,
        #017cc7,
        #0161f3,
        #017cc7);

}

/* Decorative Glow */

.keywords-heading::after {

    content: "";

    position: absolute;

    width: 280px;
    height: 280px;

    border-radius: 50%;

    background: radial-gradient(circle,
        rgba(1, 124, 199, .20) 0%,
        transparent 70%);

    right: -120px;
    top: -120px;

}

/* Inner Border */

.keywords-heading {
    outline: 1px solid rgba(255, 255, 255, .35);
    outline-offset: -12px;
}

/* Hover */

.keywords-heading:hover {

    transform: translateY(-8px);

    box-shadow:
        0 20px 45px rgba(1, 124, 199, .22),
        0 35px 80px rgba(0, 0, 0, .12);

}

/* Heading */

.keywords-heading h1 {

    position: relative;

    margin: 0;

    font-size: 21px;

    line-height: 1.45;

    font-weight: 700;

    color: #1b2733;

    z-index: 2;

}

/* Responsive */

@media(max-width:992px) {

    .keywords-heading {

        padding: 30px;

    }

    .keywords-heading h1 {

        font-size: 30px;

    }

}

@media(max-width:576px) {

    .keywords-heading {

        padding: 25px 20px;

        border-radius: 15px;

    }

    .keywords-heading h1 {

        font-size: 22px;

        line-height: 1.6;

    }

}

/*=========================================
      Premium Industrial Table
=========================================*/

.heading-table {
    display: inline-block;
    margin-bottom: 20px;
}

.heading-table h3 {
    position: relative;
    margin: 0;
    padding: 5px 28px;
    font-size: 20px;
    font-weight: 700;
    color: #fff;
    background: linear-gradient(135deg, #0161f3, #01558b);
    border-radius: 12px 12px 0 0;
    letter-spacing: .5px;
    overflow: hidden;
}

.heading-table h3:before {
    content: "";
    position: absolute;
    top: 0;
    left: -100%;
    width: 40%;
    height: 100%;
    background: linear-gradient(120deg,
        transparent,
        rgba(255, 255, 255, .35),
        transparent);
    animation: shine 4s linear infinite;
}

@keyframes shine {

    0% {
        left: -100%;
    }

    100% {
        left: 160%;
    }

}


tbody tr td {
    color: #fff !important;
}

thead tr th {
    color: #fff !important;
}

/*==================================
      Premium Price Information
==================================*/

.latest-price {
    position: relative;
    background: #fff;
    padding: 40px;

    border-radius: 20px;

    border: 1px solid #e8eef5;

    box-shadow:
        0 15px 40px rgba(0, 0, 0, .08);

    overflow: hidden;

    transition: .4s;
}

.latest-price h1{
    font-size:17px;
    color:#000;
    line-height:20px;
}

/* Top Accent */

.latest-price:before {

    content: "";

    position: absolute;

    top: 0;
    left: 0;

    width: 100%;
    height: 6px;

    background: linear-gradient(90deg, #017cc7, #00b4ff, #ffb400, #017cc7);

}

/* Large Quote */

.latest-price:after {

    content: "❝";

    position: absolute;

    right: 20px;
    top: -25px;

    font-size: 140px;

    color: rgba(1, 124, 199, .08);

    font-family: Georgia;

}

/* Tag */

.price-tag {

    display: inline-block;

    padding: 8px 18px;

    background: #017cc7;

    color: #fff;

    font-size: 13px;

    border-radius: 50px;

    text-transform: uppercase;

    letter-spacing: 2px;

    margin-bottom: 18px;

    font-weight: 600;

}

/* Heading */

.latest-price h3 {

    margin: 0 0 18px;

    font-size: 28px;

    font-weight: 700;

    color: #1b2733;

}

/* Text */

.latest-price p {

    margin: 0;

    color: #555;

    font-size: 17px;

    line-height: 1.9;

}

/* Hover */

.latest-price:hover {

    transform: translateY(-8px);

    box-shadow:
        0 25px 60px rgba(1, 124, 199, .12);

}

/* Responsive */

@media(max-width:768px) {

    .latest-price {

        padding: 25px;

    }

    .latest-price h3 {

        font-size: 22px;

    }

    .latest-price p {

        font-size: 15px;

    }

    .latest-price:after {

        font-size: 90px;

    }

}

.inspection-logo-section {
    position: relative;
    overflow: hidden;
    background: #f7faff;
}

.inspection-mini-title {
    display: inline-block;
    margin-bottom: 8px;
    color: #0161f3;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 2px;
}

.inspection-logo-title {
    margin: 0 0 12px;
    color: #151b2d;
    font-size: 38px;
    font-weight: 800;
}

.inspection-logo-title span {
    color: #0161f3;
}

.inspection-logo-text {
    max-width: 680px;
    margin: auto;
    color: #697386;
    font-size: 15px;
    line-height: 1.7;
}


/* =========================================
   LOGO CAROUSEL
========================================= */

.inspection-logo-carousel {
    margin-top: 35px;
    padding: 5px 0 45px;
}

.inspection-logo-item {
    padding: 10px;
}


/* =========================================
   LOGO BOX
========================================= */

.inspection-logo-box {
    height: 150px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 25px 35px;
    background: #ffffff;
    border: 1px solid #e4eaf2;
    border-radius: 14px;
    box-shadow: 0 8px 30px rgba(15, 23, 42, 0.05);
    transition: all 0.35s ease;
}

.inspection-logo-box:hover {
    border-color: #0161f3;
    transform: translateY(-6px);
    box-shadow: 0 15px 35px rgba(1, 97, 243, 0.12);
}

.inspection-logo-box img {
    max-width: 100%;
    max-height: 75px;
    width: auto !important;
    object-fit: contain;
    filter: grayscale(100%);
    opacity: 0.75;
    transition: all 0.35s ease;
}

.inspection-logo-box:hover img {
    filter: grayscale(0%);
    opacity: 1;
}


/* =========================================
   NAVIGATION
========================================= */

.inspection-logo-carousel .owl-buttons {
    margin-top: 10px;
    text-align: center;
}

.inspection-logo-carousel .owl-prev,
.inspection-logo-carousel .owl-next {
    width: 40px;
    height: 40px;
    display: inline-flex !important;
    align-items: center;
    justify-content: center;
    margin: 0 5px !important;
    padding: 0 !important;
    color: #ffffff !important;
    font-size: 0 !important;
    background: #0161f3 !important;
    border-radius: 50%;
    opacity: 1 !important;
    transition: all 0.3s ease;
}

.inspection-logo-carousel .owl-prev:before {
    content: "\f104";
    font-family: FontAwesome;
    font-size: 15px;
}

.inspection-logo-carousel .owl-next:before {
    content: "\f105";
    font-family: FontAwesome;
    font-size: 15px;
}

.inspection-logo-carousel .owl-prev:hover,
.inspection-logo-carousel .owl-next:hover {
    background: #111827 !important;
}


/* =========================================
   DOTS
========================================= */

.inspection-logo-carousel .owl-page span {
    width: 8px !important;
    height: 8px !important;
    margin: 4px !important;
    background: #ccd5e2 !important;
}

.inspection-logo-carousel .owl-page.active span {
    width: 24px !important;
    background: #0161f3 !important;
    border-radius: 10px;
}


/* =========================================
   RESPONSIVE
========================================= */

@media (max-width: 991px) {

    .inspection-logo-title {
        font-size: 34px;
    }

    .inspection-logo-box {
        height: 140px;
    }
}

@media (max-width: 767px) {

    .inspection-logo-title {
        font-size: 30px;
    }

    .inspection-logo-text {
        font-size: 14px;
    }

    .inspection-logo-box {
        height: 135px;
        padding: 20px;
    }

    .inspection-logo-box img {
        max-height: 65px;
    }
}

@media (max-width: 575px) {

    .inspection-logo-title {
        font-size: 27px;
    }

    .inspection-logo-box {
        height: 125px;
    }
}

/* Owl Carousel Navigation Buttons */
.partners-slider .owl-nav .owl-prev,
.partners-slider .owl-nav .owl-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 45px;
    height: 45px;
    border-radius: 50% !important;
    background: #000 !important;
    color: #fff !important;
    border: none;
    display: flex !important;
    align-items: center;
    justify-content: center;
    font-size: 22px !important;
    cursor: pointer;
    transition: all 0.3s ease;
}

/* Previous Button */
.partners-slider .owl-nav .owl-prev {
    left: -25px;
}

/* Next Button */
.partners-slider .owl-nav .owl-next {
    right: -25px;
}

/* Hover */
.partners-slider .owl-nav .owl-prev:hover,
.partners-slider .owl-nav .owl-next:hover {
    background: #007bff !important;
    color: #fff !important;
}

/* Arrow icon */
.partners-slider .owl-nav .owl-prev span,
.partners-slider .owl-nav .owl-next span {
    line-height: 1;
}

/* Mobile */
@media (max-width: 767px) {
    .partners-slider .owl-nav .owl-prev {
        left: -10px;
    }

    .partners-slider .owl-nav .owl-next {
        right: -10px;
    }

    .partners-slider .owl-nav .owl-prev,
    .partners-slider .owl-nav .owl-next {
        width: 35px;
        height: 35px;
        font-size: 18px !important;
    }
}
.inspection-logo-section{
    background-color: black;
}

/* deign-1 */

.client-card{
    background: #fff;
    border-radius: 15px;
    padding: 5px;
    margin: 10px;
    height: 120px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: .35s;
}

.navbar-brand.logo {
    display: inline-flex;
    align-items: center;
    padding: 7px 15px;
    border: 1px solid rgba(255, 255, 255, 0.14);
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.06);
    backdrop-filter: blur(8px);
    box-shadow:
        inset 0 1px 0 rgba(255,255,255,0.08),
        0 5px 20px rgba(0,0,0,0.25);
    transition: 0.3s ease;
}

.navbar-brand.logo img {
    max-height: 56px;
    width: auto;
}

.navbar-brand.logo:hover {
    border-color: rgba(212, 175, 55, 0.5);
    background: rgba(255, 255, 255, 0.09);
    transform: translateY(-1px);
} 

/* deign-2 */

/* .navbar-brand.logo {
    position: relative;
    padding: 8px 18px;
}

.navbar-brand.logo::before,
.navbar-brand.logo::after {
    content: "";
    position: absolute;
    width: 14px;
    height: 14px;
}

.navbar-brand.logo::before {
    top: 0;
    left: 0;
    border-top: 2px solid #d4af37;
    border-left: 2px solid #d4af37;
}

.navbar-brand.logo::after {
    right: 0;
    bottom: 0;
    border-right: 2px solid #c51f32;
    border-bottom: 2px solid #c51f32;
}

.navbar-brand.logo img {
    max-height: 57px;
} */

