
        #carousel-1.my-carousel {
            width: 1200px;
            /* Total width of the carousel */
            overflow: hidden;
            /* Hide overflow to constrain slides */
            margin: 0 auto;
            /* Center the carousel */
        }

        #carousel-1 .slides-container {
            display: flex;
            /* Use flexbox for easy alignment */
            transition: transform 0.8s ease-in-out;
            /* CSS transition for smooth sliding */
        }

        #carousel-1 .slide {
            flex: 0 0 20%;
            /* Adjust width for 4 slides visible at a time */
            box-sizing: border-box;
            padding: 14px;
            /* Example padding for content inside slide */
            text-align: center;
            /* Center align text content */
        }

        #carousel-1 .slide img {
            max-width: 100%;
            /* Ensure images don't exceed their container */
            height: auto;
            /* Maintain aspect ratio */
        }

        #carousel-1 .slide img:hover {
            filter: grayscale(100%) brightness(80%);

        }

        #carousel-1 .slide h6 {
            margin-top: 16px;
            /* Example margin for heading */
            font-family: Raleway;
            font-size: 15px;
            margin-bottom: 10px;
            padding-left: 10px;
            padding-right: 10px;

        }

        #carousel-1 .slide p {
            font-size: 14px;
            /* Example font size for paragraph */
            line-height: 1.6;
            /* Example line height for paragraph */
        }

        #carousel-1 .slide .btn {
            display: inline-block;
            padding: 8px 16px;
            background-color: #c20000;
            /* Example button styling */
            color: #fff;
            text-decoration: none;
            border-radius: 4px;
            margin-top: 10px;
        }


        #carousel-2.my-carousel {
            width: 1199px;
            /* Total width of the carousel */
            overflow: hidden;
            /* Hide overflow to constrain slides */
            margin: 0 auto;
            /* Center the carousel */

        }

        #carousel-2 .slides-container {
            display: flex;
            /* Use flexbox for easy alignment */
            transition: transform 0.8s ease-in-out;
            /* CSS transition for smooth sliding */

        }

        #carousel-2 .slide {
            flex: 0 0 33.34%;
            /* Adjust width for 4 slides visible at a time */
            box-sizing: border-box;
            padding: 0;
            /* Example padding for content inside slide */
            text-align: center;
            /* Center align text content */
            background: #777777;
            border: none;
            border-left: 10px solid #555555;
            border-right: 10px solid #555555;
        }

        #carousel-2 .slide img {
            max-width: 100%;
            /* Ensure images don't exceed their container */
            height: auto;
            /* Maintain aspect ratio */
        }



        #carousel-2 .slide h6 {
            margin-top: 16px;
            /* Example margin for heading */
            font-family: Raleway;
            font-size: 17px;
            margin-bottom: 10px;
            padding-left: 27px;
            padding-right: 33px;
            padding-top: 11px;
            color: #ffffff;
            text-align: left;

        }

        #carousel-2 .slide p {
            font-size: 14px;
            /* Example font size for paragraph */
            line-height: 1.8;
            /* Example line height for paragraph */
            color: #cccccc;
            text-align: left;
            padding: 9px 33px 33px 27px;
        }

        #carousel-2 .slide .btn {
            display: inline-block;
            padding: 8px 16px;
            background-color: #c20000;
            /* Example button styling */
            color: #fff;
            text-decoration: none;
            border-radius: 4px;
            margin-top: 10px;
        }