
.tab-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
}

.tab-navigation {
    display: flex;
    border-bottom: 1px solid #e5e5e5;
    margin-bottom: 20px;
}

.tab-button {
    padding: 10px 20px;
    border: none;
    background: none;
    cursor: pointer;
    font-size: 16px;
    color: #666;
}

.tab-button.active {
    color: #008489;
    border-bottom: 2px solid #008489;
}

.tab-content {
    display: none;
}

.tab-content.active {
    display: block;
}

.content-grid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 30px;
}

.section-title {
    font-size: 24px;
    font-weight: bold;
    margin-bottom: 20px;
}

.sub-title {
    font-size: 18px;
    font-weight: bold;
    margin: 20px 0 10px;
}

.description {
    line-height: 1.6;
    color: #333;
    margin-bottom: 15px;
}

.location-card, .distance-card {
    background: #fff;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
    margin-bottom: 20px;
}

.card-title {
    font-size: 18px;
    font-weight: bold;
    margin-bottom: 15px;
}

.map-link {
    color: #008489;
    text-decoration: none;
    display: inline-block;
    margin-top: 10px;
}

.distance-item {
    display: flex;
    margin-bottom: 15px;
}

.distance-details {
    margin-left: 10px;
}

.distance {
    color: #666;
    font-size: 14px;
}

@media (max-width: 768px) {
    .content-grid {
        grid-template-columns: 1fr;
    }
    
    .tab-navigation {
        overflow-x: auto;
        white-space: nowrap;
    }
}
  
      
.infor {
    position: absolute;
    width: 250px;
    
    bottom: 20px;
    left: 300px;
}
.descriptionA {
    position: absolute;
    /* width: 250px; */
    margin-right: 200px;
    bottom: 20px;
    left: 40px;
    text-wrap: balance;
}
.head {
    position: absolute;
    top: 30px;
    /* color: white; */
}
.co {
    position: absolute;
    top: -50px;
}
@media (max-width: 576px) {
    .infor {
        position: relative;
        left: 37px;
        top : 80px
    }
    .head {
        /* position: relative; */
        left: 37px;
    }
    .descriptionA {
        position: relative;
        margin-right: 50px;
        text-overflow: ellipsis;
        top: 50px;
    }
    .body-section {
        display: block;
    }
    .co {
        position: absolute;
        top: -100px;
    }
}

.content-cart{
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    background-color: #fff;
    /* min-height: 100vh; */
    
}

.card {
    position: relative;
    width: 300px;
    height: 200px;
    margin: 15px;
    overflow: hidden;
    border-radius: 15px;
    box-shadow: 0 8px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s, box-shadow 0.3s;
}

.card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 25px rgba(0, 0, 0, 0.2);
}

.card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease-in-out;
}

.card:hover img {
    transform: scale(1.1);
}

.card .text-overlay {
    position: absolute;
    bottom: 0;
    width: 100%;
    padding: 15px;
    background: rgba(0, 0, 0, 0.5);
    color: #fff;
    text-align: center;
    font-size: 18px;
    font-weight: bold;
    opacity: 0;
    transition: opacity 0.3s;
}

.card:hover .text-overlay {
    opacity: 1;
}
