:root {
    --fs-bigger: 32px;
    --fs-big: 20px;
    --fs-large: 20px;
    --fs-medium: 16px;
    --fs-small: 14px;
}

body {
    font-family: "Roboto", sans-serif;
    background: #000;
    color: #fff;
    overflow-x: hidden;
}

a {
    text-decoration: none;
}
a:hover {
    color: #fb8a05;
}

section .col-center {
    text-align: center;
    position: relative;
    padding-bottom: 10px;
    margin-bottom: 30px;
}
section .col-center::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    border-bottom: 2px solid #fff;
    border-radius: 20px;
    width: 100px;
}

section .col-start {
    position: relative;
    padding-bottom: 20px;
    margin-bottom: 30px;
}
section .col-start::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    border-bottom: 2px solid #fff;
    border-radius: 20px;
    width: 100px;
}

.home_banner_back {
    position: relative;
    background: url("../image/banner-bg.jpeg");
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
}

.home_banner_back::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
    z-index: 1;
}

.home_banner_back > * {
    position: relative;
    z-index: 2;
}

.about_banner_back2 {
    background: url("../image/balaji-about-banner.jpg");
    background-repeat: no-repeat;
    background-size: cover;
    background-position: top;
    padding-top: 140px;
    padding-bottom: 60px;
    height: auto;
}
.about_banner_back2::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0, 0, 0, 0.7);
    z-index: 1;
}

.about_banner_back2 > * {
    position: relative;
    z-index: 2;
}

.contact_banner {
    background: url("../image/contact_banner.jpg");
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
}
.gallery_banner {
    background: url("../image/gallery_banner.jpg");
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
}
.product_banner {
    background: url("../image/product_banner.jpg");
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
}
.product_detail_banner {
    background: url("../image/product_detail_banner.jpg");
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
}

.sticky-top {
    padding: 0px 0;
    position: fixed;
    width: 100%;
    background-color: transparent;
    transition: all 0.3s ease-in-out;
    z-index: 99;
}
.sticky-top2 {
    background: #000;
}

.sticky-top .navbar-nav .nav-item .nav-link {
    color: #fff;
    opacity: 0.7;
}
.sticky-top .navbar-nav .nav-item .nav-link:hover {
    color: #fff;
    opacity: 1;
}
.sticky-top .navbar-nav .nav-item .nav-link.active {
    opacity: 1;
    color: #f8a100;
}

.sticky-top .nav-social-link {
    display: flex;
    gap: 10px;
}
.sticky-top .nav-social-link a {
    font-size: var(--fs-medium);
    background: #fff;
    color: #000;
    padding: 5px 10px;
    border-radius: 5px;
}
.sticky-top .nav-social-link a:nth-child(1) {
    padding: 5px 13px;
}
.sticky-top .nav-social-link a:hover {
    background: #f8a100;
}

/* Class that will be added on scroll */
.sticky-top.scrolled {
    padding: 0px 0;
    background-color: #000;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}
.sticky-top2.scrolled {
    padding: 0px 0;
}

.sticky-top .navbar-brand img {
    width: 180px;
    object-fit: cover;
    transition: all 0.3s ease-in-out;
}

.sticky-top.scrolled .navbar-brand img {
    width: 160px;
    object-fit: cover;
}

.sticky-top .navbar-nav {
    gap: 15px;
    transition: all 0.3s ease-in-out;
}

.sticky-top .navbar-nav .nav-item {
    font-size: var(--fs-medium);
    text-transform: uppercase;
    transition: all 0.3s ease-in-out;
}

.sticky-top.scrolled .navbar-nav .nav-item {
    font-size: calc(var(--fs-medium) - 0.1rem);
}

.sticky-top .navbar-nav .nav-item .nav-link {
    color: #fff;
    opacity: 0.7;
    transition: all 0.3s ease-in-out;
}

.sticky-top .navbar-nav .nav-item .nav-link.active {
    opacity: 1;
}

.sticky-top .nav-social-link {
    display: flex;
    gap: 10px;
    transition: all 0.3s ease-in-out;
}

.sticky-top .nav-social-link a {
    font-size: var(--fs-medium);
    background: #fff;
    color: #000;
    padding: 5px 10px;
    border-radius: 5px;
    transition: all 0.3s ease-in-out;
}

.sticky-top.scrolled .nav-social-link a {
    padding: 4px 8px;
    font-size: calc(var(--fs-medium) - 0.1rem);
}

.sticky-top .nav-social-link a:nth-child(1) {
    padding: 5px 13px;
}

.sticky-top.scrolled .nav-social-link a:nth-child(1) {
    padding: 4px 12px;
}

.navbar-expand-lg .navbar-collapse {
    gap: 30px;
}

.banner-content .row .col-12 {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}
.banner-content h1 {
    margin-bottom: 30px;
    font-weight: 800;
    font-size: 48px;
}
.about_banner_back2 .banner-content h1 {
    margin-bottom: 20px;
}
.about_banner_back2 .banner-content p {
    margin-bottom: 0px;
}
.primary-gradient {
    width: fit-content;
    background: linear-gradient(to right, #ff9f2e 0%, #fb8a05 10%, #0184b3 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    color: transparent;
}
.banner-content p {
    font-size: var(--fs-big);
    margin-bottom: 30px;
}

.btn {
    width: fit-content;
    height: fit-content;
    display: flex;
    justify-content: center;
    align-items: center;
    background: linear-gradient(to right, #ff9f2e 0%, #fb8a05 10%, #0184b3 100%);
    color: #fff;
    border-radius: 5px;
    border: none;
    cursor: pointer;
    transition: all 0.4s ease-in-out;
    position: relative;
    z-index: 0;
    overflow: hidden;
    padding: 15px 35px;
}

.btn::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(to right, #ff9f2e 0%, #fb8a05 10%, #0184b3 100%);
    border-radius: 5px;
    z-index: -1;
    opacity: 1;
    transition: opacity 0.4s ease-in-out;
}

.btn:hover {
    background: transparent;
    color: #fff;
}

.btn:hover::before {
    opacity: 0;
}

.btn::after {
    content: "";
    position: absolute;
    inset: 0;
    padding: 2px;
    background: linear-gradient(to right, #ff9f2e 0%, #fb8a05 10%, #0184b3 100%);
    border-radius: 5px;
    -webkit-mask:
        linear-gradient(#fff 0 0) content-box,
        linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    z-index: -1;
    opacity: 0;
    transition: opacity 0.5s ease-in-out;
}

.btn:hover::after {
    opacity: 1;
}

.banner-count {
    width: 100%;
    position: absolute;
    bottom: -90px;
}
.banner-count .counts {
    background: #121212;
    border-radius: 16px;
    padding: 50px 30px;
}
.banner-count .counts .row .col-6 {
    display: flex;
    flex-direction: column;
    align-items: center;
    border-right: 1px solid #606060;
}
.banner-count .counts .row .col-6:last-child {
    border-right: none;
}

.counts .count-details {
    display: flex;
    align-items: center;
    gap: 20px;
}
.counts .count-details img {
    width: 100px;
    padding: 20px;
    background: #2b2b2b87;
    border-radius: 50%;
    object-fit: cover;
}

.counts .count-details b {
    font-size: var(--fs-bigger);
    font-weight: 500;
}
.counts .count-details span {
    font-size: var(--fs-large);
}

.home_about_company {
    padding-top: 170px;
    padding-bottom: 60px;
}
.about_about_company2 {
    padding: 60px 0;
}
.home_about_company .col-12:nth-child(1) {
    display: flex;
    flex-direction: column;
    justify-content: center;
}
.home_about_company .col-img {
    text-align: center;
}
.home_about_company img {
    width: 90%;
    object-fit: cover;
}
.home_about_company h2 {
    font-size: var(--fs-bigger);
    margin-top: 10px;
}
.home_about_company p {
    color: #fff;
}
.home_about_company h2 {
    margin-bottom: 20px;
}

.home_product {
    padding: 60px 0;
    background: linear-gradient(to right, #0e0b07 0%, #130d08 10%, #080e10 100%);
}

.home_product .row .col-12 h2 {
    font-size: var(--fs-bigger);
}
.home_product .row .col-12 a {
    margin: 0 auto;
    margin-top: 30px;
}

.home_product .product_card {
    background: linear-gradient(to right, #2f2110 0%, #322110 10%, #0e2831 100%);
    border-radius: 15px;
    overflow: hidden;
    text-align: center;
    height: 380px;
}
.product_home .product_card {
    height: 450px;
}
.home_product .product_card img {
    width: 100%;
    height: 240px;
    object-fit: cover;
    transition: height 0.3s ease;
}
.product_home .product_card img {
    height: 300px;
}
.home_product .product_card .product_detail {
    padding: 15px 20px;
}
.home_product .product_card .product_detail span {
    font-size: var(--fs-medium);
    font-weight: 500;
    color: #fff;
}
.product_home .product_card .product_detail span {
    font-size: var(--fs-big);
    font-weight: 500;
    color: #fff;
}

.home_product .product_card .product_detail p {
    font-size: 12px;
    color: #fff;
    margin-top: 10px;
    margin-bottom: 15px;
}
.home_product .product_card .product_detail .read_more {
    display: none;
    color: #fff;
    opacity: 0;
    transition: all 0.5s ease;
    font-size: var(--fs-small);
    font-weight: 400;
}

.home_product .product_card:hover .product_detail .read_more {
    display: inline;
    opacity: 1;
}
.home_product .product_card:hover img {
    height: 200px;
    object-fit: cover;
}
.product_home .product_card:hover img {
    height: 270px;
}
.home_service {
    padding: 60px 0;
    background: linear-gradient(to left, #120e09 0%, #150f09 10%, #0a1316 100%);
}
.home_service img {
    width: 90%;
    object-fit: cover;
}
.home_service h2 {
    font-size: var(--fs-bigger);
    font-weight: 600;
}
.home_service .col-5 p {
    font-size: var(--fs-small);
    color: #fff;
    margin-bottom: 0;
}
.home_service .service_type {
    position: relative;
    padding: 20px 10px;
    border-radius: 10px;
    background: transparent;
    z-index: 0;
    margin-left: 0;
    margin: 20px 0;
}

.home_service .service_type::before {
    content: "";
    position: absolute;
    inset: 0;
    padding: 2px;
    background: linear-gradient(to top, #b16d1f 0%, #be741f 10%, #125770 100%);
    border-radius: 10px;
    -webkit-mask:
        linear-gradient(#fff 0 0) content-box,
        linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    z-index: -1;
}
.home_service .service_type .col-2 {
    width: 20%;
}
.home_service .service_type img {
    width: 100%;
    padding: 10px;
    background: linear-gradient(to top, #b16d1f 0%, #be741f 10%, #125770 100%);
    border-radius: 50%;
    object-fit: cover;
}

.home_service .service_type span {
    color: #0184b3;
    font-size: var(--fs-large);
    font-weight: 500;
}

.home_service .service_type p {
    color: #fff;
    font-size: var(--fs-small);
    margin-top: 5px;
    margin-bottom: 0;
}

.home_cs_fb {
    padding: 60px 0;
}
.home_cs_fb h2 {
    font-size: var(--fs-bigger);
    font-weight: 600;
}
.home_cs_fb .col-5 {
    display: flex;
    flex-direction: column;
    justify-content: center;
}
.home_cs_fb .col-5 p {
    font-size: var(--fs-small);
    color: #fff;
}

.home_cs_fb .testimonial-carousel-item .row {
    display: flex;
    align-items: stretch;
}
.home_cs_fb .testimonial-card {
    position: relative;
    border-radius: 1rem;
    height: 100%;
    background: #fff;
    color: #000;
    padding: 20px;
}

.testimonial-card .col {
    width: fit-content;
    flex: auto;
}
.home_cs_fb .rating-quote {
    display: flex;
    justify-content: space-between;
}
.home_cs_fb .testimonial-card .stars i {
    margin-right: 5px;
    font-size: var(--fs-medium);
    color: #f8a100;
}

.home_cs_fb .testimonial-card .quote-icon {
    text-align: end;
}
.home_cs_fb .quote-icon img {
    width: 25px;
    object-fit: cover;
}
.home_cs_fb .testimonial-text {
    margin: 30px 0;
}
.home_cs_fb .testimonial-profile {
    margin-top: auto;
    display: flex;
    align-items: center;
    gap: 15px;
}

.home_cs_fb .testimonial-profile img {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
}
.home_cs_fb .testimonial-profile h6 {
    margin-bottom: 0;
}
.home_cs_fb .testimonial-profile small {
    color: #fb8a05;
}

.swiper-pagination-bullet {
    width: 10px;
    height: 10px;
    background-color: #fff;
    opacity: 0.8;
    border: none;
    margin: 0 7px;
    transform: rotate(45deg);
    transition: all 0.3s ease;
    border-radius: 1px;
}

.swiper-pagination-bullet-active {
    background-color: #f8a100;
    opacity: 1;
    transform: rotate(45deg) scale(1.2);
}

.swiper-pagination-bullet:hover {
    opacity: 1;
    transform: rotate(45deg) scale(1.1);
}
.swiper-pagination {
    position: relative;
    bottom: 0;
    margin-top: 30px;
    display: flex;
    justify-content: center;
    align-items: center;
}
.swiper-horizontal > .swiper-pagination-bullets .swiper-pagination-bullet {
    margin: 0 7px;
}

.home_contact {
    padding: 60px 0;
}
.home_contact .row .center-col {
    text-align: center;
    margin-bottom: 30px;
}
.home_contact h2 {
    font-size: var(--fs-bigger);
    font-weight: 600;
}
.home_contact .col-lg-6 img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.home_contact .col-lg-6 form {
    background: #1a1a1a;
    padding: 60px;
}
.home_contact .col-lg-6 form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}
.home_contact .col-lg-6 form input {
    padding: 15px 10px;
}
.home_contact .col-lg-6 form button {
    width: 100%;
}
.home_contact .form_col p {
    position: relative;
    margin-bottom: 0;
    display: contents;
}
.home_contact .form_col p br {
    display: none;
}
.home_contact .form_col .btn {
    width: 100%;
}
.home_contact .form_col .btn:hover {
    background: linear-gradient(to right, #b16d1f 0%, #be741f 10%, #125770 100%);
}
.home_contact .form_col .wpcf7-spinner {
    position: absolute;
    bottom: 12px;
    right: 0;
}
.home_contact .form_col .wpcf7-response-output {
    margin: 0;
}

.home_company_video {
    background: #121212;
}

.home_company_video .video-wrapper {
    position: relative;
    width: 100%;
    height: 500px;
}

.home_company_video .video-wrapper iframe {
    width: 100%;
    height: 500px;
}

.home_company_video .video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    z-index: 2;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.65);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    color: #fff;
    padding: 20px;
    cursor: pointer;
}

.home_company_video .video-overlay h2 {
    font-size: 2rem;
    margin-bottom: 1rem;
}

.home_company_video .video-overlay .highlight {
    color: orange;
}

.home_company_video .video-overlay p {
    max-width: 700px;
    font-size: 1rem;
    line-height: 1.5;
    margin-bottom: 1.5rem;
}

.home_company_video .play-button svg {
    transition: transform 0.3s ease;
}

.home_company_video .video-overlay:hover .play-button svg {
    transform: scale(1.1);
}

.video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    background: rgba(0, 0, 0, 0.7);
    color: white;
    transition: all 0.3s ease;
}

.video-overlay:hover {
    background: rgba(0, 0, 0, 0.6);
}

.play-button {
    transition: transform 0.3s ease;
}

.video-overlay:hover .play-button {
    transform: scale(1.1);
}

/* Popup styles */
.video-popup {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.9);
    display: none;
    justify-content: center;
    align-items: center;
    z-index: 1000;
}

.popup-content {
    position: relative;
    width: 90%;
    max-width: 800px;
    background: #404040;
    display: flex;
    justify-content: center;
    padding: 20px;
    border-radius: 10px;
}

.popup-content .popup-iframe {
    width: 100%;
    height: 100%;
    min-height: 200px;
    aspect-ratio: 16/9;
}

.close-popup {
    position: absolute;
    top: -40px;
    right: 0;
    color: white;
    font-size: 30px;
    cursor: pointer;
}

.home_newsletter {
    background: #fb8a05;
    padding: 60px 0;
}
.home_newsletter .col-lg-6 {
    display: flex;
    flex-direction: column;
    justify-content: center;
}
.home_newsletter p {
    margin-bottom: 0;
}
.home_newsletter form {
    display: flex;
    align-items: end;
    justify-content: end;
    flex-direction: column;
    gap: 20px;
}
.home_newsletter form p {
    display: flex;
    justify-content: end;
    gap: 10px;
    position: relative;
}
.home_newsletter form p br {
    display: none;
}
.home_newsletter form p .wpcf7-spinner {
    position: absolute;
    top: 12px;
}
.home_newsletter form .wpcf7-response-output {
    margin: 0;
}
.home_newsletter input {
    padding: 15px 20px;
    background: #000;
    border: none;
}
.home_newsletter .btn {
    background: #fff;
    color: #000;
    flex: none;
    /* padding: 15px 40px; */
    border: none;
    border-radius: 5px;
    transition: all 0.5 ease-in-out;
}
.home_newsletter .btn:hover {
    background: #000;
    color: #fff;
}
.home_newsletter form .wpcf7-email {
    border: 1px solid #000;
}

footer {
    background: url(../image/footer_bg.jpg);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    padding: 60px 0;
}
footer img {
    width: 230px;
    object-fit: cover;
}
footer p {
    margin: 20px 0;
}
footer .footer-center {
    display: flex;
    justify-content: center;
}
footer .footer-end {
    display: flex;
    justify-content: center;
}

footer h5 {
    font-size: var(--fs-large);
    margin-bottom: 30px;
    color: #f8a100;
}
footer ul li {
    margin-top: 20px;
}
footer ul li a {
    font-size: var(--fs-medium);
    color: #fff;
}

footer .footer-contact-link li a {
    display: flex;
    align-items: center;
    gap: 10px;
}
footer .footer-contact-link li a i {
    padding: 8px;
    border-radius: 50%;
    background: #fff;
    color: #000;
}
footer .footer-contact-link li:nth-child(3) a {
    align-items: start;
}
footer .footer-contact-link li:nth-child(3) a i {
    padding: 8px 10px;
}
footer .footer-contact-link li a:hover i {
    background: #f8a100;
}

footer .footer-social-link {
    margin-top: 30px;
    display: flex;
    gap: 15px;
}
footer .footer-social-link a {
    font-size: var(--fs-medium);
    background: #fff;
    color: #000;
    padding: 5px 10px;
    border-radius: 5px;
}
footer .footer-social-link a:nth-child(1) {
    padding: 5px 13px;
}
footer .footer-social-link a:hover {
    background: #f8a100;
}

.sub-footer {
    background: #141414;
    padding: 20px 0;
}
.sub-footer .copyright {
    display: flex;
    justify-content: space-between;
}
.sub-footer .copyright p {
    padding: 0;
    margin: 0;
}
.sub-footer .copyright a {
    color: #f8a100;
}
.sub-footer .copyright a:hover {
    text-decoration: underline;
}

/* About Us */

.about_service {
    /* padding: 60px 0; */
    background: none;
}
.about_service .card {
    background: #262626;
    padding: 30px;
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 20px;
    border-radius: 10px;
}
.about_service .card img {
    width: 100px;
    padding: 20px;
    background: #0184b3;
    border-radius: 50%;
    object-fit: cover;
}
.about_service .card span {
    color: #fb8a05;
    font-size: var(--fs-large);
    font-weight: 400;
}
.about_service .card p {
    margin-top: 5px;
    margin-bottom: 0;
}

.about_team {
    padding: 60px 0;
    padding-bottom: 100px;
}
.about_team .row {
    row-gap: 80px;
}
.about_team .center-col {
    text-align: center;
    margin-bottom: 20px;
}
.about_team .member_card {
    position: relative;
    display: flex;
    justify-content: center;
}
.about_team .member_card img {
    width: 100%;
    height: 350px;
    object-fit: cover;
    object-position: top;
}

.about_team .member_card .product_detail {
    width: 90%;
    background: #404040;
    padding: 20px;
    text-align: center;
    position: absolute;
    bottom: -50px;
}

.about_team .member_card .product_detail span {
    font-size: var(--fs-large);
    font-weight: 500;
}
.about_team .member_card .product_detail p {
    margin-top: 5px;
    margin-bottom: 0;
    font-size: var(--fs-medium);
}
.about_team .member_card .product_detail a {
    color: #f8a100;
}

/* Product */
.product_home {
    background: none;
}
.product_count {
    position: static;
    /* padding: 60px 0; */
    padding-top: 30px;
}
.product_home .row:nth-child(2) {
    row-gap: 25px;
}
.product_count .counts {
    background: none;
}
.product_detail_images .lightbox-img img {
    width: 100%;
}

.product_detail_table {
    padding: 60px 0;
    padding-top: 0;
}
.table-responsive {
    width: 100%;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
}

.table-responsive table {
    width: 100%;
    min-width: 600px; /* adjust depending on your columns */
    border-collapse: collapse;
}

.pd_table {
    width: 100%;
    border-collapse: collapse;
    background-color: #000;
    color: #fff;
    font-family: Arial, sans-serif;
    border: 1px solid #333;
}

.pd_table thead th {
    background-color: #232323;
    padding: 12px;
    font-weight: bold;
    text-align: center;
    border-bottom: 2px solid #555;
}

.pd_table tbody td {
    padding: 12px;
    text-align: center;
    border: 1px solid #333;
}

.pd_table th,
.pd_table td {
    white-space: nowrap;
    padding: 8px 12px;
    text-align: left;
}

.pd_table th {
    background: #f7f7f7;
    font-weight: 600;
}

/* services */

.service_home {
    padding: 60px 0;
    background: none;
}
.service_home .row:nth-child(2) {
    row-gap: 25px;
}
.service_home .card {
    background: linear-gradient(to right, #1e180e 0%, #1c140c 10%, #0d191d 100%);
    padding: 40px;
    border-radius: 10px;
}
.service_home .card img {
    width: 70px;
    padding: 10px;
    background: linear-gradient(to top, #b16d1f 0%, #be741f 10%, #125770 100%);
    border-radius: 50%;
    object-fit: cover;
    margin-bottom: 20px;
}
.service_home .card span {
    color: #0184b3;
    font-size: var(--fs-big);
    font-weight: 500;
}
.service_home .card p {
    margin-top: 20px;
    margin-bottom: 25px;
}
.service_home .card .btn {
    background: none;
    border: 2px solid white;
    border-radius: 0;
}
.service_home .card .btn::after,
.service_home .card .btn::before {
    background: none;
}
.service_home .card .btn:hover {
    background: #fff;
    color: #000;
    border-radius: 5px;
}

.gallery_home {
    padding: 60px 0;
    padding-top: 80px;
}

.masonry-grid {
    margin: 0 auto;
    padding-left: 10px;
}

.masonry-item {
    width: calc(25% - 20px);
    margin-bottom: 20px;
    overflow: hidden;
    transition: transform 0.3s ease;
    break-inside: avoid;
}

.masonry-item:hover {
    transform: scale(1.02);
}

.masonry-item img {
    width: 100%;
    height: auto;
    display: block;
}

.contact_map {
    height: 550px;
}

.product_detail_home {
    padding-top: 60px;
}
.product-image-viewer {
    text-align: center;
}

.product-image-viewer img {
    max-width: 100%;
    border-radius: 12px;
    transition: 0.3s ease;
    aspect-ratio: 1;
}

.product-image-viewer .main-product-img {
    height: 500px;
    object-fit: contain;
}
.thumbnailSwiper {
    max-width: 450px !important;
}
.thumbnailSwiper .swiper-slide {
    cursor: pointer;
    opacity: 0.7;
    transition: 0.3s;
}

.thumbnailSwiper .swiper-slide:hover {
    opacity: 1;
}
.thumbnailSwiper .swiper-button-next,
.thumbnailSwiper .swiper-button-prev {
    color: #fff;
}
.product_detail_home .swiper-pagination-bullet {
    width: 8px;
    height: 8px;
    margin: 0 4px !important;
}

.brad-nav a {
    color: #ffffffd4;
}
.brad-nav a:hover {
    color: #f8a100;
}

.thumbnail-swiper-container {
    padding: 0 40px; /* Space for buttons */
}

.swiper-button-prev,
.swiper-button-next {
    position: absolute;
    top: 70%;
    transform: translateY(-40%);
    width: 30px;
    height: 30px;
    background: rgba(77, 60, 7, 0.792);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 10;
}

.swiper-button-prev {
    left: 55px;
}

.swiper-button-next {
    right: 55px;
}

.swiper-button-prev::after,
.swiper-button-next::after {
    font-size: 14px;
    font-weight: bold;
}
.product_detail_home button {
    margin-top: 20px;
}

.terms_page {
    padding: 60px 0;
}
.terms_page .row {
    justify-content: center;
}
.terms_page h1 {
    font-size: var(--fs-bigger);
    font-weight: 700;
    margin-bottom: 5px;
}

.terms_page .uk-text-lead {
    font-size: var(--fs-large);
}

.terms_page h2 {
    font-size: calc(16px + 5 * (100vw / 1920));
    color: #fff;
    font-weight: 500;
    margin-top: 40px;
    margin-bottom: 15px;
}
.terms_page h2:after {
    display: block;
    width: 44px;
    height: 2px;
    margin-top: 10px;
    background-color: #fb8a05;
    content: "";
}

.terms_page p {
    line-height: 1.7;
}

.terms_page .m_top {
    margin-top: 20px;
}

.center_row_elements {
    justify-content: center;
}

.wpcf7-not-valid-tip {
    color: #fff;
}

.navbar-toggler:focus {
    box-shadow: none;
}
.navbar-toggler {
    box-shadow: none;
}

.home_cs_fb .sketchfab-embed-wrapper iframe {
    width: 100%;
    min-height: 500px;
}

/* faq */
.custom-faq-section {
    color: #ffffff;
    padding: 60px 0;
    background: linear-gradient(to left, #120e09 0%, #150f09 10%, #0a1316 100%);
}

.faq-heading {
    font-size: var(--fs-bigger);
    font-weight: 600;
}

.faq-card {
    background-color: #1414147f;
    border: 1px solid #2e2e2e;
    padding: 20px 25px;
    border-radius: 8px;
    height: 100%;
    transition:
        background 0.3s ease,
        transform 0.3s ease;
}

.faq-card h5 {
    color: #fff;
    font-weight: 500;
    margin-bottom: 15px;
    font-size: 1.1rem;
}

.faq-card p {
    color: #ddd;
    margin-bottom: 0;
}

.faq-card:hover {
    background-color: #222;
    transform: translateY(-5px);
}

/* Responsive stacking for smaller screens */
@media (max-width: 767.98px) {
    .faq-card {
        padding: 16px;
    }
}

/* inifinte logos */

.partner-logos {
    background: #141414;
    padding: 60px 0;
    overflow: hidden;
}

.logo-slider-wrapper {
    position: relative;
    overflow: hidden;
    width: 100%;
    margin-top: 30px;
}
.logo-slider-wrapper::before,
.logo-slider-wrapper::after {
    content: "";
    position: absolute;
    top: 0;
    width: 150px;
    height: 100%;
    z-index: 2;
    pointer-events: none;
}
.logo-slider-wrapper::before {
    left: 0;
    background: linear-gradient(to left, rgba(255, 255, 255, 0), #141414);
}

.logo-slider-wrapper::after {
    right: 0;
    background: linear-gradient(to right, rgba(255, 255, 255, 0), #141414);
}

.logo-slider-track {
    display: flex;
    gap: 60px;
    animation: none;
    will-change: transform;
}

.logo-slide {
    flex: 0 0 auto;
    display: flex;
    justify-content: center;
    align-items: center;
}

.logo-slide a {
    display: inline-block;
    transition: transform 0.3s ease;
}

.logo-slide img {
    width: 200px;
    height: 130px;
    object-fit: cover;
    border-radius: 10px;
}

.logo-slide .faq-heading {
    text-align: center;
    margin-bottom: 0px;
    font-size: var(--fs-bigger);
    font-weight: 600;
}

.product_advantages ul,
.product_applications ul {
    list-style: disc;
    padding-left: 1.5rem;
}

.product_advantages li,
.product_applications li {
    margin-bottom: 0.5rem;
}

.detail_products {
    padding: 0;
    padding-bottom: 60px;
}

.custom-col {
    width: 100%;
}

@media (min-width: 576px) {
    .custom-col {
        width: 50%;
    }
}

@media (min-width: 992px) {
    .custom-col {
        width: 25%;
    }
}

@media (min-width: 1200px) {
    .custom-col {
        width: 20%; /* 5 columns on large screens */
    }
}

/* Optional: ensure elements are floated or flex wrapped */
.center_row_elements {
    display: flex;
    flex-wrap: wrap;
}
