/* Responsive Adjustments */
@media (max-width: 988px) {
    /* Hide Contact Form */
    .contact-toggle {
      display: none !important;
    }
  
    /* Show the Mobile Menu Toggle */
    .menu-icon {
      display: block;
    }
  }
  
@media (min-width: 799px) {
    /* Hide Mobile Menu */
    .mobile-menu {
        display: none !important;
    }
    
}

  /* Ensure that the content is centered in small screens */
@media (min-width: 768px) {
    .custome-border-end {
      border-right: none !important; /* Remove borders on smaller screens for better alignment */
    }
     /* Target sections with the 'reversed-order' class */
    .reversed-order .row {
      display: flex;
      flex-wrap: wrap;
    }
    
    /* Move the first column (image) to the second position */
    .reversed-order .row .col-md-6:first-child {
      order: 2;
    }

    /* Move the second column (text) to the first position */
    .reversed-order .row .col-md-6:last-child {
      order: 1;
    }
  }

/* On smaller screens, decrease image size */
@media only screen and (max-width: 600px) {
  .photo-slider-mySlides img {
    width: 100%; /* One image per row on small screens */
  }
}
  