

.icon-bar {
    position: fixed;
    top: 50%;
    transform: translateY(-50%);
    left: 0; /* Fixes the sidebar to the left side */
    z-index: 99999;
}

.icon-bar a {
    display: block;
    text-align: center;
    padding: 16px;
    color: white;
    font-size: 20px;
    text-decoration: none; /* Ensures no underline */
}

.icon-bar .phone {
    background: #007bff; /* Blue color for the phone icon */
    color: white;
}

.icon-bar .whatsapp {
    background: #25d366; /* Green color for the WhatsApp icon */
    color: white;
}



.cmn-footer-header {
    min-height: 200px; 
    padding: 20px;
}

.cmn-footer-header h1,
.cmn-footer-header p {
    min-height: 40px; /* Ensures the space is reserved */
}

.footer-email {
    display: flex;
    align-items: center; /* Vertically centers the email input and button */
    justify-content: center; /* Horizontally centers the email input and button */
    min-height: 50px; /* Adjust to desired minimum height */
}

    
    .cb__nav-and-social ul li a:hover {
    color: #ffffff;
    background-color: var(--accent-color);
}
     .header-video {
            position: relative;
            width: 100%;
            height: 560px; /* Adjust as needed */
            overflow: hidden;
        }
        .header-video iframe {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            border: none;
        }

        /* body, html {
            margin: 0;
            padding: 0;
            height: 100%;
            overflow: hidden;
        } */
        .video-bg-container {
            position: relative;
            width: 100%;
            height: 100%;
            overflow: hidden;
        }
        .video-bg-container iframe {
            position: absolute;
            top: 50%;
            left: 50%;
            width: 100vw;
            height: 100vh;
            transform: translate(-50%, -50%);
            z-index: -1;
            pointer-events: none;
        }
        .content {
            position: relative;
            z-index: 1;
            color: white;
            text-align: center;
            padding: 20px;
        }
/* Keyframes for continuous swapping */
/* @keyframes slideLeftToRight {
    0% {
        transform: translateX(-100%);
        opacity: 0;
    }
    25% {
        transform: translateX(0);
        opacity: 1;
    }
    50% {
        transform: translateX(100%);
        opacity: 0;
    }
    100% {
        transform: translateX(-100%);
        opacity: 0;
    }
}

@keyframes slideRightToLeft {
    0% {
        transform: translateX(100%);
        opacity: 0;
    }
    25% {
        transform: translateX(0);
        opacity: 1;
    }
    50% {
        transform: translateX(-100%);
        opacity: 0;
    }
    100% {
        transform: translateX(100%);
        opacity: 0;
    }
}

/* Apply swap animation *
.swap-left-to-right {
    animation: slideLeftToRight 6s linear infinite;
}

.swap-right-to-left {
    animation: slideRightToLeft 6s linear infinite;
}

/* Container styles *
.new-img-container {
    overflow: hidden; /* Hide overflow during animation *
}

/* Ensure images are responsive *
.new-img-container img {
    width: 100%; /* Ensure images are responsive *
    height: auto; /* Maintain aspect ratio *
}
 */

 /* Ensure the body doesn't exceed the viewport width */
body {
    max-width: 100%;
    overflow-x: hidden; /* Prevent horizontal scrolling */
}

/* Ensure the main container fits within the viewport */
.container {
    max-width: 100%;
}

/* Specific adjustments for the gallery part */
.gallary-part {
    padding: 10px !important; /* Adjust padding for the gallery part */
    overflow-x: hidden; /* Prevent horizontal scrolling */
}

/* Media query adjustments for mobile view */
@media only screen and (max-width: 768px) {
    .gallary-heading h1 {
        font-size: 26px !important; /* Adjust the heading font size for mobile view */
    }

    .gallary-img {
        margin-top: 20px !important; /* Adjust margin for mobile view */
    }

    .swiper-slide {
        height: auto !important; /* Ensure the swiper slide height adjusts automatically */
    }

    .gallary-img figure img {
        width: 100% !important; /* Make the images take full width */
        height: auto !important; /* Maintain aspect ratio */
        max-height: none !important; /* Ensure images are not restricted in height */
    }

    .swiper-container {
        padding: 10px !important; /* Adjust padding for mobile view */
    }

    .gallary-part {
        padding: 10px !important; /* Adjust padding for the gallery part */
    }
}

 

     .swiper-container {
            width: 100%;
            overflow: hidden;
        }
        .swiper-wrapper {
            display: flex;
            align-items: center;
        }
        .swiper-slide {
            display: flex;
            justify-content: center;
            align-items: center;
        }
        .gallary-img {
            position: relative;
            width: 100%;
        }
        .billbord-img {
            width: 100%;
            height: 100%;
            overflow: hidden;
        }
        .image-hover {
            transition: transform 0.3s ease-in-out;
        }
        .image-hover:hover {
            transform: scale(1.05);
        }
        .cb-br-20 {
            border-radius: 20px;
        }

        /* .footer-background {
    background-image: url('assets/images/india-gate-typography-illustration-with-abstract-background_1310786-19561\ \(1\).png'); 
    background-size: cover; 
    background-position: center;
    background-repeat: no-repeat; 
} */


.cb__main-header {
    background: linear-gradient(88deg, #e10a8c, #1bbbef, #fbeb00);
    color: var(--accent-color);
    padding: 15px 30px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

/* .container {
    margin-left: auto;
    margin-right: auto;
    max-width: 100%;
}

.video-bg {
    width: 103%;
    height: 100%;
}

@media (max-width: 320px) {
    .video-bg {
        width: 322px;
        height: 350px;
    }
} */


.video-bg {
    width: 100%;
    object-fit: cover;  /* Ensures the video covers the entire container without distortion */
}

/* For screens narrower than 320px, the video will occupy 100% of the viewport height */
@media (max-width: 320px) {
    .video-bg {
        height: 100vh; /* 100% of the viewport height */
    }
}

/* For screens narrower than 480px, the video will occupy 60% of the viewport height */
@media (max-width: 480px) {
    .video-bg {
        height: 60vh; /* 60% of the viewport height */
    }
}

/* For screens narrower than 768px, the video will occupy 50% of the viewport height */
@media (max-width: 768px) {
    .video-bg {
        height: 50vh; /* 50% of the viewport height */
    }
}

/* For screens narrower than 1024px, the video will occupy 40% of the viewport height */
@media (max-width: 1024px) {
    .video-bg {
        height: 40vh; /* 40% of the viewport height */
    }
}

/* For larger screens (>= 1024px), the default height can be 100% of the viewport height */
@media (min-width: 1024px) {
    .video-bg {
        height: 100vh; /* Full viewport height */
    }
}

@media (min-width: 1440px) {
    .video-bg {
        height: 100vh; /* Full viewport height */
    }
}
@media only screen and (max-width: 600px) {
    .choose-us-content-part h1 {
        font-size: 200% !important; /* Adjust the font size for mobile view */
        font-style: italic;
    }

    .choose-us-content-part p {
        font-size: 120% !important; /* Adjust the font size for mobile view */
        font-style: normal;
    }

    /* .clients-part {
        padding: 20px !important; 
    } */

    .clients-img img {
        width: 30px; /* Adjust the image size for mobile view */
        margin-right: 10px; /* Add margin between images */
    }

    .clients-count h2 span {
        font-size: 30px !important; /* Adjust the font size for the counter on mobile view */
    }

    .clients-count h2 {
        font-size: 14px !important; /* Adjust the font size for "Trusted Clients" text on mobile view */
    }
}

@media only screen and (max-width: 768px) {
    .message {
        flex-direction: column; /* Stack the message and image vertically */
    }

    .message-part {
        padding: 20px !important; /* Adjust padding for mobile view */
        margin-bottom: 20px; /* Add space between sections */
    }

    .message-img-part figure img {
        width: 100%; /* Ensure the image fits within its container */
    }

    .features {
        margin-bottom: 30px; /* Add space between features sections */
    }

    .features-content {
        padding: 20px !important; /* Adjust padding for mobile view */
    }
}

@media only screen and (max-width: 600px) {
    .message-part h2 {
        font-size: 28px !important; /* Adjust font size for mobile view */
    }

    .message-part input,
    .message-part select,
    .message-part textarea {
        font-size: 16px !important; /* Adjust font size for form inputs */
    }

    .message-part label {
        font-size: 16px !important; /* Adjust font size for labels */
    }

    .features-content h4 {
        font-size: 20px !important; /* Adjust font size for mobile view */
    }

    .features-content p {
        font-size: 16px !important; /* Adjust font size for mobile view */
    }

    .features-button a {
        font-size: 16px !important; /* Adjust font size for mobile view */
    }

    
}

/* .cmn-footer {
    background-image: url('assets/images/india-final.jpg'); 
    background-size: cover; 
    background-position: center center;  
    background-repeat: no-repeat; 
    padding: 50px 0; 
} */


/* body {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    background-color: #f0f0f0;
    margin: 0;
} */

.gallary-part {
    background: linear-gradient(88deg, #e10a8c, #1bbbef, #fbeb00);
    color: var(--accent-color);
    padding: 15px 30px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    border-radius: 20px; /* Ensure the border radius remains */
}

.cmn-heading {
    margin-bottom: 5rem;
}

/* .cmn-heading h1 {
    color: #000;
    font-family: 'YourFontFamily', sans-serif;
    font-size: 60px;
    font-weight: 400;
    line-height: 70px;
    text-transform: capitalize;
} */

/* .swiper-container {
    width: 100%;
    height: 100%;
}

.swiper-slide {
    display: flex;
    justify-content: center;
    align-items: center;
} */

/* .gallary-img {
    position: relative;
    transition: transform 0.3s;
}

.gallary-img img {
    border-radius: 20px;
    transition: transform 0.3s;
}

.gallary-img:hover img {
    transform: scale(1.05);
} */

/* Add additional CSS as needed */

:root {
    --accent-color: #ffffff; /* Replace with your accent color */
}



/* 

#grid-container {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 20px;
    width: 100%;
    margin: 0 auto;
    padding: 0 15px;
    font-size: 1.5rem;
    justify-content: center;
}

#grid-container article {
    display: flex;
    justify-content: center;
    align-items: center;
    transition: all 0.3s ease-in-out;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    text-align: center;
}

#grid-container article img {
    width: auto;
    height: auto;
    max-width: 100%;
    max-height: 100%;
    display: block;
    margin: 0 auto;
} */




/* #grid-container {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 20px;
    width: 100%;
    margin: 0 auto;
    padding: 0 15px;
    font-size: 1.5rem;
    justify-content: center;
} */

#grid-container article {
    display: none;

}

#grid-container .machinery {
    display: flex;
}



.button-group.filters-button-group {
    text-align: center;
    margin-bottom: 20px;
}

.button-group.filters-button-group .button {
    display: inline-block;
    padding: 10px 20px;
    margin: 0 5px;
    cursor: pointer;
    background-color: #ddd;
    border: none;
    border-radius: 4px;
    transition: background-color 0.3s ease;
}

.button-group.filters-button-group .button:hover,
.button-group.filters-button-group .button.is-checked {
    background-color: #007BFF;
    color: #fff;
}

@media (max-width: 768px) {
    .button-group {
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
    }
    .button-group .button {
        flex: 1 1 45%;
        margin: 5px;
        padding: 10px;
    }
}


/* .container-1290 {
    max-width: 1290px;
    margin: auto;
    padding: 0 15px;
} */

/* Section Padding */
.latest-part {
    padding: 80px 0;
    background-color: #f8f9fa; /* हल्का ग्रे बैकग्राउंड */
}

/* Headings Styling */
.latest-part h4 {
    font-size: 22px;
    font-weight: 600;
    color: #333;
    text-transform: uppercase;
    letter-spacing: 1px;
    position: relative;
}

.latest-h2 {
    font-size: 50px;
    font-weight: 700;
    color: #222;
    text-transform: capitalize;
    margin-top: 15px;
}

/* Counter Section */
.latest-counter-part {
    background: #fff;
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

/* Individual Counter Styling */
.counter-item {
    background: linear-gradient(135deg, #007bff, #0056b3);
    padding: 20px;
    text-align: center;
    border-radius: 10px;
    color: #fff;
    transition: transform 0.3s ease-in-out;
}

.counter-item:hover {
    transform: scale(1.05);
}

.counter-item h2 {
    font-size: 50px;
    font-weight: 700;
    margin-bottom: 5px;
}

.counter-item .suffix {
    font-size: 50px;
    font-weight: 700;
    margin-left: 5px;
}

.counter-item p {
    font-size: 18px;
    font-weight: 500;
    margin-top: 5px;
}

/* Responsive Design */
@media (max-width: 768px) {
    .latest-h2 {
        font-size: 36px;
    }
    .counter-item {
        padding: 15px;
    }
    .counter-item h2 {
        font-size: 40px;
    }
    .counter-item .suffix {
        font-size: 40px;
    }
}


/* Styling the testimonial box */
/* .testmonial {
    max-width: 850px;
    margin: auto;
    background: #ffffff;
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0px 10px 30px rgba(0, 0, 0, 0.1);
    transition: 0.3s ease-in-out;
} */
/* Testimonial Container */
.testmonial {
    background: #fff;
    padding: 40px;
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

/* Testimonial Text */
.testmonial p {
    font-size: 18px;
    line-height: 1.6;
    color: #333;
}

/* Name & Job Title */
.testmonial-name h3 {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 5px;
}

.testmonial-name p {
    font-size: 16px;
    color: #666;
}

/* Image Styling */
.testmonial-img img {
    width: 80px;
    height: 80px;
    border-radius: 50%;
   
}

/* Quotation Icon */
.qutation i {
    font-size: 50px;
    color: #007bff;
    opacity: 0.7;
}

/* Carousel Controls */
.carousel-control-prev-icon,
.carousel-control-next-icon {
    background-color: rgba(0, 123, 255, 0.5);
    border-radius: 50%;
    width: 40px;
    height: 40px;
}

/* Carousel Indicators */
.carousel-indicators button {
    background-color: #007bff;
    width: 10px;
    height: 10px;
    border-radius: 50%;
}

#grid-container {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr)); /* Responsive grid layout */
    gap: 15px; /* Space between images */
}

/* Styling for the images */
.grid img {
    width: 100%; /* Ensure the images scale to fit within the grid items */
    height: auto; /* Maintain aspect ratio */
    border-radius: 8px; /* Optional: add rounded corners to the images */
}

/* Button styles for filtering */
.button-group button {
    margin-right: 10px;
}

/* Center-align the button group */
.button-group {
    text-align: center;
    margin-bottom: 20px;
}

   