   /* New styles for the gallery and enhanced sections */
   .text-dark-2 {
     color: #333;
   }

   .text-dark-3 {
     color: rgba(0, 0, 0, 0.64);
   }

   .gallery-container {
     padding: 4rem 0;
     background-color: #f8f9fa;
   }

   .gallery-title {
     text-align: center;
     margin-bottom: 3rem;
     color: #272423;
   }

   .gallery-grid {
     display: grid;
     grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
     gap: 1.5rem;
     padding: 0 1rem;
   }

   .gallery-item {
     position: relative;
     overflow: hidden;
     border-radius: 8px;
     box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
     transition: transform 0.3s ease;
   }

   .gallery-item:hover {
     transform: translateY(-5px);
   }

   .gallery-item img {
     width: 100%;
     height: 250px;
     object-fit: cover;
     display: block;
     transition: transform 0.5s ease;
   }

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

   .gallery-caption {
     position: absolute;
     bottom: 0;
     left: 0;
     right: 0;
     background: rgba(0, 0, 0, 0.7);
     color: white;
     padding: 1rem;
     transform: translateY(100%);
     transition: transform 0.3s ease;
   }

   .gallery-item:hover .gallery-caption {
     transform: translateY(0);
   }

   /* Enhanced features section */
   .features {
     padding: 5rem 0;
     background-color: #676666;
   }

   .feature-item {
     padding: 2rem;
     background: rgb(32, 32, 32);
     border-radius: 12px;
     height: 100%;
     transition: transform 0.3s ease, box-shadow 0.3s ease;
   }

   .feature-item:hover {
     transform: translateY(-5px);
     box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
     background: rgba(0, 0, 0, 0.58);
   }

   .feature-item i {
     transition: transform 0.3s ease;
   }

   .feature-item:hover i {
     transform: scale(1.1);
   }

   .bx-rounded {
     background: white;
     padding: 8px;
     border-radius: 50px;
   }

   .navbar.position-absolute {
     top: 0 !important;
     left: 0 !important;
     z-index: 1030 !important;
     width: 100% !important;
   }

   .phone-icon-circle {
     display: inline-flex;
     justify-content: center;
     align-items: center;
     background-color: white;
     border-radius: 50%;
     width: 30px;
     height: 30px;
   }

   .text-icon {
     color: #272423 !important;
   }

   .phone-number {
     font-size: 10px;
     display: block;
     text-align: center;
   }

   @media (max-width: 767px) {
     .hide-md {
       display: none !important;
     }

     .md-full {
       width: 100% !important;
     }
   }

   @media (min-width: 767px) {
     .hide-md {
       display: inline-block !important;
     }

     .md-full {
       display: none !important;
     }

     .show-md {
       display: none !important;
     }

     .mw-lg-80 {
       max-width: 80%;
       margin: auto;
     }

   }

   .modal-file-upload-area {
     border: 2px dashed #ccc;
     transition: all 0.3s ease;
     min-height: 150px;
     cursor: pointer;
   }

   .modal-file-upload-area:hover {
     border-color: #007bff;
     background-color: #f8f9fa;
   }

   #modal-preview-container img {
     width: 100px;
     height: 100px;
     object-fit: cover;
     border-radius: 4px;
   }

   .remove-preview {
     position: absolute;
     top: -8px;
     right: -8px;
     background: #dc3545;
     color: white;
     border-radius: 50%;
     width: 20px;
     height: 20px;
     display: flex;
     align-items: center;
     justify-content: center;
     font-size: 10px;
     cursor: pointer;
   }

   .label-md {
     color: black !important;
   }

   .btn-blue {
     background-color: #2f60c2;
     color: white;
   }
