/*============================================================================================*/
/* Your custom styles below */
/*============================================================================================*/
/* Hide these items on desktop */
@media screen and (min-width: 768px) {
    .mobile-only {
        display: none;
    }
}

/* Show these items on mobile */
@media screen and (max-width: 767px) {
    .mobile-only {
        display: block;
    }
}

/* Hide these items on mobile */
@media screen and (max-width: 767px) {
    .desktop-only {
        display: none;
    }
}

/* Show these items on desktop */
@media screen and (min-width: 768px) {
    .desktop-only {
        display: inline-block;
    }
}

.mobile-bar-button {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #0071be; /* Adjust color as needed */
    text-align: center;
    padding: 10px 0;
    box-shadow: 0 -2px 5px rgba(0, 0, 0, 0.2);
    z-index: 10000; /* Ensure it is above other elements */
    color: #FFFFFF;
    
    
}
.spacing-10 {
  width: 100%;
  height: 10px;
  display: flex; 
}
.spacing-20 {
  width: 100%;
  height: 20px;
  display: flex; 
}
.spacing-30 {
  width: 100%;
  height: 30px;
  display: flex; 
}

.spacing-50 {
  width: 100%;
  height: 50px;
  display: flex; }

.access-info {
    display: flex; /* Keeps the icon and text on the same line initially */
    align-items: flex-start; /* Aligns the items at the top */
    margin-bottom: 10px;  /* Optional: Adds spacing between each line */
}

.access-info .fa {
    margin-right: 8px; /* Adds space between the icon and the text */
}

.text {
    white-space: normal; /* Allows the text to wrap across multiple lines */
    max-width: 500px; /* Optional: Limits text width to prevent overflow */
}


        .table-container {
            width: 100%;
            margin: auto;
            border-collapse: collapse;
            overflow-x: auto;
        }

        table {
            width: 100%;
            border-collapse: collapse;
            margin-top: 10px;
        }

        th, td {
            border: 1px solid #b15607db;
            padding: 10px;
            text-align: left;
        }

        th {
            background-color: #b15607db;
            font-weight: bold;
        }

        .table-container caption {
            background-color: #eae5dc;
            font-size: 16px;
            font-weight: bold;
            text-align: center;
            padding: 10px;
        }

        td[data-label="Maximum Occupancy"] {
            white-space: nowrap; /* Keep on a single line by default */
        }

.tabmenu-img{
    width:auto;
    height: auto;
}
 @media (max-width: 768px) {
        .tabmenu-img {
            width: 350px;
            height: auto;
        }
    }
 @media (max-width: 768px) {
        table {
            width: 100%;
            border-collapse: collapse;
            font-size: 8px;
        }
    }
#section_d{
    display: none;
}
#section_d1{
    display: none;
}

        .container_1 {
            display: flex;
            justify-content: center;
            align-items: flex-start;
            max-width: 1100px;
            margin: auto;
            gap: 70px;
            flex-wrap: wrap;
        }
        .section {
            background: white;
            border-radius: 12px;
            padding: 20px;
            flex: 1;
            max-width: 320px;
            box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.1);
            text-align: left;
            transition: transform 0.3s ease-in-out;
            display: flex;
            flex-direction: column;
            justify-content: space-between;
            height: 100%;
        }
        .section:hover {
            transform: scale(1.05);
        }
        .lead1_1{
            font-family: "Julius Sans One", sans-serif;
        }
        .section h2 {
            background: #006989;
            color: white;
            padding: 12px;
            border-radius: 6px;
            font-size: 18px;
            text-align: center;
        }
        .steps {
            list-style: none;
            padding: 0;
            margin: auto 0;
            position: relative;
            display: flex;
            flex-direction: column;
            justify-content: space-between;
            height: 100%;
        }
        .steps li {
            background: #e9ecef;
            padding: 12px;
            border-radius: 20px;
            margin: 10px 0;
            text-align: left;
            font-weight: normal;
            position: relative;
            font-size:13px;
        }
        .steps li::before {
            content: "";
            position: absolute;
            left: 10%;
            top: 100%;
            width: 2px;
            height: 20px;
            background: repeating-linear-gradient(
                to bottom,
                #007bff,
                #007bff 5px,
                transparent 5px,
                transparent 10px
            );
            transform: translateX(-50%);
        }
        .steps li:first-child {
            align-self: flex-start;
        }
        .steps li:last-child {
            align-self: flex-end;
        }
        .steps li:last-child::before {
            display: none;
        }
        .footer1_1 {
            background: #006989;
            color: white;
            text-align: center;
            padding: 15px;
            margin-top: 30px;
            font-size: 16px;
            border-radius: 6px;
        }
        @media (max-width: 768px) {
            .container {
                flex-direction: column;
                align-items: center;
            }
            .section {
                max-width: 90%;
            }
        }

