.room-home {
    padding: 30px 20px;
    background-image: linear-gradient(to bottom right, #e9eaec, #ffffff);
    border-radius: 10px;
    box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
    border: 2px solid white;
    margin-bottom: 30px;


}

.img-radius {
    border-radius: 10px;
    box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
}

.offers .col-xs-5 .offer {
    /* padding: 20px; */
}
.mb-5{
    margin-bottom: 50px;
}
.offer-content {
    margin-top: 20px;

}

.offers {
    padding-bottom: 50px;
    display: flex;
    margin: auto;
    text-align: center;
}

.shape {
    border-style: solid;
    border-width: 0 70px 40px 0;
    float: right;
    height: 0px;
    width: 0px;
    -ms-transform: rotate(360deg);
    /* IE 9 */
    -o-transform: rotate(360deg);
    /* Opera 10.5 */
    -webkit-transform: rotate(360deg);
    /* Safari and Chrome */
    transform: rotate(360deg);
}

.offer {
    background: #fff;
    border: 1px solid #ddd;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
    margin: 15px 0;
    overflow: hidden;
}

.offer-radius {
    border-radius: 7px;
}


.offer-default {
    border-color: #999999;
}

.offer-default .shape {
    border-color: transparent #999999 transparent transparent;
    border-color: rgba(255, 255, 255, 0) #999999 rgba(255, 255, 255, 0) rgba(255, 255, 255, 0);
}


.shape-text {
    color: #fff;
    font-size: 12px;
    font-weight: bold;
    position: relative;
    right: -40px;
    top: 2px;
    white-space: nowrap;
    -ms-transform: rotate(30deg);
    /* IE 9 */
    -o-transform: rotate(360deg);
    /* Opera 10.5 */
    -webkit-transform: rotate(30deg);
    /* Safari and Chrome */
    transform: rotate(30deg);
}

.offer-content {
    padding: 0 20px 10px;
}

html{
    overflow-x: hidden;
}

.align-center{
    display: flex;
    align-items: center;
    justify-content: center;
    
}

@media (max-width: 575.98px) { 
    .align-center{
        display: flex;
        align-items: center;
        justify-content: center;
        flex-direction: column;
    }
    .about-us-image img{
        width: 100%;
    }
}

.ooty-places {
    padding: 50px 20px;
    max-width: 1200px;
    margin: 0 auto;
}

.main-heading {
    text-align: center;
    color: #2c3e50;
    margin-bottom: 40px;
    font-size: 2.5rem;
}

.places-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.place-card {
    background: #fff;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 2px 15px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

.place-card:hover {
    transform: translateY(-5px);
}

.place-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.place-info {
    padding: 20px;
}

.place-info h3 {
    color: #212121;
    margin-bottom: 10px;
}

.distance {
    color: #7f8c8d;
    font-size: 0.9rem;
    margin-bottom: 10px;
}

.distance i {
    margin-right: 5px;
}

.description {
    color: #858585;
    font-size: 16px;
    line-height: 1.5;
}

/* Responsive Design */
@media (max-width: 768px) {
    .places-container {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    }
    
    .main-heading {
        font-size: 2rem;
    }
}



@media (min-width:272px) and (max-width:600px){
    .offers {
        padding-bottom: 50px;
        display: flex;
        margin: auto;
        text-align: center;
        flex-direction: column !important;
    }
    .offer-default img{
        width: 100%;
    }
}