 .content-wrap p {
     color: rgb(255, 255, 255);
     line-height: 2rem;
     font-size: 1.5rem;
     text-align: center;
 }

 .content-wrap h1 mbr-section-title {
     color: rgb(255, 255, 255);
     line-height: 2rem;
     font-size: 1.5rem;
 }

 @media screen and (max-width: 546px) {
     .content-wrap p {
         color: rgb(255, 255, 255);
         line-height: 1rem;
         font-size: 1rem;
     }

     .content-wrap h1 {
         line-height: 1rem;
         font-size: 1.2rem;
         text-align: center;
     }

     .content-wrap h1 strong {
         line-height: 1rem;
         font-size: 1.2rem;
         text-align: center;
     }
 }

 /* ---------------------------------------------------Scroll--------------- */
 .carousel-container {
     /* max-width: 1200px; */
     margin: 0 auto;
     background: #f0f0f0;
     padding: 30px;
 }

 .carousel-wrapper {
     overflow: hidden;
     position: relative;
     margin: 20px 0;
 }

 .carousel-track {
     display: flex;
     transition: transform 0.5s ease-in-out;
     gap: 20px;
 }

 .image-card {
     flex: 0 0 calc(25% - 15px);
     cursor: pointer;
     border-radius: 12px;
     overflow: hidden;
     /* box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1); */
     transition: transform 0.3s ease, box-shadow 0.3s ease;
 }

 .image-card:hover {
     transform: translateY(-10px);
     box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
 }

 .image-card img {
     width: 100%;
     height: 400px;
     object-fit: cover;
     display: block;
 }

 .image-card-body {
     padding: 15px;
     background: #ececec;
 }

 .image-card-title {
     font-size: 18px;
     font-weight: 600;
     color: #333;
     margin: 0;
     overflow: hidden;
     text-overflow: ellipsis;
     white-space: nowrap;
     text-align: center;
 }

 .controls {
     display: flex;
     justify-content: center;
 }

 .btn-control {
     border-radius: 25px;
     transition: all 0.3s ease;
 }

 .modal-img {
     width: 100%;
     height: auto;
     border-radius: 8px;
 }

 .loading {
     text-align: center;
     padding: 40px;
     font-size: 18px;
     color: #667eea;
 }

 .error {
     text-align: center;
     padding: 40px;
     font-size: 18px;
     color: #dc3545;
 }

 @media (max-width: 992px) {
     .image-card {
         flex: 0 0 calc(33.333% - 14px);
     }
 }

 @media (max-width: 768px) {
     .image-card {
         flex: 0 0 calc(50% - 10px);
     }

     .image-card-title {
         font-size: 14px;
     }

     ;
 }

 @media (max-width: 576px) {
     .image-card {
         flex: 0 0 100%;
     }

     .image-card-title {
         font-size: 1rem;
     }

     .image-card img {
         width: 100%;
         height: 200px;
         object-fit: cover;
         display: block;
     }
 }

 .gallery-container {
     /* Defines the number of columns and the gap between them */
     column-count: 3;
     column-gap: 20px;
     max-width: 1200px;
     /* Limit overall width for aesthetics */
     margin: 0 auto;
     /* Center the container */
 }

 .gallery-item {
      break-inside: avoid;

     /* Adds a bottom margin to separate items within the same column */
     margin-bottom: 20px;

     /* Optional: Add padding/background for a framed look */
     padding: 10px;
     background-color: #fff;
     box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
     border-radius: 8px;
 }

 /* Styling for the actual image element */
 .gallery-item img {
     /* Makes the image fill the width of its container (the column) */
     width: 100%;
     /* Auto-adjusts the height proportionally */
     height: auto;
     /* Ensures images don't get vertically stretched */
     display: block;
     border-radius: 4px;
 }

 .modal-img {
     width: 100%;
 }

 .card-body .card-title {
     text-align: center;
 }

 @media (max-width: 900px) {
     .gallery-container {
         /* Change to 2 columns on medium screens */
         column-count: 2;
     }
 }

 @media (max-width: 600px) {
     .gallery-container {
         /* Change to 1 column on small screens (mobile) */
         column-count: 1;
     }
 }
 .demo-section {
            background: white;
            padding: 2rem;
            border-radius: 8px;
            margin-bottom: 2rem;
            box-shadow: 0 2px 4px rgba(0,0,0,0.1);
        }
        
        /* Buttons wrap on medium screens and below */
        .button-group-wrap {
            display: flex;
            flex-wrap: wrap;
            gap: 0.5rem;
        }
        
        /* On large screens, prevent wrapping */
        @media (min-width: 992px) {
            .button-group-no-wrap-lg {
                flex-wrap: nowrap;
            }
        }
        
        /* Custom button styling */
        .demo-section h2 {
            font-size: 1.5rem;
            margin-bottom: 1rem;
            color: #333;
        }
        
        .screen-indicator {
            position: fixed;
            top: 10px;
            right: 10px;
            padding: 0.5rem 1rem;
            background: #0d6efd;
            color: white;
            border-radius: 4px;
            font-weight: bold;
            z-index: 1000;
        }