* {
    margin: 0;
    padding: 0;
    text-decoration: none;
    list-style-type: none
}

:root {
    --main-color: #ED1C24;
    --bg-color: #202020;
}

html, body {
    overflow-x: hidden;
  }
  

.gallery-wrapper {
    background: linear-gradient(to bottom, #f8f9fa, #e9ecef);
    padding: 60px 0 80px;
    min-height: 100vh;
}

.gallery-header {
    text-align: center;
    margin-bottom: 50px;
}

.gallery-header h1 {
    color: #2c3e50;
    letter-spacing: 2px;
}

.gallery-header p {
    color: #7f8c8d;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
}

.gallery-card {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
}

.gallery-card:hover {
    transform: translateY(-15px);
    box-shadow: 0 20px 50px rgba(0,0,0,0.2);
}

.card-image {
    position: relative;
    height: 350px;
    overflow: hidden;
    background: #f0f0f0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.card-image img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    transition: transform 0.5s ease;
}

.card-text{
    font-family: Verdana, Geneva, Tahoma, sans-serif;

}

.gallery-card:hover .card-image img {
    transform: scale(1.1);
}

.image-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(0,0,0,0), rgba(0,0,0,0.6));
    opacity: 0;
    transition: opacity 0.4s ease;
}

.gallery-card:hover .image-overlay {
    opacity: 1;
}

.card-content {
    padding: 25px;
    text-align: center;
    background: white;
}

.card-title {
     color: #2c3e50;
    
}

/* Custom card style – no conflict with default Bootstrap card */
.custom-card {
  border: 1px solid #e0e0e0;
  transition: all 0.3s ease;
  background-color: #fff; /* optional - keeps consistent look */
}

/* Hover effect for custom-card */
.custom-card:hover {
  transform: scale(1.03);
  border-color: #c00000;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
}

/* Title inside custom-card */
.custom-card .card-title {
  color: #c00000;
  font-weight: 600;
}



.power-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 15px;
            margin-top: 20px;
        }
        .power-card {
            background: linear-gradient(135deg, #fff5f5 0%, #ffffff 100%);
            border: 2px solid #ED1C24;
            border-radius: 10px;
            padding: 15px;
            text-align: center;
            transition: all 0.3s ease;
        }
        .power-card:hover {
            background: linear-gradient(135deg, #ED1C24 0%, #ff4757 100%);
            color: #fff;
            transform: scale(1.05);
        }
        .power-label {
            font-size: 16px;
            color: #666;
            margin-bottom: 5px;
            font-family: Verdana, sans-serif;
        }
        .power-card:hover .power-label {
            color: #fff;
        }
        .power-value {
            font-size: 18px;
            font-weight: bold;
            color: #ED1C24;
            font-family: Verdana, sans-serif;
        }
        .power-card:hover .power-value {
            color: #fff;
        }

.price-button {
    background: #ED1C24;
    color: white;
    border: none;
    padding: 14px 35px;
    font-size: 16px;
    font-family: Verdana, Geneva, Tahoma, sans-serif;
    font-weight: 600;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s ease;
    letter-spacing: 1px;
    box-shadow: 0 5px 15px rgba(237, 28, 36, 0.4);
}

.price-button:hover {
    transform: scale(1.05);
    box-shadow: 0 8px 25px rgba(237, 28, 36, 0.6);
    background: #c21820;
}

@media (max-width: 768px) {
    .gallery-grid {
        grid-template-columns: 1fr;
    }
    .gallery-header h1 {
        font-size: 32px;
    }
    .card-image {
        height: 280px;
    }
}

/* Keep long footer heading on one line for md+ screens, allow wrap on small screens */
@media (min-width: 893px) {
    .footer-heading-nowrap { white-space: nowrap; }
}
@media (max-width: 892px) {
    .footer-heading-nowrap { white-space: normal; }
}


header.sticky-top {
    transition: background-color 0.3s ease, box-shadow 0.3s ease;
    z-index: 1020;
    background: #ffffff;
}

header.scrolled {
    backdrop-filter: blur(10px);
    background-color: #131313bb !important;
    box-shadow: 0 2px 8px rgb(0 0 0 / .1)
}

header {
    background-color: #fff;
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgb(255 255 255 / .2);
    box-shadow: 0 4px 30px rgb(0 0 0 / .1);
    font-family: Verdana, Geneva, Tahoma, sans-serif
}

header nav {
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    justify-content: space-between
}

.logo {
    flex: 2;
    display: flex;
    align-items: center
}

.logo a {
    text-decoration: none;
    font-size: 26px;
    color: #000;
    text-transform: uppercase;
    font-weight: 800
}

.logo img {
    max-width: 100%;
    padding: 10px 0;
    height: auto;
}

.bartoggle,
#menubrop {
    display: none
}

.NavMenu {
    flex: 10;
    list-style: none;
    position: relative;
    display: flex;
    justify-content: end;
    align-items: center;
    margin-bottom: 0
}

.NavMenu li {
    display: inline-block
}

.NavMenu li input {
    display: none
}

.NavMenu li a {
    display: block;
    padding: 20px 14px;
    font-size: 16px;
    text-decoration: none;
    text-transform: capitalize;
    color: #202020;
    position: relative;
    letter-spacing: 0px;
    font-weight: 500;
    transition: color 0.3s ease
}

.NavMenu li ul li a:after {
    display: none
}

.NavMenu li a:hover {
    color: #ED1C24
}

.NavMenu li ul li a:hover {
    color: #ED1C24;
}

.NavMenu li a:hover::after {
    width: calc(100% - 28px)
}

.NavMenu li a label {
    cursor: pointer;
    appearance: none;
    display: block;
    position: relative
}

.NavMenu>li>a label::after {
    right: -15px;
    top: -4px
}

.NavMenu li ul {
    position: absolute;
    display: flex;
    flex-direction: column;
    background-color: #fff;
    min-width: 200px;
    border-bottom: 2px solid #ED1C24;
    top: 100%;
    box-shadow: 0 3px 5px rgb(0 0 0/20%);
    transition: all 0.5s;
    -webkit-transition: all 0.5s;
    -moz-transition: all 0.5s;
    -ms-transition: all 0.5s;
    -o-transition: all 0.5s;
    transform: translateY(10px);
    -webkit-transform: translateY(10px);
    -moz-transform: translateY(10px);
    -ms-transform: translateY(10px);
    -o-transform: translateY(10px);
    visibility: hidden;
    opacity: 0;
    padding-left: 0
}

.NavMenu li ul li {
    position: relative
}

.NavMenu li ul li a {
    color: #202020;
    padding: 8px 10px;
    display: block;
    border-left: 2px solid #fff0;
    border-bottom: 1px solid rgb(0 0 0 / .1);
    transition: all 0.5s;
    -webkit-transition: all 0.5s;
    -moz-transition: all 0.5s;
    -ms-transition: all 0.5s;
    -o-transition: all 0.5s;
    font-weight: 500;
    font-size: 16px;
    letter-spacing: 1px
}

.NavMenu li ul li ul {
    position: absolute;
    right: 100%;
    top: 0
}

@media(min-width:992px) {
    .NavMenu li ul li a:hover {
        border-left: 2px solid #ED1C24
    }

    .NavMenu li:hover>ul,
    .NavMenu li ul li:hover>ul {
        visibility: visible;
        opacity: 1;
        transform: translateY(0);
        -webkit-transform: translateY(0);
        -moz-transform: translateY(0);
        -ms-transform: translateY(0);
        -o-transform: translateY(0)
    }
}

@media(max-width:1340px) {
    header {
        padding: 0 3%
    }

    .logo {
        flex: 6
    }

    .bartoggle {
        display: flex;
        justify-content: center;
        font-size: 30px;
        align-items: center;
        background-color: #fff;
        padding: 0 10px 6px 10px;
        cursor: pointer;
        height: 40px
    }

    .sticky-top .container {
        align-items: center
    }

    .NavMenu {
        width: 430px;
        flex: 12;
        position: fixed;
        flex-direction: column;
        background-color: #202020;
        left: 0;
        top: 40px;
        height: 90vh;
        z-index: -1;
        padding: 15px 0 50px 0;
        justify-content: start;
        overflow-y: scroll;
        transition: all 0.5s;
        -webkit-transition: all 0.5s;
        -moz-transition: all 0.5s;
        -ms-transition: all 0.5s;
        -o-transition: all 0.5s;
        transform: translateX(-100%);
        -webkit-transform: translateX(-100%);
        -moz-transform: translateX(-100%);
        -ms-transform: translateX(-100%);
        -o-transform: translateX(-100%)
    }

    .NavMenu li ul,
    .NavMenu li ul li ul {
        position: initial;
        left: 0;
        visibility: visible;
        opacity: 1;
        top: 0;
        display: none
    }

    .NavMenu li ul li a {
        color: #000 !important
    }

    .NavMenu li a {
        padding: 8px 15px;
        color: #fff !important;
        border-bottom: 1px solid #fff
    }

    .NavMenu li ul li ul {
        background: #fff;
        position: inherit;
        margin-top: -10px;
        margin-bottom: 10px
    }

    .NavMenu li ul li ul li a {
        font-size: 14px;
        color: #fff;
        font-weight: 400;
        text-transform: initial;
        padding: 7px 15px 7px 30px
    }

    .NavMenu li a label::after {
        right: 10px
    }

    .NavMenu li input:checked+ul,
    .NavMenu li ul li input:checked+ul {
        display: flex;
        flex-direction: column;
        margin-bottom: 15px
    }

    input:checked+.NavMenu {
        transform: translateX(0);
        -webkit-transform: translateX(0);
        -moz-transform: translateX(0);
        -ms-transform: translateX(0);
        -o-transform: translateX(0);
        align-items: normal
    }

    .get-quote {
        display: none
    }

    .logo img {
        width: 55%;
    }

    .NavMenu {
        top: 92px
    }

    .NavMenu li>ul,
    .NavMenu li ul li>ul {
        width: 100% !important
    }
}

@media(max-width:375px) {

    .NavMenu li>ul,
    .NavMenu li ul li>ul {
        width: 87% !important
    }
}

@media(max-width:320px) {

    .NavMenu li>ul,
    .NavMenu li ul li>ul {
        width: 75% !important
    }

    .NavMenu {
        top: 81px
    }
    .g-recaptcha {
        padding-left: 0 !important;
        padding-right: 0 !important;
        transform: scale(0.4) !important;
    }
}

.NavMenu li>ul,
.NavMenu li ul li>ul {
    width: auto
}

ul,
li {
    margin: 0;
    padding: 0;
    list-style: none
}

.dropdown {
    position: relative
}

.dropdown-header {
    display: flex;
    cursor: pointer;
    border-bottom: 1px solid rgb(0 0 0 / .1);
    padding: 0 !important;
    display: flex !important;
    justify-content: space-between !important;
    align-items: center
}

.dropdown-header a {
    border: none !important
}

.main-link {
    text-decoration: none;
    padding: 10px 15px;
    display: inline-block;
    color: #333
}

.toggle-icon {
    padding: 10px 15px;
    cursor: pointer;
    font-size: 14px;
    color: var(--main-color)
}

.submenu {
    display: none;
    padding-left: 15px;
    background: #f9f9f9
}

.submenu li {
    display: inline
}

input[type="checkbox"]:checked+.dropdown-header+.submenu {
    display: block
}

.head h1 {
    font-family: Cambria, Cochin, Georgia, Times, 'Times New Roman', serif;
    color: #202020;
    font-size: 40px;
    font-weight: 800;
    line-height: normal;
    margin-top: 15px
}

.head h2 {
    font-family: Cambria, Cochin, Georgia, Times, 'Times New Roman', serif;
    color: #202020;
    font-size: 40px;
    font-weight: 800;
    line-height: normal;
    margin-top: 15px
}

.head h3 {
    font-family: Cambria, Cochin, Georgia, Times, 'Times New Roman', serif;
    color: #202020;
    font-size: 32px;
    font-weight: 600;
    line-height: normal
}

.head h4 {
    font-family: Cambria, Cochin, Georgia, Times, 'Times New Roman', serif;
    color: #202020;
    font-size: 26px;
    font-weight: 600;
    line-height: normal
}

.head h5 {
    font-family: Cambria, Cochin, Georgia, Times, 'Times New Roman', serif;
    color: #202020;
    font-size: 22px;
    font-weight: 600;
    line-height: normal
}

.main-para p {
    font-family: Verdana, Geneva, Tahoma, sans-serif;
    font-size: 16px;
    line-height: 28px;
    color: #262626;
    letter-spacing: 0;
    text-align: justify;
    font-weight: 400
}

.main-para a {
    font-size: 16px;
    line-height: 1.75em;
    font-weight: 700;
    color: #AF1313;
    letter-spacing: 0;
    text-decoration: none
}

.sec-img img {
    width: 100%;
    height: auto
}

footer {
    background-color: #202020;
    position: relative;
    overflow: hidden;
}
footer::before {
    content: "";
    position: absolute;
    inset: 0;
    pointer-events: none;
    background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1200 400'><rect fill='none' width='1200' height='400'/><polygon points='80,360 180,160 280,360' fill='%23ffffff' opacity='0.05'/><polygon points='350,340 420,200 490,340' fill='%23ffffff' opacity='0.04'/><polygon points='600,370 720,150 840,370' fill='%23ffffff' opacity='0.035'/><polygon points='950,350 1020,210 1090,350' fill='%23ffffff' opacity='0.04'/><polygon points='250,250 300,150 350,250' fill='%23ffffff' opacity='0.03'/><polygon points='750,260 800,160 850,260' fill='%23ffffff' opacity='0.03'/></svg>");
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    opacity: 1;
}

footer a {
    transition: color 0.3s ease, transform 0.3s ease;
    font-family: Verdana, Geneva, Tahoma, sans-serif;
    font-size: 16px;
    line-height: 28px
}

footer li a:hover {
    color: #bababa !important
}

footer ul li {
    margin-bottom: 7px;
    background-image: url(../img/ftr-arrow.webp);
    background-repeat: no-repeat;
    background-position: 0 5px;
    font-size: 16px;
    padding-left: 30px;
    background-size: 20px
}

footer p.fw-bold::after {
    content: '';
    display: block;
    width: 40px;
    height: 2px;
    background: #bababa;
    margin-top: 8px;
    transition: width 0.3s
}

footer p {
    font-family: Verdana, Geneva, Tahoma, sans-serif;
    font-size: 24px;
    line-height: 28px
}

footer p:hover::after {
    width: 60px
}

/* Keep specific headings/labels on a single line */
.NavMenu li a label,
.NavMenu .toggle {
    white-space: nowrap;
}

/* footer p.fw-bold {
    white-space: nowrap;
} */

@media (max-width:767px) {

    footer .col-md-6 p,
    footer ul {
        justify-content: center
    }

    .ftr-2 {
        text-align: center
    }

    .ftr-2 .col-lg-6 {
        text-align: center !important
    }
}

.right-ok {
    background-image: url(../img/right-icon.webp);
    background-repeat: no-repeat;
    background-position: 8px;
    height: auto
}

.wrong-icon {
    background-image: url(../img/wrong-icon.webp);
    background-repeat: no-repeat;
    background-position: 8px;
    height: auto
}

.modal-lg {
    width: 750px
}

.modal-dialog {
    margin: 7% auto
}

.inq-btn-home {
    position: fixed;
    top: 300px;
    left: 10px;
    width: 45px;
    height: 50px;
    z-index: 1111
}

.modal {
    z-index: 999999 !important
}

.modal-header {
    padding: 10px 15px 0 15px;
    background-color: #373435
}

.modal-title {
    font-size: 18px;
    color: #fff;
    text-align: left;
    padding-bottom: 9px
}

.modal-body {
    padding: 0 15px 10px 15px
}

.capside {
    float: left;
    margin-top: 25px
}

.close {
    position: absolute;
    right: 16px;
    top: 15px;
    font-size: 28px;
    color: #fff !important
}

.pop-img {
    margin-top: 10%;
    margin-bottom: 20px;
    width: 100%;
    height: auto
}

button.close {
    -webkit-appearance: none;
    cursor: pointer;
    background: 0 0;
    border: 0;
    background-color: #b52414 !important;
    padding: 1px 10px 17px 10px !important;
    margin-top: -15px !important;
    position: absolute;
    opacity: 1;
    color: #fff !important
}

button.btn.moClose {
    background-color: #b52414 !important;
    color: #fff !important
}

.moClose-modal-footer {
    background-color: #b52414 !important;
    color: #fff !important;
    border-radius: 5px;
    padding: 10px 15px;
    border: none;
    font-family: Verdana, Geneva, Tahoma, sans-serif;
    font-size: 16px;
    cursor: pointer;
}

@media (min-width: 769px) {
    .moClose-modal-footer {
        margin-left: 14px;
        display: inline-block;
    }
}

@media only screen and (max-width:425px) {
    .footer-divider.border-top.py-3 {
        text-align: center !important
    }

    .contact-main-2.py-5 {
        padding-top: 0 !important
    }
}

@media only screen and (max-width:768px) {
    .modal-lg {
        width: 75%;
        margin: 15px auto
    }

    .dmo {
        display: none
    }

    .modal-footer {
        padding: 15px 21px;
        text-align: right;
        border-top: none;
        margin-top: -72px;
        position: relative;
        z-index: 999;
        width: 120px;
        float: right
    }

    .inq-btn-home img {
        width: 30px;
        height: auto
    }

    .moClose {
        display: none
    }

    .modal-body {
        padding: 0 15px 45px 15px
    }

    .modal-dialog {
        margin: 15% auto
    }
}

.form-group {
    margin: 15px 0 !important
}

.form-group input {
    border-left: 5px solid var(--main-color)
}

.form-group label {
    color: var(--bg-color);
    line-height: 1.75em;
    margin: 0 0 15px;
    font-size: 16px;
    line-height: 1.75em;
    letter-spacing: 0;
    text-transform: initial;
    line-height: 1.6em;
    font-weight: 400;
    margin-top: 5px
}

.form-group textarea {
    border-left: 5px solid var(--main-color)
}

.form-group select {
    border-left: 5px solid var(--main-color)
}

.Submit-box {
    background-color: #b52414;
    padding: 10px 15px;
    color: #fff;
    border-radius: 5px;
    border: none !important
}

.purple {
    margin-top: 10px;
    border-bottom: 1px solid #a0a0a0;
    font-family: Cambria, Cochin, Georgia, Times, 'Times New Roman', serif;
    font-size: 20px;
    line-height: 28px !important
}

.page_text {
    font-size: 16px;
    line-height: 28px;
    font-weight: 500;
    font-family: Verdana, Geneva, Tahoma, sans-serif
}

.page_content {
    line-height: 10px
}

.ball-valve a {
    color: var(--main-color);
    text-decoration: none;
    font-size: 20px;
    line-height: 28px
}

.social a {
    border-radius: 50% !important;
    padding: 2px;
    background-color: #fff !important;
    margin: 10px
}

/* CSS */
/* From Uiverse.io by faizanullah1999 */ 
.primary-button {
    font-family: Verdana, Geneva, Tahoma, sans-serif;
       /* font-family: 'Valorant', sans-serif; */
    color: white;
    cursor: pointer;
    font-size: 16px;
    font-weight: bold;
    letter-spacing: 0.05rem;
    border: 1px solid #0E1822;
    padding: 0.8rem 2.1rem;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 531.28 200'%3E%3Cdefs%3E%3Cstyle%3E .shape %7B fill: %23FF4655 /* fill: %230E1822; */ %7D %3C/style%3E%3C/defs%3E%3Cg id='Layer_2' data-name='Layer 2'%3E%3Cg id='Layer_1-2' data-name='Layer 1'%3E%3Cpolygon class='shape' points='415.81 200 0 200 115.47 0 531.28 0 415.81 200' /%3E%3C/g%3E%3C/g%3E%3C/svg%3E%0A");
    background-color: #0E1822;
    background-size: 200%;
    background-position: 200%;
    background-repeat: no-repeat;
    transition: 0.3s ease-in-out;
    transition-property: background-position, border, color;
    position: relative;
    z-index: 1;
   }
   
   .primary-button:hover {
    border: 1px solid #FF4655;
    color: white;
    background-position: 40%;
   }
   
   .primary-button:before {
    content: "";
    position: absolute;
    background-color: #0E1822;
    width: 0.2rem;
    height: 0.2rem;
    top: -1px;
    left: -1px;
    transition: background-color 0.15s ease-in-out;
   }
   
   .primary-button:hover:before {
    background-color: white;
   }
   
   .primary-button:hover:after {
    background-color: white;
   }
   
   .primary-button:after {
    content: "";
    position: absolute;
    background-color: #FF4655;
    width: 0.3rem;
    height: 0.3rem;
    bottom: -1px;
    right: -1px;
    transition: background-color 0.15s ease-in-out;
   }
   
   .button-borders {
    position: relative;
    width: fit-content;
    height: fit-content;
   }
   
   .button-borders:before {
    content: "";
    position: absolute;
    width: calc(100% + 0.5em);
    height: 50%;
    left: -0.3em;
    top: -0.3em;
    border: 1px solid #0E1822;
    border-bottom: 0px;
       /* opacity: 0.3; */
   }
   
   .button-borders:after {
    content: "";
    position: absolute;
    width: calc(100% + 0.5em);
    height: 50%;
    left: -0.3em;
    bottom: -0.3em;
    border: 1px solid #0E1822;
    border-top: 0px;
       /* opacity: 0.3; */
    z-index: 0;
   }
   
   .shape {
    fill: #0E1822;
   }
   

.shdw {
    box-shadow: rgba(50, 50, 93, 0.25) 0px 6px 12px -2px, rgba(0, 0, 0, 0.3) 0px 3px 7px -3px;
    border-radius: 7px;
    padding: 25px;
}

/* Quick links under Gallery block */
.quick-links a {
  color: #262626;
  margin: 0 6px;
  text-decoration: none;
  font-family: Verdana, sans-serif;
}
.quick-links a:hover {
  color: #ED1C24;
  text-decoration: none;
}

.quick-links {
  font-family: Verdana, sans-serif;
}



/* Box styling */
.talk-box {
    background: linear-gradient(145deg, #1a1a1a, #2c2c2c);
    border: 1px solid rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(8px);
}

/* Phone Number */
.phone-number {
    font-size: 2rem;
    color: #f2bd3e;
    text-decoration: none;
    font-weight: 600;
    font-family: Verdana, Geneva, Tahoma, sans-serif;
}

.phone-number:hover {
    color: #ffffff;
    text-decoration: underline;
}

/* Animations */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes bounce {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-4px);
    }
}

.animate-fade-in {
    animation: fadeIn 1.2s ease forwards;
}

.animate-bounce {
    animation: bounce 2s infinite ease-in-out;
}

/* Responsive typography */
@media (max-width: 767px) {
    .phone-number {
        font-size: 1.5rem;
    }
}

@media (min-width: 768px) {
    .button-50 {
        padding: 12px 50px;
    }
}


li {
    font-family: Verdana, Geneva, Tahoma, sans-serif
}

img {
    border-radius: 10px
}

:root {
    --industrial-red: #D10000;
    --industrial-black: #121212;
    --metal-gray: #2A2A2A;
    --safety-white: #F8F8F8;
}

.products-section {
    padding: 2rem 0;
    background-color: var(--safety-white);
    position: relative;
    overflow: hidden;
}

.section-header {
    position: relative;
    margin-bottom: 3rem;
    text-align: center;
}

.section-title {
    font-size: 40px;
    font-weight: 700;
    color: var(--industrial-black);
    text-transform: uppercase;
    position: relative;
    display: inline-block;
}

.section-title::after {
    content: "";
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: var(--industrial-red);
}

.section-subtitle {
    color: var(--metal-gray);
    margin-top: 1.5rem;
}

.crane-card {
    background: white;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    margin-bottom: 2rem;
    height: 100%;
    border: 1px solid rgba(0, 0, 0, 0.1);
    position: relative;
}

.crane-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: var(--industrial-red);
}

.crane-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.crane-img-container {
    /* height: 250px; */
    overflow: hidden;
    position: relative;
}

.crane-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.crane-card:hover .crane-img {
    transform: scale(1.05);
}

.crane-body {
    padding: 10px;
}

.crane-title a {
    font-size: 22px !important;
    font-weight: 700;
    color: var(--industrial-black);
    margin-bottom: 1rem;
}

.crane-title a {
    color: inherit;
    text-decoration: none;
    transition: color 0.3s ease;
}

.crane-title a:hover {
    color: var(--industrial-red);
}

.crane-description {
    color: var(--metal-gray);
    margin-bottom: 1.5rem;
}


@media (max-width: 768px) {
    .section-title {
        font-size: 32px;
    }

    .crane-img-container {
        height: 200px;
    }
}

.about-title {
    font-family: Cambria, Cochin, Georgia, Times, 'Times New Roman', serif;
    color: #121212;
    position: relative;
    margin-bottom: 1.5rem;
}

.about-title::after {
    content: "";
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 60px;
    height: 4px;
    background: #D10000;
}

.about-img {
    border-radius: 8px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

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

.heading3 {
            color: #ED1C24;
            font-family: Cambria, Georgia, serif;
            font-weight: bold;
            margin-bottom: 30px;
            padding-bottom: 10px;
            border-bottom: 3px solid #ED1C24;
        }
.table-border {
            border: 2px solid #ED1C24;
            border-collapse: separate;
            border-spacing: 0;
            border-radius: 8px;
            overflow: hidden;
            box-shadow: 0 4px 12px rgba(237, 28, 36, 0.15);
            background-color: #fff;
            font-family: Verdana, sans-serif;
        }
        .table-border td {
            border: 1px solid #e0e0e0;
            padding: 12px 15px;
            font-family: Verdana, sans-serif;
        }
        .table-border tr:first-child td {
            border-top: none;
        }
        .table-border tr:last-child td {
            border-bottom: none;
        }
        .table-border tr td:first-child {
            border-left: none;
        }
        .table-border tr td:last-child {
            border-right: none;
        }
        .table-border td[bgcolor="#ececec"] {
            background-color: #ED1C24 !important;
            color: #fff;
            font-weight: bold;
            border-color: #ED1C24;
        }
        .table-border td[bgcolor="#F0F0F0"] {
            background-color: #FFD2D6 !important;
            color: #454545;
            font-weight: bold;
            border-color: #FFD2D6;
        }
        .table-border tr:hover td {
            background-color: #fff5f5;
        }
        .table-border tr:hover td[bgcolor="#F0F0F0"] {
            background-color: #FFD2D6 !important;
        }
        .table-border tr:hover td[bgcolor="#ececec"] {
            background-color: #ED1C24 !important;
        }
        .table-border td strong {
            color: inherit;
        }
        .spec-list-item {
            background: linear-gradient(135deg, #ffffff 0%, #fff8f8 100%);
            border-left: 4px solid #ED1C24;
            padding: 15px 20px;
            margin-bottom: 0;
            border-radius: 8px;
            transition: all 0.3s ease;
            box-shadow: 0 2px 8px rgba(0,0,0,0.05);
            font-family: Verdana, sans-serif;
            text-align: center;
        }
        .spec-list-item:hover {
            transform: translateY(-3px);
            box-shadow: 0 4px 15px rgba(237, 28, 36, 0.15);
            border-left-width: 6px;
        }
        .spec-list-item strong {
            color: #ED1C24;
            font-weight: bold;
        }

.company-info {
    background-color: white;
    padding: 3rem 0;
}

.info-title {
    color: #121212;
    font-weight: 700;
    margin-bottom: 1.5rem;
    text-align: center;
}

.info-table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 2rem;
}

.info-table th,
.info-table td {
    padding: 1rem;
    border: 1px solid #dee2e6;
    font-family: Verdana, Geneva, Tahoma, sans-serif;
}

.info-table th {
    /* background-color: #D10000; */
    /* color: white; */
    width: 30%;

}

.info-table tr:nth-child(even) {
    background-color: rgba(0, 0, 0, 0.02);
}

.section-heading {
    text-align: center;
    margin-bottom: 3rem;
}

.section-heading h3 {
    color: #121212;
    font-weight: 700;
    margin-bottom: 1rem;
}

.section-heading p {
    color: #2A2A2A;
    font-size: 20px;
}

.feature-card {
    background: white;
    border-radius: 8px;
    padding: 2rem;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    height: 95%;
    transition: all 0.3s ease;
    margin-bottom: 1.5rem;
    border-top: 4px solid #D10000;
}

.feature-card p {
    text-align: left;
}

.feature-card h4 {
    font-size: 21px;
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.feature-icon {
    width: 60px;
    height: 60px;
    background-color: rgba(209, 0, 0, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
}

.feature-icon i {
    font-size: 24px;
    color: #AF1313;
}

.feature-title {
    color: #121212;
    font-weight: 600;
    margin-bottom: 1rem;
}

@media (max-width: 768px) {
    .about-hero {
        padding: 3rem 0;
    }

    .about-title {
        font-size: 26px;
    }

    .about-img {
        margin-top: 2rem;
    }
}

.simple-page-header {
    padding: 60px 0;
    background-color: #FFD9DD;
    position: relative;
    overflow: hidden;

}
/* Global photo banner version for product breadcrumbs */
.simple-page-header.banner-photo {
    background-color: transparent;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    position: relative;
}
.simple-page-header.banner-photo::before {
    content: "";
    position: absolute;
    inset: 0;
    background: rgb(0 0 0 / 73%);
}
.simple-page-header.banner-photo .breadcrumb-link,
.simple-page-header.banner-photo .breadcrumb-divider,
.simple-page-header.banner-photo .breadcrumb-current,
.simple-page-header.banner-photo .simple-page-title {
    position: relative;
    z-index: 1;
    color: #ffffff;
}

/* Breadcrumb Styles */
.simple-breadcrumb {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
    font-size: 16px;
}

.breadcrumb-link {
    color: #31363b;
    text-decoration: none;
    transition: color 0.3s ease;
    display: flex;
    align-items: center;
}

.breadcrumb-link:hover {
    color: var(--industrial-red);
}

.breadcrumb-link i {
    margin-right: 5px;
}

.breadcrumb-divider {
    margin: 0 10px;
    color: #31363b;
}

.breadcrumb-current {
    color: #31363b;
    font-weight: 500;
    font-family: Verdana, Geneva, Tahoma, sans-serif;
    font-size: 16px;
}

/* Page Title Styles */
.simple-page-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #262626;
    position: relative;
    display: inline-block;
    margin-bottom: 0;
    font-family: Cambria, Cochin, Georgia, Times, 'Times New Roman', serif;
}

.title-underline {
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 50px;
    height: 3px;
    background-color: var(--industrial-red);
    border-radius: 3px;
}



/* Responsive Adjustments */
@media (max-width: 768px) {
    .simple-page-header {
        padding: 40px 0;
    }

    .simple-page-title {
        font-size: 28px;
    }
}

.hoist-benefits-container {
    background: #fff;
    border-radius: 10px;
    padding: 2rem;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    border-top: 3px solid #D10000;
    transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
}

.hoist-benefits-container:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.12);
}

.hoist-advantages-header {
    color: #AF1313;
    font-size: 22px;
    font-weight: 600;
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
    position: relative;
    padding-bottom: 0.75rem;
}

.hoist-advantages-header::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 50px;
    height: 2px;
    background: linear-gradient(90deg, #ff7474, #ffe3e3);
}

.hoist-icon-wrapper {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: #ffdcdc;
    border-radius: 8px;
    margin-right: 12px;
    color: #D10000;
}

.hoist-benefits-list {
    list-style: none;
    padding: 0;
    margin: 0;
}
.hoist-benefits-container .p {
    text-align: justify;

}

.hoist-benefit-point {
    padding: 0.75rem 0;
    display: flex;
    align-items: flex-start;
    position: relative;
}

.benefit-marker {
    display: inline-block;
    width: 8px;
    height: 8px;
    background: #151515;
    border-radius: 50%;
    margin-right: 12px;
    margin-top: 8px;
    flex-shrink: 0;
}

.benefit-description {
    color: #262626;
    font-size: 16px;
    line-height: 1.5;
    flex-grow: 1;
}

/* Hover effects */
.hoist-benefit-point:hover .benefit-marker {
    transform: scale(1.4);
    background: #D10000;
}

.hoist-benefit-point:hover .benefit-description {
    color: #D10000;
    font-weight: 500;
}

/* Responsive design */
@media (max-width: 768px) {
    .hoist-benefits-container {
        padding: 1.5rem;
    }

    .hoist-advantages-header {
        font-size: 20px;
    }

    .benefit-description {
        font-size: 16px;
    }
}

/* .crane-systems-card {
    font-family: 'Montserrat', sans-serif;
    border-radius: 10px;
    border: none;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.crane-systems-card .card-header {
    background-color: #ab141a;
    color: #fff;
    font-size: 24px;
    font-weight: 600;
    border-top-left-radius: 10px;
    border-top-right-radius: 10px;
    font-family: Cambria, Cochin, Georgia, Times, 'Times New Roman', serif;
}

.crane-systems-card ul {
    list-style: none;
    padding-left: 0;
}

.crane-systems-card li {
    margin-bottom: 1.2rem;
}

.crane-systems-card li i {
    font-size: 1.2rem;
    margin-right: 10px;
    color: #ab141a;
    min-width: 25px;
}

.crane-systems-card strong {
    font-weight: 600;
    color: #ab141a;
} */

.contact-card {
    background: #fff;
    border-radius: 10px;
    padding: 30px;
    box-shadow: 0 5px 15px rgb(0 0 0 / .05);
    transition: transform .3s, box-shadow .3s;
    border-top: 4px solid #ab141a;
    text-align: center;
}

.contact-icon {
    width: 60px;
    height: 60px;
    margin: 0 auto 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: rgba(253, 13, 13, 0.1);
    border-radius: 50%;
    color: #ab141a
}

.contact-content {
    line-height: 1.6;

}

.contact-card p {
    text-align: center;
    margin-top: 15px;
    font-family: Verdana, Geneva, Tahoma, sans-serif;
    font-size: 16px;
}

.contact-card p a {
    color: #8c1a1a;
    font-weight: 500;
    text-decoration: none;
    border-bottom: 1px dashed #8c1a1a;
}

.footer-logo img {
    margin-bottom: 20px;
}

/* Make footer logo readable on dark patterned footer */
.footer-logo {
    display: inline-block;
    background: #ffffff;
    padding: 10px 14px;
    border-radius: 10px;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
}

.footer-logo-bg {
    background: #fff;
    padding: 13px 20px 7px 20px;
    display: inline-block;
    border-radius: 12px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.08);
    margin-bottom: 12px;
}

@media (max-width:1024px) {
    .NavMenu li a::after {
        background-color: #fff0
    }

    .ftr-quick ul {
        padding-left: 0
    }

    .footer-logo img {
        width: 61%;
    }

    .ftr-logo img {
        width: 80%
    }

    .head h1 {
        font-size: 34px
    }

    .head h2 {
        font-size: 30px
    }

    .head h3 {
        font-size: 26px
    }

    .crane-title a {
        font-size: 20px !important;
    }

    .crane-body {
        padding: 5px;
    }
}

@media (max-width:768px) {
    .head h1 {
        font-size: 30px
    }

    .navbar-collapse {
        max-height: 80vh;
        overflow-y: auto
    }

    .mission-main p {
        margin-top: 20px
    }

    .rw-dir {
        flex-direction: column-reverse;
        align-items: center
    }

    .bread-links a {
        letter-spacing: 2px
    }

    .head h3 {
        font-size: 28px
    }

    .tab-width {
        width: 100% !important
    }

    .ftr-2 {
        text-align: center
    }

    .ftr-2 .col-lg-6 {
        text-align: center !important
    }

    .sec-img {
        margin-top: 20px;
    }

    ul.NavMenu {
        top: 92px;
    }
}

@media (max-width:425px) {
    .navbar-brand img {
        width: 70%
    }

    .navbar-brand {
        width: 75%
    }

    .head h1 {
        font-size: 30px
    }

    .head h2 {
        font-size: 28px
    }

    .head h3 {
        font-size: 26px
    }

    .head h4 {
        font-size: 24px
    }

    .head h5 {
        font-size: 22px
    }

    .NavMenu {
        width: 425px
    }

    .NavMenu li>ul,
    .NavMenu li ul li>ul {
        width: 100% !important
    }

    .logo img {
        width: 55%;
    }

    ul.NavMenu {
        top: 92px;
    }

}

@media (max-width:375px) {
    .NavMenu {
        width: 375px
    }

    ul.NavMenu {
        top: 92px;
    }
}

@media (max-width:320px) {
    .head h2 {
        font-size: 26px
    }

    .head h1 {
        font-size: 28px
    }

    .head h3 {
        font-size: 24px
    }

    .NavMenu {
        width: 100%
    }

    .mail a {
        word-wrap: break-word
    }

    .NavMenu li a {
        padding: 8px 12px
    }

    ul.NavMenu {
        top: 92px;
    }

    /* Fix horizontal scroll in enquiry page */
    .contact-main {
        padding: 0 10px !important;
        width: 100% !important;
        overflow-x: hidden !important;
    }

    .form-group input,
    .form-group textarea,
    .form-group select {
        width: 100% !important;
        max-width: 280px !important;
    }

    .container {
        padding-left: 10px !important;
        padding-right: 10px !important;
        width: 100% !important;
        max-width: 100% !important;
    }

    .g-recaptcha {
        transform: scale(0.77) !important;
        transform-origin: left !important;
        margin-bottom: 10px;
    }
}


.export-bg h3 {
    font-family: inherit;
    font-weight: 700;
}

.export-bg li {
    font-size: 18px;
    margin-bottom: 8px;
    color: #273618;
    letter-spacing: 0.5px;
}

.main-sec-bg {
    background: #eef6fa;
    border-radius: 16px;
}



.export-flag-box {
    min-height: 110px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    background: #f7f7f7;
    border-radius: 8px;
    margin-bottom: 10px;
    margin-right: 8px;
    margin-left: 8px;
    box-shadow: 0 1px 7px 0 rgba(60, 128, 120, 0.045);
    padding: 12px 6px 6px 6px;
    transition: box-shadow 0.2s;
}

.export-flag-box strong {
    font-size: 16px;
    font-family: Verdana, Geneva, Tahoma, sans-serif;
    color: #ae1b1b;
    font-weight: 600;
    margin-top: 3px;
    letter-spacing: 0.04em;
}

.export-flag-box img.flag {
    width: 56px;
    height: 42px;
    margin-bottom: 8px;
    box-shadow: 0 0px 4px rgba(0, 0, 0, 0.12);
}

.export-flag-box small {
    font-size: 12.5px;
    color: #337187;
    margin-top: 2px;
    display: block;
}

@media (max-width: 425px) { 
    .export-flag-box {
        flex: 0 0 calc(33.33% - 10px); /* gutter adjust */
        max-width: calc(33.33% - 10px);
        margin: 5px; /* optional spacing */
      }
}

@media (max-width: 991px) {
    .export-flag-box {
        min-height: 100px;
        padding: 10px 2px 4px 2px;
        margin: 4px;
    }

    .export-flag-box strong {
        font-size: 14px;
    }

    .export-flag-box img.flag {
        width: 24px;
        height: 18px;
    }
}

.me-1 {
    margin-right: 4px !important;
}

/* Gallery Section Fancy Image Border Hover Effect */
.gallery-section img {
    --color: #62cef5;
    /* the border color */
    --border: 10px;
    /* the border thickness*/
    --offset: 20px;
    /* control the offset*/
    --gap: 5px;
    /* the gap on hover */
    --_c: var(--color) var(--border), #0000 0 calc(100% - var(--border)), var(--color) 0;
    --_o: calc(3*var(--offset));
    padding:
        calc(var(--gap) + var(--border)) calc(var(--gap) + var(--border) + var(--offset)) calc(var(--gap) + var(--border) + var(--offset)) calc(var(--gap) + var(--border));
    background:
        linear-gradient(var(--_c)) var(--_o) var(--_o),
        linear-gradient(90deg, var(--_c)) var(--_o) var(--_o);
    background-size: calc(100% - var(--_o)) calc(100% - var(--_o));
    background-repeat: no-repeat;
    filter: grayscale(.4);
    transition: .5s;
    cursor: pointer;
    max-width: 260px;
    min-width: 180px;
    height: auto;
    display: block;
    margin-left: auto;
    margin-right: auto;
}

.gallery-section img:hover {
    background-position: 0px 0px;
    background-size: calc(100% - var(--offset)) calc(100% - var(--offset));
    filter: grayscale(0);
}

/* Make gallery-section have a clean background when on color body */
.gallery-section {
    background: #fff;
    border-radius: 1.5rem;
}

@media (max-width: 991px) {
    .gallery-section img {
        max-width: 220px;
    }
}

@media (max-width: 576px) {
    .gallery-section img {
        max-width: 100%;
        min-width: 140px;
    }
}

.footer-social a {
    transition: transform 0.22s, box-shadow 0.22s, filter 0.22s;
    display: inline-block;
}

.footer-social a:hover {
    transform: scale(1.18);
    filter: brightness(1.35);
    box-shadow: 0 3px 14px 0 rgba(65, 190, 255, 0.12), 0 1.5px 4px 0 rgba(200, 200, 240, 0.12);
    z-index: 1;
}

.footer-social img {
    vertical-align: middle;
}

.faq-heading {
    font-weight: 400;
    font-size: 30px;
    color: #CE000C;
    font-family: Cambria, Cochin, Georgia, Times, 'Times New Roman', serif;
}

.faq-heading {margin-bottom: 4px !important;}
.faq-card > summary {font-family: Verdana, Geneva, Tahoma, sans-serif!important;}
.faqs-russia {padding-top:10px;}
.why-choose-sec .row {display:flex;align-items:center;}
@media (max-width: 767px) { .why-choose-sec .row {flex-direction:column-reverse;} }

.faq-card {
    border: 1px solid black;
    border-radius: 6px;
    padding: 24px 20px;
    margin-bottom: 12px;
    list-style: none;
    position: relative;
    cursor: pointer;
}

.faq-open-icon {
    font-size: 22px;
    position: absolute;
    top: 18px;
    right: 24px;
    font-weight: 700
}

details[open] .faq-open-icon {
    top: 18px;
    right: 24px
}

details>summary {
    list-style: none
}

details>summary::-webkit-details-marker {
    display: none
}

details[open] summary {
    color: #CE000C;
    font-weight: 500
}

details[open] .faq-card-spoiler {
    display: inline-block;
    padding-top: 8px;
    color: #585865
}

.faq-aftertext {
    text-align: center;
    color: #8b8b9a
}

.faqs-russia {
    padding-bottom: 30px;
}

/* GALLERY MODERN UPGRADE */
.gallery-title-outer {text-align:center;padding-top:45px;z-index:2;position:relative;}
.gallery-title { color:#D10000; font-family:Cambria,Georgia,serif; font-size:40px; font-weight:900; letter-spacing:2.2px;text-shadow:0 2px 18px #ffd3dd88; display:inline-block;}
.gallery-title-underline{margin-bottom:18px;}
.gallery-bg-motif{position:absolute;left:0;top:0;width:190px;height:110px;z-index:0; opacity:.12; pointer-events:none;}
.gallery-badge {display:inline-block;vertical-align:middle;margin-right:7px; padding:5px 12px;border-radius:12px;font-size:.85em; font-weight:600;letter-spacing:.06em; background:#ed1c2417; color:#CE000C;box-shadow:0 2px 6px #FFD2D6; border:1.5px solid #ffe6e7;}
.gallery-badge.new {background:#CE000C; color:#fff; border:none;}
.gallery-badge.hot {background:#FFD2D6; color:#CE000C; border:1.5px solid #CE000C;}
.gallery-card {box-shadow:0 9px 32px 0 rgba(206,0,12,.07),0 1.5px 7px 0 rgba(206,0,12,.08);border:1.5px solid #fbf2f2; border-radius:22px;}
.gallery-card:hover {box-shadow:0 24px 60px #CE000C1a, 0 6px 20px #9006; border:1.5px solid #CE000C55;}
.card-title {font-weight:700;font-size:22px;letter-spacing:.3px; color:#202020; margin-bottom:.7rem; font-family: Cambria,Georgia,serif;}
.main-prod-name strong{color:#CE000C; text-shadow:0 1px 10px #ffb7b8a3;}
.price-button{position:relative;overflow:hidden;box-shadow:0 7px 23px 0 #ffd2d681;}
.price-button::before{content:'';position:absolute;left:-40px;top:0;width:40px;height:100%;background:linear-gradient(90deg,rgba(255,255,255,0.13) 0,rgba(255,255,255,0.22) 80%,rgba(255,255,255,0));transform:skewX(-18deg); opacity:0;transition:all .33s; pointer-events:none;}
.price-button:hover::before{left:110%;opacity:1;transition:all .42s;}

/* GALLERY POLISH */
.card-image { background: #fff !important; display: flex; align-items: center; justify-content: center; height: 320px; }
@media (max-width: 1024px) { .card-image { height: 240px; } }
@media (max-width: 576px) { .card-image { height: 170px; } }
.gallery-wrapper { padding-bottom: 72px; }
@media (max-width: 767px) { .gallery-wrapper { padding-bottom: 120px; } }
.gallery-grid { margin-bottom: 40px; row-gap: 44px; }
.gallery-card { box-shadow: 0 9px 32px 0 rgba(206,0,12,0.07),0 1.5px 7px 0 rgba(206,0,12,0.08); border: 1.5px solid #fbf2f2; border-radius: 22px 22px 26px 26px; }
.card-content { padding-top: 14px!important; padding-bottom: 30px!important; }

.faq-card > summary, .faq-card > summary *, .faq-card-spoiler {
  font-family: Verdana, Geneva, Tahoma, sans-serif !important;
}

footer .footer-logo-bg + .main-para p {
    color: #fff !important;
}

@media (max-width: 1024px) {
  .inq-btn-home {
    left: auto !important;
    right: 10px !important;
  }
}






/* Scoped styles for Hydraulic Cylindrical Grinding Machine page */
.page-hydraulic-cylindrical .spec-card {
            background: #fff;
            border-radius: 12px;
            padding: 20px;
            margin-bottom: 15px;
            box-shadow: 0 2px 8px rgba(0,0,0,0.1);
            transition: all 0.3s ease;
            border-left: 4px solid #ED1C24;
        }
.page-hydraulic-cylindrical .hoist-advantages-header {
            font-family: Cambria, Georgia, serif;
        }
.page-hydraulic-cylindrical .spec-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 4px 15px rgba(237, 28, 36, 0.2);
        }
.page-hydraulic-cylindrical .spec-icon {
            width: 50px;
            height: 50px;
            background: linear-gradient(135deg, #ED1C24, #ff4757);
            border-radius: 10px;
            display: flex;
            align-items: center;
            justify-content: center;
            color: #fff;
            font-size: 20px;
            margin-bottom: 15px;
        }
.page-hydraulic-cylindrical .spec-title {
            color: #ED1C24;
            font-weight: bold;
            font-size: 16px;
            margin-bottom: 8px;
            font-family: Verdana, sans-serif;
        }
.page-hydraulic-cylindrical .spec-value {
            color: #333;
            font-size: 16px;
            margin-bottom: 0;
            font-family: Verdana, sans-serif;
        }
.page-hydraulic-cylindrical .model-badge {
            display: inline-block;
            background: linear-gradient(135deg, #ED1C24, #ff4757);
            color: #fff;
            padding: 12px 30px;
            border-radius: 30px;
            font-weight: bold;
            font-size: 20px;
            margin-bottom: 30px;
            box-shadow: 0 6px 20px rgba(237, 28, 36, 0.4);
            letter-spacing: 1px;
        }
.page-hydraulic-cylindrical .spec-list-item {
            background: linear-gradient(135deg, #ffffff 0%, #fff8f8 100%);
            border-left: 4px solid #ED1C24;
            padding: 15px 20px 15px 50px;
            margin-bottom: 12px;
            border-radius: 8px;
            transition: all 0.3s ease;
            box-shadow: 0 2px 8px rgba(0,0,0,0.05);
            font-family: Verdana, sans-serif;
            position: relative;
            overflow: visible;
            text-align: left; /* ensure left alignment for technical specs */
        }
.page-hydraulic-cylindrical .spec-list-item::before {
            content: '✓';
            position: absolute;
            left: 0;
            top: 50%;
            transform: translateY(-50%);
            background: #ED1C24;
            color: #fff;
            width: 30px;
            height: 30px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-weight: bold;
            font-size: 16px;
            opacity: 0;
            transition: all 0.3s ease;
        }
.page-hydraulic-cylindrical .spec-list-item:hover {
            transform: translateX(5px);
            box-shadow: 0 4px 15px rgba(237, 28, 36, 0.15);
            border-left-width: 6px;
        }
.page-hydraulic-cylindrical .spec-list-item:hover::before {
            opacity: 1;
            left: 10px;
        }
.page-hydraulic-cylindrical .spec-list-item strong {
            color: #ED1C24;
            font-weight: bold;
            font-size: 16px;
        }
.page-hydraulic-cylindrical .spec-list-container {
            background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
            padding: 30px;
            border-radius: 15px;
            box-shadow: 0 4px 20px rgba(0,0,0,0.08);
            margin-bottom: 30px;
        }
.page-hydraulic-cylindrical .image-section {
            background: linear-gradient(135deg, #fff5f5 0%, #ffffff 100%);
            padding: 30px;
            border-radius: 15px;
            box-shadow: 0 4px 20px rgba(0,0,0,0.08);
            margin-bottom: 30px;
        }
.page-hydraulic-cylindrical .image-section img {
            border-radius: 12px;
            box-shadow: 0 8px 25px rgba(237, 28, 36, 0.2);
            transition: all 0.3s ease;
            height: 320px;            /* ensure equal height */
            width: 100%;
            object-fit: cover;        /* crop uniformly to equalize height */
        }
@media (max-width: 425px) {
    .page-hydraulic-cylindrical .spec-list-container {
                padding: 0px;
            }
}
@media (max-width: 576px) {
    .page-hydraulic-cylindrical .image-section img {
                height: 160px;        /* smaller equal height on mobile */
            }
}
@media (min-width: 768px) and (max-width: 991.98px) {
    .page-hydraulic-cylindrical .image-section img {
                height: 220px;        /* tablet: balanced equal height */
                width: 100%;
                object-fit: cover;
            }
}
.page-hydraulic-cylindrical .image-section img:hover {
            transform: scale(1.02);
            box-shadow: 0 12px 35px rgba(237, 28, 36, 0.3);
        }
.page-hydraulic-cylindrical .additional-features {
            background: linear-gradient(135deg, #fff8f8 0%, #ffffff 100%);
            padding: 30px;
            border-radius: 15px;
            box-shadow: 0 4px 20px rgba(0,0,0,0.08);
            margin-bottom: 30px;
            border-top: 3px solid #ED1C24;
        }
.page-hydraulic-cylindrical .additional-features ul li {
            padding: 10px 0;
            padding-left: 30px;
            position: relative;
            font-family: Verdana, sans-serif;
        }
.page-hydraulic-cylindrical .additional-features ul li::before {
            content: '▶';
            position: absolute;
            left: 0;
            color: #ED1C24;
            font-size: 12px;
        }
.page-hydraulic-cylindrical .power-section-title {
            background: linear-gradient(135deg, #ED1C24, #ff4757);
            font-family: Cambria, Cochin, Georgia, Times, 'Times New Roman', serif;
            color: #fff;
            padding: 15px 25px;
            border-radius: 10px;
            display: inline-block;
            margin-bottom: 25px;
            box-shadow: 0 4px 15px rgba(237, 28, 36, 0.3);
        }
