html {
    scroll-behavior: smooth;
}
body {
    display: flex;
    flex-direction: column;
    min-height: 100vh;
  }
  header {
    position: sticky; /* Make the header sticky within its scrolling context */
    top: 0;        /* Stick it to the top of its containing element (initially viewport) */
    left: 0;       /* Align to the left edge of its containing element */
    right: 0;      /* Align to the right edge of its containing element */
    width: 100%;    /* Ensure it spans the full width of its container */
    z-index: 100;   /* Ensure it stays on top of content within the same stacking context */
    background-color: white; /* Optional: Add a background color if needed */
    /* Optional: Add a background color if your header is transparent by default */
  }
  @media (max-width: 768px) { /* Adjust breakpoint (768px) as needed for your mobile breakpoint */
    table th:nth-child(1), /* Target header of the first column */
    table td:nth-child(1)   /* Target data cells of the first column */
    {
      /*width: 40%;       /* Reduce width of the first column (adjust percentage as needed) */
      /*max-width: 40%;   /* Ensure it doesn't exceed this width */
      word-break: break-word; /* Break long words to prevent overflow */
      overflow-wrap: break-word; /* Alternative for word-break for long words */
      white-space: normal;      /* Allow text to wrap to multiple lines if needed */
    }
  
    table th:nth-child(2), /* Target header of the second column (Prices) */
    table td:nth-child(2)   /* Target data cells of the second column (Prices) */
    {
      width: auto;        /* Allow the prices column to take remaining space */
      min-width: 30px;   /* Ensure prices column has a minimum width to be readable (adjust as needed) */
      white-space: nowrap; /* Keep prices in one line */
    }
  
    /* Optional: Adjust other columns if needed, or for general table styling on mobile */
    table th,
    table td {
      padding: 0.5rem;     /* Adjust padding for better mobile readability */
      font-size: 0.9rem;   /* Slightly reduce font size if needed */
    }
  
    table {
      display: block;      /* Make table responsive on mobile */
      overflow-x: auto;   /* Enable horizontal scroll for the table if content still overflows (as a last resort) */
      white-space: nowrap; /* Prevent table from breaking layout and force horizontal scroll if necessary */
    }
  }

  main {
    flex: 1;
  }

/* Optional: Custom CSS for minor adjustments beyond Tailwind */
.custom-shadow {
    box-shadow: 0px 4px 20px rgba(0, 0, 0, 0.1);
}

/* Default styles (for larger screens - desktop) */
.img-right {
    perspective: 500px;
    transform-style: preserve-3d;
}
.activeNav{
    color: #0400ff;
}
.img-right img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
    transform: rotateX(5deg) rotateY(-5deg);
}

.img-right:hover img {
    transform: rotateX(0deg) rotateY(0deg);
}

.img-left {
    perspective: 500px;
    transform-style: preserve-3d;
}

.img-left img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
    transform: rotateX(-5deg) rotateY(5deg);
}

.img-left:hover img {
    transform: rotateX(0deg) rotateY(0deg);
}

/* Styles for smaller screens (tablet and mobile) */
@media (max-width: 1023px) {

    /* Typical breakpoint for tablet */
    .img-right {
        perspective: none;
        /* Remove perspective */
        transform-style: flat;
        /* Ensure */
    }

    .img-right img {
        transform: none;
        /* Remove initial rotation */
    }

    .img-right:hover img {
        transform: none;
        /* Disable rotation on hover */
    }

    .img-left {
        perspective: none;
        transform-style: flat;
    }

    .img-left img {
        transform: none;
    }

    .img-left:hover img {
        transform: none;
    }
}

/* Modal styles */
.modal {
    display: none;
    /* Hidden by default */
    position: fixed;
    z-index: 10;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    /* Enable scroll if needed */
    background-color: rgba(0, 0, 0, 0.4);
    /* Black w/ opacity */
}

.modal-content {
    background-color: #fefefe;
    margin: 15% auto;
    /* 15% from the top and centered */
    padding: 20px;
    border: 1px solid #888;
    width: 80%;
    /* Could be more or less, depending on screen size */
}

.close {
    color: #aaa;
    float: right;
    font-size: 28px;
    font-weight: bold;
}

.close:hover,
.close:focus {
    color: black;
    text-decoration: none;
    cursor: pointer;
}

.custom-shadow {
    box-shadow: 0px 4px 20px rgba(0, 0, 0, 0.1);
}

/* Disable Rotations below large (lg) screen size */
@media (max-width: 1023px) {
    .transform {
        transform: none;
        /* Remove the `transform` class completely */
    }

    .img-left {
        transform: none;
        /* Remove the `rotated-image` rotation */
    }

    .img-right {
        transform: none;
    }
}
/* presentation.css */

/* Mobile Navigation Menu - Initial Hidden State (already in HTML classes) */
/* .translate-x-full  in Tailwind CSS already handles the initial hiding */

/* When Mobile Menu is Open (using JavaScript to add 'mobile-menu-open' class to <nav id="mobile-nav">) */
#mobile-nav.mobile-menu-open {
    transform: translateX(0); /* Slide menu in from the right */
}

/* Optional:  Overlay behind the mobile menu (if you want a dark backdrop) */
.mobile-menu-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5); /* Semi-transparent black */
    z-index: 40; /* Below the mobile menu (z-50) but above other content */
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease-in-out, visibility 0.3s ease-in-out;
}

.mobile-menu-overlay.active {
    opacity: 1;
    visibility: visible;
}
    /* ... existing CSS ... */

    .free-Hand-Arrow {
        display: block; /* Initially visible on mobile */
    }

    @media (min-width: 1024px) { /* lg:breakpoint in Tailwind is 1024px */
        .free-Hand-Arrow {
            display: none; /* Hide on lg screens and wider */
        }
    }
