/* CHAR DHAM SECTION */

.chardham {
    background: #f8f9fa;
}

.chardham-content {
    max-width: 520px;
}

.chardham-content p {
    margin-bottom: 20px;
}

/* POINTS */

.chardham-points {
    margin: 20px 0 30px;
}

.chardham-points li {
    margin-bottom: 10px;
    font-size: 15px;
    color: #444;
    letter-spacing: 0.3px;
}

/* BUTTONS */

.chardham-buttons {
    display: flex;
    gap: 15px;
    margin-top: 10px;
}

/* IMAGE */

.chardham-image {
    position: relative;
}

.chardham-image img {
    width: 100%;
    border-radius: 16px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.12);
}

/* OPTIONAL FLOAT EFFECT */

.chardham-image::after {
    content: "";
    position: absolute;
    width: 80%;
    height: 80%;
    background: #d4af37;
    top: 20px;
    left: 20px;
    z-index: -1;
    border-radius: 16px;
    opacity: 0.15;
}

/* RESPONSIVE */

@media(max-width:768px) {

    .chardham {
        text-align: center;
    }

    .chardham-buttons {
        justify-content: center;
    }

}




/* CHAR DHAM COLLAGE */

.chardham-collage {
    display: grid;
    grid-template-columns: 2fr 1fr;
    grid-template-rows: 200px 200px 160px;
    gap: 15px;
}

.cd-item {
    position: relative;
    overflow: hidden;
    border-radius: 14px;
}

.cd-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: .5s;
}

/* OVERLAY LABEL */

.cd-item span {
    position: absolute;
    bottom: 10px;
    left: 12px;
    color: #fff;
    font-weight: 600;
    font-size: 16px;
    background: rgba(0, 0, 0, 0.4);
    padding: 6px 12px;
    border-radius: 20px;
    backdrop-filter: blur(4px);
}

/* POSITIONS */

.cd-1 {
    grid-row: 1 / 3;
    grid-column: 1;
}

.cd-2 {
    grid-column: 2;
    grid-row: 1;
}

.cd-3 {
    grid-column: 2;
    grid-row: 2;
}

.cd-4 {
    grid-column: 1 / 3;
    grid-row: 3;
}

/* HOVER EFFECT */

.cd-item:hover img {
    transform: scale(1.08);
}