.summary-section p {
    position: relative;
    /* color: #000; */
    /* font-size: 16px; */
    line-height: 1.6em;
    margin-bottom: 12px;
    max-height: 310px;
    overflow: hidden;
}

.summary-section .inner-column .image img {
    width: 106%;
    display: block;
    height: 515px;
    object-fit: cover;
    box-shadow: 0px 0px 4px #060606;
    max-width: 107%;
    position: absolute;
}

.dot {
    position: absolute;
    right: -2rem;
    bottom: -3.6rem;
    left: auto;
    text-align: end;
    width: fit-content;
}

.summary-section .row {
    margin-bottom: 6rem;
}

.summary-section .row:nth-child(even) .inner-column .image img {
    right: 0;
}

.summary-section .row:nth-child(even) .dot {
    left: -2rem;
}

.inner-column-content {
    position: relative;
    margin-bottom: 40px;
    box-shadow: 0px 0px 1px #060606;
    right: 0;
    top: 20px;
    background: rgba(223, 217, 129, .5);
    min-height: 435px;
    z-index: 1;
    padding: 20px;
    height: 100%;
    display: flex;
    justify-content: center;
    flex-direction: column;
}

.summary-section  .inner-column-content {
    background: var(--bg-white);
}

section.summary-section a {
    position: relative;
    color: var(--white-color);
    margin-bottom: 10px;
    font-weight: 400;
    font-size: var(--f16);
    font-family: var(--heading-font);
    margin-top: 15px;
    width: 100px;
    text-align: center;
    padding: 10px;
}
section.summary-section a.main-btn{
    position: relative;
    color: var(--white-color);
    margin-bottom: 10px;
    font-weight: 400;
    font-size: var(--f16);
    font-family: var(--primary-font);
    margin-top: 15px;
    width: 100px;
    text-align: center;
    padding: 10px;
}

section.summary-section h3 {
    line-height: 1.2;
}

.line {
    height: 2px;
    width: 100px;
    background: var(--secondary-color);
    position: relative;
    top: -7px;
}

.rights::before {
    position: absolute;
    content: "";
    height: 10px;
    width: 38px;
    background-color: var(--secondary-color);
    top: -20px;
    right: -20px;
}

.rights::after {
    position: absolute;
    content: "";
    height: 10px;
    width: 38px;
    background-color: var(--secondary-color);
    top: -5px;
    right: -34px;
    -webkit-transform: rotate(90deg);
    transform: rotate(90deg);
}
section.summary-section ul#attractionTabs {
    text-align: center;
    justify-content: center;
    margin-bottom: 0 !important;
    padding-bottom: 0;
}
section.summary-section .nav-pills .nav-link {
    border-radius: 8px;
    color: var(--btn-color);
}
section.summary-section .nav-pills .nav-link:hover, section.summary-section .nav-pills .nav-link.active{
    background-color:var(--btn-color);
    color:var(--white-color);
}

  
  .attraction-card {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    height: 400px;
    cursor: pointer;
}
  .attraction-card h3{
  color:#fff;
}

.card-img img {
    width: 100%;
    height: 400px;
    object-fit: cover;
}

.card-overlay {
    position: absolute;
    bottom: 0;
    width: 100%;
    height: 100%;
    padding: 20px;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    background: linear-gradient(to top, rgba(0,0,0,0.8), transparent);
    color: #fff;
    transition: 0.4s;
}

.card-overlay h3 {
    font-size: 20px;
    margin-bottom: 10px;
}

.card-overlay .desc {
    max-height: 60px;
    overflow: hidden;
    transition: 0.4s;
    font-size: 14px;
}

/* 🔥 Hover effect */
.attraction-card:hover .desc {
    max-height: 150px;
    overflow-y: auto;
}

/* Scroll inside card */
.attraction-card:hover .desc::-webkit-scrollbar {
    width: 4px;
}
.attraction-card:hover .desc::-webkit-scrollbar-thumb {
    background: #fff;
}

/* Button */
.card-btn {
    margin-top: 10px;
    display: inline-block;
    background: #fff;
    color: #000;
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 12px;
}

div#attraction-data {
    margin-bottom: 0 !important;
}
