* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: Arial, sans-serif;
    margin-top: 120px; 
}


section[aria-label="section"] {
    padding-top: var(--header-height, 80px);
    transition: padding-top 0.2s ease;
}

@media (min-width: 992px) {
    section[aria-label="section"] {
        padding-top: var(--header-height, 160px); 
    }
}
@media (min-width: 768px) and (max-width: 991.98px) {
    section[aria-label="section"] {
        padding-top: var(--header-height, 100px); 
    }
}

@media (max-width: 576px) {
    section[aria-label="section"] {
        padding-top: var(--header-height, 139px); 
    }
}

header {
    width: 100%;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 1000; 
    background-color: #ffffff; 
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1); 
}

.header-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: #ffffff;
    padding: 10px 20px;
    height: 4em;
}

.header-section {
    height: 4em;
}

.bg-custom {
    background-color: #362FA1;
}
.nav-link.active {
    border-bottom: 8px solid #05c656;
}
.shop-online-button {
    padding: 0.75rem 1rem;
    border-radius: 3px;
}
.small-text {
    font-size: 70% !important;
}
.navbar-toggler {
    background-color: #362FA1 !important;
}
.navbar-toggler-icon {
    color: white;
    justify-content: center;
}

.logo-container img {
    height: 60px;
}

.contact-info {
    display: flex;
    gap: 20px;
}

.contact-info a {
    text-decoration: none;
    color: #333;
    font-size: 14px;
    display: flex;
    align-items: center;
}

.contact-info i {
    margin-right: 5px;
}

.social-icons a {
    margin-left: 10px;
    font-size: 18px;
    color: #333;
    text-decoration: none;
    padding: 6px;
}

.shop-button a {
    background-color: #0f1b5c;
    color: white;
    padding: 10px 20px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: bold;
    margin-left: 40px;

}

.vertical-line {
    height: 30px;
    border-left: 2px solid #0f1b5c;
   
}

/* Responsive Design */
@media (max-width: 768px) {
    .header-top {
        flex-direction: column;
        align-items: flex-start;
    }

    .contact-info, .social-icons {
        margin: 10px 0;
    }

}

@media (max-width: 480px) {
    .shop-button a {
        padding: 8px 16px;
        font-size: 14px;
    }

    /* .contact-info {
        font-size: 12px;
    }

    .nav-menu a {
        font-size: 14px;
    } */
}

header.fixed .navbar {
    padding: 0;
}

.responsive-img {
    width: 100%;
    height: auto;
    display: block; /* Ensures no gaps below the image */
}

.our_products {
    font-size: 1.5em; /* Adjusted for better visibility on larger screens */
    margin-bottom: 30px;
}

.products-container {
    display: flex;
    justify-content: center;
}

.product-card {
    position: relative;
    width: 100%; /* Set width to 100% of the column */
    aspect-ratio: 1 / 1; /* Maintain a square aspect ratio */
    overflow: hidden;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

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

.product-card:hover img {
    transform: scale(1.1); /* Adds zoom effect on hover */
}

.overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 20px;
    background: rgba(0, 0, 0, 0.5);
    color: white;
    transition: background 0.3s ease;
}

.overlay h3 {
    font-size: 1.2rem;
    margin-bottom: 5px;
}

.overlay p {
    font-size: 0.9rem;
}

.product-card:hover .overlay {
    background: rgba(0, 0, 0, 0.7); /* Darkens overlay on hover */
}

.about-card img {
    width: 100%;
    height: 100%;
    transition: transform 0.5s ease;
}

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

.about-us-container {
    position: relative;
}

.about-us-container .position-absolute img {
    z-index: -1;
    opacity: 0.9;
}

.about-us-container h1, .about-us-container p {
    z-index: 1;
    position: relative;
}

.about-us-container a.btn {
    z-index: 1;
    position: relative;
}

/* For responsiveness */
@media (max-width: 768px) {
    .about-overlay h3 {
        font-size: 2rem;
    }

    .about-overlay p {
        font-size: 1rem;
    }

    .about-overlay {
        padding: 20px;
    }
}

.image-container {
    position: relative;
    height: 100%; /* Full height of the viewport */
    width: 100%;
    overflow: hidden;
}

.about-image {
    width: 100%;
    height: 100%;
    object-fit: cover; /* Ensures the image covers the container without distortion */
}

.about-overlay {
    position: absolute;
    top: 30%;
    left: 35%;
    transform: translate(-30%, -30%);
    text-align: center;
    color: white;
}

.heading {
    font-size: 3rem;
    margin-bottom: 20px;
}

.content {
    /* font-size: 1.2rem; */
    width: 100%;
    /* max-width: 600px; */
    margin: 0 auto;
}

.enquiry {
    padding: 60px 50px 0px 50px;
    background-color: #ffffff;
    text-align: center;
}

.enquiry_img {
    max-height: 32em;
    max-width: 45em;
    /* width: 100%; */
}

.enquiry_data{
    padding: 60px 50px;
}

.enquiry_data h1 {
    text-align: left;
    margin-bottom: 1em;
}

.enquiry_data p {
    text-align: left;
    font-size: 1.2em;
}

.frame_1 {
    max-height: 3em;
    width: 100%;
    object-fit: fill;
}

.enquiry_btn {
    border-radius: 50px;  /* 50% or large value to make it oval */
    background-color: #1c2c87;
    color: white;
    border: none;
    cursor: pointer;
    text-align: center;
    font-size: 16px;
}

.enquiry_btn:hover {
    background-color: #45a049;
}

.testimonials h2 {
    color: #ffffff;
    font-size: 2.5em;
}

.testimonials p {
    color: #ffffff;
}

@media (max-width: 768px) {
    .heading {
        font-size: 2rem;
    }

    .content {
        font-size: 1rem;
        width: 100%;
    }
}

@media (max-width: 480px) {
    .heading {
        font-size: 1.5rem;
    }

    .content {
        font-size: 0.9rem;
    }
}


  /* Custom media query to adjust font size for medium (md) screens */
  @media (max-width: 992px) { /* 992px is the breakpoint for md */
    h1 {
      font-size: 2rem !important; /* Adjust to a smaller size */
    }
    p {
      font-size: 1rem !important; /* Adjust paragraph size for md */
    }
  }

  @media (min-width: 993px) { /* For lg and larger screens */
    h1 {
      font-size: 3rem !important; /* Larger size for lg */
    }
    p {
      font-size: 1.25rem !important; /* Larger paragraph size */
    }
  }

.carousel-item {
    padding: 15px;
}
.carousel-item .item {
    background-color: #ffffff;
    border-radius: 10px;
    padding: 20px;
    text-align: center;
}
.carousel-item img {
    width: 80px;  /* Circular image size */
    height: 80px;
    border-radius: 50%;
    margin-bottom: 15px;
}
.star-rating {
    color: gold;
}

.carousel-control-next,
.carousel-control-prev {
    width: 5%;
}
.carousel-control-next-icon,
.carousel-control-prev-icon {
    background-color: #000;
    padding: 15px;
    border-radius: 50%;
}
  
.carousel-item .item p {
    color: #333;
}

.footer {
    background-color: #ffffff;
}

.footer-social-icons {
    color: #000;
    text-align: center;
}

.footer-social-icons a{
    /* margin-left: 10px; */
    font-size: 18px;
    color: #333;
    text-decoration: none;
    padding: 2px;
    
}

.footer .contact-info {
    background-color: #1A1A59;
}

.contact-box {
    background-color: #1A1A59; /* Dark background color */
    color: white; /* Text color */
    padding: 20px; /* Padding inside the box */
    border-radius: 10px; /* Rounded corners */
    margin-bottom: 20px; /* Space between boxes */
}
.contact-box a {
    color: white; /* Link color */
    text-decoration: none; /* Remove underline */
}
.contact-box a:hover {
    text-decoration: underline; /* Underline on hover */
}
.contact-icon {
    font-size: 24px; /* Icon size */
    margin-right: 10px; /* Space between icon and text */
}

.blank-box {
    background-color: #ffffff;
}

.download-btn {
    padding: 10px;
    background-color: #1A1A59; 
    color: white;
    border-radius: 10px;
}

.journey h1 {
    color: #20207e;
    font-weight: bold;
}
.journey h2 {
    color: #20207e;
    font-size: 2.5em;
    font-weight: bolder;
}



.directors-container {
    display: flex;
    justify-content: center;
}

.director-card {
    position: relative;
    width: 100%; /* Set width to 100% of the column */
    aspect-ratio: 7 / 8; /* Maintain a square aspect ratio */
    overflow: hidden;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

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

.director-card:hover img {
    transform: scale(1.1); /* Adds zoom effect on hover */
}

.director-card:hover .overlay {
    background: rgba(0, 0, 0, 0.7); /* Darkens overlay on hover */
}

.director-card .overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 20px;
    background: rgba(187, 181, 181, 0.837);
    color: black;
    transition: background 0.3s ease;
}

.director-card .overlay h3 {
    font-size: 1.4rem;
    margin-bottom: 5px;
    font-weight: bold;
}

.director-card .overlay p {
    font-size: 1.1rem;
}

.director-card:hover .overlay {
    background: rgba(0, 0, 0, 0.7); /* Darkens overlay on hover */
    color: white;
}

.links p {
    color: black;
    font-weight: 500;
    margin-bottom: 10px;
}

.overlay-container {
    position: relative;
}

.text-overlay {
    position: absolute;
    top: 50%; /* Adjust as necessary */
    left: 10%; /* Align the text to the left */
    transform: translateY(-50%); /* Center vertically only */
    color: white;
    z-index: 2;
}

.img-fluid {
    z-index: 1; /* Keep the image behind the text */
    object-fit: cover; /* Ensure image covers the container */
}

.knowledge_sec_1 {
    background-color: #ebe7e7;
}

.knowledge_sec_2 {
    background-color: #fff;
}

.knowledge_sec_2 img{
    border-radius: 5px;
}

.presence_office {
    color: #1A1A59;
}

.presence_office ul li{
    font-weight: bold;
    color: #000;
    font-size: large;
    padding: 5px;
}

.presence_channel {
    color: #FF6250;
}

.presence_channel ul li{
    font-weight: bold;
    color: #000;
    font-size: large;
    padding: 5px;
}

.presence_over ul li {
    font-weight: bold;
    color: #000;
    font-size: large;
    padding: 5px;
}

.conatct-us h1 {
    font-weight: bolder;
}


.conatct-us p {
    font-weight: bolder;
}

.contact-map h2 {
    font-weight: bolder;
}
.map-container {
    display: flex;
    justify-content: center;
}

.map-container h2{
    font-weight: bolder;
}

.map-size {
    max-width: 500px; 
    margin: auto;
}

.contact-container {
    height: 100%;
    display: flex;
    align-items: center; /* Center vertically */
    justify-content: center; /* Center horizontally */
    background-color: #1D1E31; /* Dark background */
            color: white; /* Text color */
            height: 100vh; /* Full height */
}

.form-container {
    background-color: #2b2d42; /* Dark background */
    height: 100vh; /* Full height */
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0;
}

.form-container h1 {
    text-align: center;
    color: white; /* Title color */
    margin-bottom: 30px; /* Spacing below the title */
}

.form-container .form-label {
    color: #ffffff; /* Label color */
}

.form-container .form-control {
    background-color: #2f2f5c; /* Input background color */
    color: white; /* Input text color */
    border: none; /* Remove border */
    border-radius: 5px; /* Rounded corners */
}

.form-container .form-control::placeholder {
    color: #b0b3c1; /* Placeholder text color */
}

.form-container .form-control:focus {
    background-color: #2f2f5c; /* Keep same background on focus */
    border-color: #007bff; /* Focus border color */
    box-shadow: none; /* Remove default shadow */
}

.form-container .btn {
    background-color: #4caf50; /* Button color */
    border: none; /* Remove border */
    border-radius: 5px; /* Rounded corners */
    width: 100%; /* Full width button */
}

.form-container .btn:hover {
    background-color: #45a049; /* Button hover color */
}

.form-container textarea {
    resize: none; /* Prevent resizing */
}


@media (min-width: 992px) { /* lg breakpoint */
    .ms-lg-4rem {
        margin-left: 4rem !important; /* Use !important to override Bootstrap styles if necessary */
    }
}

/* conatct page form start */
.conatct-form .conatct-form-container {
    background-color: #1D1A57;
    /* display:flex; */
    justify-content: center;
    align-items: center;
    color: white;
}
.conatct-form .form-control {
    border-radius: 10px;
    background-color: white;
}
.conatct-form .btn-custom {
    background-color: #00b140;
    color: white;
    border-radius: 10px;
    padding: 10px 20px;
}
.btn-custom:hover {
    background-color: #00a136;
}
/* conatct page form end */


.gallery .card {
    border: none;
    margin-bottom: 20px;
    background-color: transparent;
}
.gallery .card-background {
    position: relative;
    overflow: hidden;
    margin-bottom: 10px;
    background-size: cover;
    background-position: center;
}
.gallery .card-img {
    position: relative;
    z-index: 1;
    transition: transform 0.3s ease;
    border-radius: 8px;
}
.gallery .card-background:hover .card-img {
    transform: scale(1.05); /* Image slide effect */
}
.gallery .card-title {
    font-weight: bold;
    color: #1D1A57;
    font-size: 18px;
}
.gallery .btn-custom {
    background-color: transparent;
    border: 1px solid #1D1A57;
    color: #1D1A57;
    width: 100%;
}
.gallery .btn-custom:hover {
    background-color: #1D1A57;
    color: white;
}

.gallery-detail .card-img {
    position: relative;
    z-index: 1;
    transition: transform 0.3s ease;
    /* border-radius: 8px; */
    border: 2px solid #7b7b87;
    box-shadow: 0 8px 8px rgba(0, 0, 0, 0.2);
}

.video-thumbnail {
    position: relative;
    border-radius: 8px;
    overflow: hidden;
    cursor: pointer;
    margin-bottom: 10px;
}
.video-thumbnail .thumbnail-img {
    width: 100%;
    border-radius: 8px;
}
.youtube-icon {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 40px;
    color: #FF0000;
    opacity: 0.8;
    height: 40px !important;
    width: 55px !important;
}
.card-title {
    text-align: center;
    font-weight: bold;
    color: #333;
    margin-top: 10px;
}

.tab-btn {
    background-color: #0d0a40;
    color: #fff;
    border: none;
    border-radius: 0;
}
.tab-btn:not(.active) {
    background-color: #fff;
    color: #000;
    border: 1px solid #ddd;
}
.tab-btn.active {
    color: #fff;
}
.machinery-card {
    border: 1px solid #ddd;
    border-radius: 8px;
    padding: 10px;
    text-align: center;
    transition: box-shadow 0.3s ease;
    min-height: 400px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}
.machinery-card:hover {
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}
.machinery-title {
    font-size: 1.25rem;
    font-weight: 700;
    color: #333;
    margin-top: 10px;
    text-align: left;
    padding-left: 0.5em;
}
.product-description {
    font-size: 0.875rem;
    color: #555;
    max-height: 50px;
    overflow: hidden;
    text-overflow: ellipsis;
}
.machineries .btn-view-details {
    background-color: #0d0a40;
    color: #fff;
    border-radius: 8px;
    padding: 10px 20px;
    transition: background-color 0.3s ease;
    border: none;
}
.machineries .btn-view-details:hover {
    background-color: #252047;
    color: #fff;
}

.machinery-card img {
    max-width: 100%;
    border-radius: 5px;
    height: 200px;
    object-fit: contain;
    margin-bottom: 5px;
}

.machinery_detail_head {
    background-color: #1D1A57;
    color: white;
    text-align: center;
}

.machinery_detail {
    background-color: white;
}

.machinery_detail img {
    border-radius: 8px;
    border: 1px solid #b3b3bb;
    min-height: 300px;
    object-fit: contain;
}

.machinery_detail p {
    margin-bottom: 0% !important;
}

.rexine h4 {
    font-weight: bolder;
    margin-top: 1em;
    text-align: center;
    color: #1D1A57;
}

.rexine img {
    text-align: center;
}

.chemical_header {
    background-color: #1D1A57;
    color: white;
    text-align: left;
}

/* .chemical_content h2 {
    font-size: 2.5em;
} */

/* .chemical_content ul li {
    font-size: 20px;
    font-weight: bold;
} */

.row {
    margin-right: 0 !important;
}

.rounded-circle {
    border: 1px solid #c3c0c0;
}

/* Add border to the right of each column except the last */
.border-col {
    border-right: 1px solid #ddd;
}

.row .border-col {
    padding: 30px; /* Add some padding around the content */
    text-align: center;
}

/* Add border between rows */
.border-row {
    border-bottom: 1px solid #ddd;
}

/* Remove bottom border for the last row */
.container .row:last-child {
    border-bottom: none;
}

/* Remove right border for the last column in each row */
.border-col:last-child {
    border-right: none;
}

@media (max-width: 767.98px) {
    .border-col {
        border-right: none;
    }

    .border-row {
        border-bottom: none;
    }
}


.toast-success {
    background-color: #4CAF50;
    color: white;
}

.toast-error {
    background-color: #f44336; 
    color: white;
}

#toast-message {
    position: fixed;
    top: 20px;
    right: 20px;
    padding: 10px;
    border-radius: 5px;
    z-index: 1000;
}

.career-form {
    background-color: #1D1A57;
    /* display:flex; */
    justify-content: center;
    align-items: center;
    color: white;
}
.career-form .form-control {
    border-radius: 10px;
    background-color: white;
}
.career-form .btn-custom {
    background-color: #00b140;
    color: white;
    border-radius: 10px;
    padding: 10px 20px;
}

.row .career {
    margin-left: 0 !important;
}

.address h3 {
    color: #2F2483;
    font-weight: 700;
}

.award {
    max-height: 500px;
    max-width: 300px;
}

/* Ensure the default text color and apply hover effect for the text color */
.navbar-nav .nav-link {
    cursor: pointer; /* Changes the cursor to a pointer (hand) on hover */
    transition: color 0.3s ease; /* Smooth transition for the text color */
    color: white; /* Ensures default text color is white */
    /* transform-origin: center center; */
    white-space: nowrap;
}

.navbar-nav .nav-link:hover {
    transform: scale(1.1); 
    /* color: red !important;  */
}

.navbar-nav .dropdown-item {
    cursor: pointer;
    transition: color 0.3s ease;
    color: black; 
}

.navbar-nav .dropdown-item:hover {
    background-color: #362FA1;
    color: white !important; 
}

@media (max-width: 991px) {
    .navbar-nav .nav-link {
        text-align: center; /* Center the text to avoid leftward shift */
        display: block; /* Ensure the nav items are properly aligned vertically */
    }
}

.map-container {
    position: relative;
    width: 100%;
    height: auto;
    /* max-width: 1000px; */
    margin: auto;
}

/* Position icons over map at specific locations */
.location-icon {
    position: absolute;
    cursor: pointer;
    font-size: 2rem;
    color: red; /* You can change the color if needed */
    max-width: 1.2em !important;
    max-height: 1.2em !important;
}


.location-chennai { top: 81%; left: 42%; }   /* Adjust these values to place icons correctly */
.location-mumbai { top: 59%; left: 22%; }
.location-delhi { top: 29%; left: 34%; }
.location-haryana { top: 20%; left: 34%; }
.location-kolkata { top: 44%; left: 67%; }
.location-calicut { top: 85%; left: 31%; }


/* Adjust positions for small screens (sm) */
@media (max-width: 576px) {
    .location-chennai { top: 76%; left: 38%; }
    .location-mumbai { top: 52%; left: 19%; }
    .location-delhi { top: 23%; left: 32%; }
    .location-haryana { top: 17%; left: 29%; }
    .location-kolkata { top: 38%; left: 64%; }
    .location-calicut { top: 78%; left: 27%; }

    .location-icon {
        position: absolute;
        cursor: pointer;
        font-size: 2rem;
        color: red;
        max-width: 1em !important;
        max-height: 1em !important;
    }

}

/* @media (max-width: 992px) {
    .location-chennai { top: 79%; left: 41%; }
    .location-mumbai { top: 56%; left: 21%; }
    .location-delhi { top: 27%; left: 33%; }
    .location-haryana { top: 19%; left: 32%; }
    .location-kolkata { top: 41%; left: 66%; }
    .location-calicut { top: 83%; left: 30%; }

    .location-icon {
        position: absolute;
        cursor: pointer;
        font-size: 2rem;
        color: red;
        max-width: 1em !important;
        max-height: 1em !important;
    }

} */

/* .location-container {
    position: absolute;
    display: flex;
    align-items: center;
    gap: 5px;
}

.location-delhi {
    top: 28%;
    left: 28%;
}

.location-haryana {
    top: 20%;
    left: 32%;
}


.line-horizontal {
    width: 150px; 
    height: 3px;
    background-color: #362FA1; 
    margin-left: 10px;
}


.location-label {
    font-size: 24px;
    color: #333;
    white-space: nowrap;
} */

.tooltip-custom {
    display: none; 
    position: absolute;
    background-color: #1F2175;
    color: white;
    margin-left: -5px; 
    border-width: 5px;
    border-style: solid;
    border-color: transparent transparent #1F2175 transparent; 
    z-index: 10;
}

.tooltip-custom .modal-title {
    margin-bottom: 20px !important;
    margin-top: 10px !important;
    padding-left: 10px !important;
    padding-right: 10px !important;
}

.tooltip-custom p{
    padding-left: 10px !important;
    padding-right: 10px !important;
}

.video-wrapper {
    position: relative;
    width: 100%;
    max-width: 100%;
    overflow: hidden;
    background-color:#f9f9f9;
}

.responsive-video {
    width: 100%;
    height: auto;
    cursor: pointer;
}

.play-button {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 3rem;
    color: #fff;
    cursor: pointer;
    opacity: 0.8;
    transition: opacity 0.3s;
}

.play-button:hover {
    opacity: 1;
}

.footer .contact-links p{
    font-size: .9em !important;
    font-weight: 500;
}

.footer .links p{
    font-size: 1.2em !important;
    font-weight: 500;
}

.download-btn {
    text-decoration: none; 
}

.image-zoom-container {
    position: relative;
}

#main-image {
    width: 100%;
    cursor: crosshair;
}

#zoomed-view {
    position: absolute;
    top: 0;
    left: 110%; /* Position to the right of the image */
    width: 300px; /* Adjust as needed */
    height: 300px; /* Adjust as needed */
    overflow: hidden;
    border: 1px solid #ccc;
    background-color: #fff;
    display: none; /* Initially hidden */
    z-index: 10;
}

#zoomed-view img {
    position: absolute;
    width: auto;
    height: auto;
    min-width: 200%; /* Zoom factor */
    min-height: 200%; /* Zoom factor */
}

@media (min-width: 991px) {
    #zoomed-view {
        position: absolute;
        top: 0;
        left: 110%; /* Position to the right of the image */
        width: 420px; /* Adjust as needed */
        height: 380px; /* Adjust as needed */
        overflow: hidden;
        border: 1px solid #ccc;
        background-color: #fff;
        display: none; /* Initially hidden */
        z-index: 10;
    }
}

.faq_font {
    font-size: larger;
}

@media (min-width: 999px) {
    .review {
        height: 500px !important;
    }
}

@media (min-width: 768px) and (max-width: 998.98px) {
    .review {
        height: 600px !important;
    }
}

.carousel-container {
    width: 100%;
    overflow: hidden;
    position: relative;
}
.carousel-logo-inner {
    display: flex;
    animation: scroll 40s linear infinite;
    width: 200%; /* Ensures continuous scrolling */
}
.carousel-logo {
    flex: 0 0 5.5%; /* 6 items in a row */
    
}
.carousel-logo-inner img {
    width: 100%;
    height: auto;
}
@keyframes scroll {
    0% { transform: translateX(0); }
    100% { transform: translateX(-100%); } /* Moves the images left */
}
